kplato
kptmilestoneprogressdialog.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef KPTMILESTONEPROGRESSDIALOG_H
00021 #define KPTMILESTONEPROGRESSDIALOG_H
00022
00023 #include <kdialogbase.h>
00024
00025 class KCommand;
00026
00027 namespace KPlato
00028 {
00029
00030 class MilestoneProgressPanel;
00031 class Task;
00032 class Part;
00033
00034 class MilestoneProgressDialog : public KDialogBase {
00035 Q_OBJECT
00036 public:
00037 MilestoneProgressDialog(Task &task, QWidget *parent=0);
00038
00039 KCommand *buildCommand(Part *part);
00040
00041 protected slots:
00042 void slotChanged();
00043 void slotOk();
00044
00045 private:
00046 MilestoneProgressPanel *m_panel;
00047
00048 };
00049
00050 }
00051
00052 #endif // MILESTONEPROGRESSDIALOG_H
|