00001
00002
00003
00004
00005
00006 #ifndef EDIT_TITLE_H
00007 #define EDIT_TITLE_H
00008
00009 #include <qvariant.h>
00010 #include <qdialog.h>
00011 class QVBoxLayout;
00012 class QHBoxLayout;
00013 class QGridLayout;
00014 class QLineEdit;
00015 class QPushButton;
00016
00017 class Edit_Title : public QDialog
00018 {
00019 Q_OBJECT
00020
00021 public:
00022 Edit_Title( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0);
00023 ~Edit_Title();
00024
00025 QLineEdit* LineEdit1;
00026 QPushButton* PushButton_Cancel;
00027 QPushButton* PushButton_Apply;
00028 QString newTitle;
00029 public slots:
00030 void onCancel();
00031 void onApply();
00032 };
00033
00034 #endif // EDIT_TITLE_H