summaryrefslogtreecommitdiffstats
path: root/kplato/kpttaskdefaultpanel.h
blob: 6024e4f08e71900227543ece7f8e6670f6f60665 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/* This file is part of the KDE project
   Copyright (C) 2004 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 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
{
    TQ_OBJECT
  
public:
    ConfigTaskPanelImpl(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();

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 );

signals:
    void obligatedFieldsFilled( bool );
    void schedulingTypeChanged( int );
    void changed();

protected:
    bool useTime;
};

class TaskDefaultPanel : public ConfigTaskPanelImpl {
    TQ_OBJECT
  
public:
    TaskDefaultPanel(Task &task, StandardWorktime *workTime=0, 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 // TASKDEFAULTPANEL_H