00001 //LabPlot : TitleDialog.h 00002 00003 #ifndef TITLEDIALOG_H 00004 #define TITLEDIALOG_H 00005 00006 #include "Dialog.h" 00007 #include "Worksheet.h" 00008 #include "Label.h" 00009 #include "RichTextWidget.h" 00010 00011 class TitleDialog: public Dialog 00012 { 00013 Q_OBJECT 00014 public: 00015 TitleDialog(MainWin *mw, const char *name); 00016 private slots: 00017 void apply_clicked(); 00018 void ok_clicked(); 00019 private: 00020 Label *title; 00021 RichTextWidget *rtw; 00022 }; 00023 #endif //TITLEDIALOG_H