summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-gutenbrowser/editTitle.h
Side-by-side diff
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 @@
+/****************************************************************************
+** Created: Thu Jan 24 08:47:13 2002
+ copyright : (C) 2000 -2004 by llornkcor
+ email : ljp@llornkcor.com
+****************************************************************************/
+#ifndef EDIT_TITLE_H
+#define EDIT_TITLE_H
+
+#include <qvariant.h>
+#include <qdialog.h>
+class QVBoxLayout;
+class QHBoxLayout;
+class QGridLayout;
+class QLineEdit;
+class QPushButton;
+
+class Edit_Title : public QDialog
+{
+ Q_OBJECT
+
+public:
+ Edit_Title( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0);
+ ~Edit_Title();
+
+ QLineEdit* LineEdit1;
+ QPushButton* PushButton_Cancel;
+ QPushButton* PushButton_Apply;
+ QString newTitle;
+public slots:
+ void onCancel();
+ void onApply();
+};
+
+#endif // EDIT_TITLE_H