diff options
Diffstat (limited to 'kplato/kpttaskdefaultpanel.h')
-rw-r--r-- | kplato/kpttaskdefaultpanel.h | 113 |
1 files changed, 113 insertions, 0 deletions
diff --git a/kplato/kpttaskdefaultpanel.h b/kplato/kpttaskdefaultpanel.h new file mode 100644 index 00000000..087f1e01 --- /dev/null +++ b/kplato/kpttaskdefaultpanel.h @@ -0,0 +1,113 @@ +/* This file is part of the KDE project + Copyright (C) 2004 Dag Andersen <[email protected]> + + 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 KPTTASKDEFAULTPANEL_H +#define KPTTASKDEFAULTPANEL_H + +#include "kptconfigtaskpanelbase.h" +#include "kptduration.h" + +class KMacroCommand; + +namespace KPlato +{ + +class Part; +class Task; +class StandardWorktime; + +class ConfigTaskPanelImpl : public ConfigTaskPanelBase +{ + Q_OBJECT +public: + ConfigTaskPanelImpl(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(); + +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 ); + +signals: + void obligatedFieldsFilled( bool ); + void schedulingTypeChanged( int ); + void changed(); + +protected: + bool useTime; +}; + +class TaskDefaultPanel : public ConfigTaskPanelImpl { + Q_OBJECT +public: + TaskDefaultPanel(Task &task, StandardWorktime *workTime=0, 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 // TASKDEFAULTPANEL_H |