summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-gutenbrowser/editTitle.h
Unidiff
Diffstat (limited to 'noncore/apps/opie-gutenbrowser/editTitle.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-gutenbrowser/editTitle.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/noncore/apps/opie-gutenbrowser/editTitle.h b/noncore/apps/opie-gutenbrowser/editTitle.h
new file mode 100644
index 0000000..2480a01
--- a/dev/null
+++ b/noncore/apps/opie-gutenbrowser/editTitle.h
@@ -0,0 +1,34 @@
1/****************************************************************************
2** Created: Thu Jan 24 08:47:13 2002
3 copyright : (C) 2000 -2004 by llornkcor
4 email : ljp@llornkcor.com
5****************************************************************************/
6#ifndef EDIT_TITLE_H
7#define EDIT_TITLE_H
8
9#include <qvariant.h>
10#include <qdialog.h>
11class QVBoxLayout;
12class QHBoxLayout;
13class QGridLayout;
14class QLineEdit;
15class QPushButton;
16
17class Edit_Title : public QDialog
18{
19 Q_OBJECT
20
21public:
22 Edit_Title( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0);
23 ~Edit_Title();
24
25 QLineEdit* LineEdit1;
26 QPushButton* PushButton_Cancel;
27 QPushButton* PushButton_Apply;
28 QString newTitle;
29public slots:
30 void onCancel();
31 void onApply();
32};
33
34#endif // EDIT_TITLE_H