|
|
|
/* 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(TQWidget *parent, const char *name);
|
|
|
|
|
|
|
|
virtual int schedulingType() const;
|
|
|
|
virtual int estimationType() const;
|
|
|
|
virtual int optimistic() const;
|
|
|
|
virtual int pessimistic();
|
|
|
|
virtual Duration estimationValue();
|
|
|
|
virtual TQDateTime startDateTime();
|
|
|
|
virtual TQDateTime endDateTime();
|
|
|
|
virtual TQTime startTime() const;
|
|
|
|
virtual TQTime endTime();
|
|
|
|
virtual TQDate startDate();
|
|
|
|
virtual TQDate 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, TQString unit );
|
|
|
|
virtual void startDateChanged();
|
|
|
|
virtual void startTimeChanged( const TQTime & time );
|
|
|
|
virtual void endDateChanged();
|
|
|
|
virtual void endTimeChanged( const TQTime & time );
|
|
|
|
virtual void scheduleTypeChanged( int value );
|
|
|
|
virtual void setStartTime( const TQTime & time );
|
|
|
|
virtual void setEndTime( const TQTime & time );
|
|
|
|
virtual void setStartDateTime( const TQDateTime & dt );
|
|
|
|
virtual void setEndDateTime( const TQDateTime & dt );
|
|
|
|
virtual void setStartDate( const TQDate & date );
|
|
|
|
virtual void setEndDate( const TQDate & 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, TQWidget *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
|