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