00001 //LabPlot : ProjectDialog.h 00002 00003 #ifndef PROJECTDIALOG_H 00004 #define PROJECTDIALOG_H 00005 00006 #include <qfont.h> 00007 #include <qcheckbox.h> 00008 #include "Worksheet.h" 00009 #include "Dialog.h" 00010 00011 class ProjectDialog: public Dialog 00012 { 00013 Q_OBJECT 00014 public: 00015 ProjectDialog(Worksheet *p, const char *name); 00016 public slots: 00017 void ok_clicked() { apply_clicked(); accept(); } 00018 void apply_clicked(); 00019 private: 00020 MainWin *mw; 00021 Project *project; 00022 KLineEdit *titlele, *authorle, *commentle; 00023 }; 00024 00025 #endif //PROJECTDIALOG_H