summaryrefslogtreecommitdiffstats
path: root/kplato/kpttaskgeneralpanel.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-01-20 01:29:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-01-20 01:29:50 +0000
commit8362bf63dea22bbf6736609b0f49c152f975eb63 (patch)
tree0eea3928e39e50fae91d4e68b21b1e6cbae25604 /kplato/kpttaskgeneralpanel.h
downloadkoffice-8362bf63dea22bbf6736609b0f49c152f975eb63.tar.gz
koffice-8362bf63dea22bbf6736609b0f49c152f975eb63.zip
Added old abandoned KDE3 version of koffice
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1077364 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kplato/kpttaskgeneralpanel.h')
-rw-r--r--kplato/kpttaskgeneralpanel.h116
1 files changed, 116 insertions, 0 deletions
diff --git a/kplato/kpttaskgeneralpanel.h b/kplato/kpttaskgeneralpanel.h
new file mode 100644
index 000000000..fd3f539f8
--- /dev/null
+++ b/kplato/kpttaskgeneralpanel.h
@@ -0,0 +1,116 @@
+/* This file is part of the KDE project
+ Copyright (C) 2004 - 2006 Dag Andersen <danders@get2net.dk>
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Library General Public
+ License as published by the Free Software Foundation;
+ version 2 of the License.
+
+ This library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Library General Public License for more details.
+
+ You should have received a copy of the GNU Library General Public License
+ along with this library; see the file COPYING.LIB. If not, write to
+ the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
+*/
+
+#ifndef KPTTASKGENERALPANEL_H
+#define KPTTASKGENERALPANEL_H
+
+#include "kpttaskgeneralpanelbase.h"
+#include "kptduration.h"
+
+class KMacroCommand;
+
+namespace KPlato
+{
+
+class TaskGeneralPanel;
+class RequestResourcesPanel;
+class Part;
+class Task;
+class StandardWorktime;
+
+class TaskGeneralPanelImpl : public TaskGeneralPanelBase
+{
+ Q_OBJECT
+public:
+ TaskGeneralPanelImpl(QWidget *parent, const char *name);
+
+ virtual int schedulingType() const;
+ virtual int estimationType() const;
+ virtual int optimistic() const;
+ virtual int pessimistic();
+ virtual Duration estimationValue();
+ virtual QDateTime startDateTime();
+ virtual QDateTime endDateTime();
+ virtual QTime startTime() const;
+ virtual QTime endTime();
+ virtual QDate startDate();
+ virtual QDate endDate();
+ virtual int risktype() const;
+public slots:
+ virtual void setSchedulingType( int type );
+ virtual void changeLeader();
+ virtual void setEstimationType( int type );
+ virtual void setOptimistic( int value );
+ virtual void setPessimistic( int value );
+ virtual void enableDateTime( int scheduleType );
+ virtual void estimationTypeChanged( int type );
+ virtual void setEstimate( const Duration & duration );
+ virtual void setEstimateType( int type );
+ virtual void checkAllFieldsFilled();
+ virtual void setEstimateFields( int mask );
+ virtual void setEstimateScales( double day );
+ virtual void setEstimateFieldUnit( int field, QString unit );
+ virtual void startDateChanged();
+ virtual void startTimeChanged( const QTime & time );
+ virtual void endDateChanged();
+ virtual void endTimeChanged( const QTime & time );
+ virtual void scheduleTypeChanged( int value );
+ virtual void setStartTime( const QTime & time );
+ virtual void setEndTime( const QTime & time );
+ virtual void setStartDateTime( const QDateTime & dt );
+ virtual void setEndDateTime( const QDateTime & dt );
+ virtual void setStartDate( const QDate & date );
+ virtual void setEndDate( const QDate & date );
+ virtual void setRisktype( int r );
+
+signals:
+ void obligatedFieldsFilled( bool );
+ void schedulingTypeChanged( int );
+ void changed();
+
+protected:
+ bool useTime;
+};
+
+class TaskGeneralPanel : public TaskGeneralPanelImpl {
+ Q_OBJECT
+public:
+ TaskGeneralPanel(Task &task, StandardWorktime *workTime=0, bool baseline=false, QWidget *parent=0, const char *name=0);
+
+ KMacroCommand *buildCommand(Part *part);
+
+ bool ok();
+
+ void setStartValues(Task &task, StandardWorktime *workTime=0);
+
+public slots:
+ virtual void estimationTypeChanged(int type);
+ virtual void scheduleTypeChanged(int value);
+
+private:
+ Task &m_task;
+ double m_dayLength;
+
+ Duration m_effort;
+ Duration m_duration;
+};
+
+} //KPlato namespace
+
+#endif // TASKGENERALPANEL_H