summaryrefslogtreecommitdiff
path: root/noncore/graphics/drawpad/pageinformationdialog.h
authorleseb <leseb>2002-06-13 16:43:16 (UTC)
committer leseb <leseb>2002-06-13 16:43:16 (UTC)
commit54de91b66a2f0f985ff89503e919f85713d1f22c (patch) (unidiff)
tree55df26ca5f08584beb4e033a1fee4510a8e2d45c /noncore/graphics/drawpad/pageinformationdialog.h
parent6a178f4ad2c3a9b92224c3506165cf03df41202e (diff)
downloadopie-54de91b66a2f0f985ff89503e919f85713d1f22c.zip
opie-54de91b66a2f0f985ff89503e919f85713d1f22c.tar.gz
opie-54de91b66a2f0f985ff89503e919f85713d1f22c.tar.bz2
Starting to implement page attributes
Diffstat (limited to 'noncore/graphics/drawpad/pageinformationdialog.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/graphics/drawpad/pageinformationdialog.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/noncore/graphics/drawpad/pageinformationdialog.h b/noncore/graphics/drawpad/pageinformationdialog.h
new file mode 100644
index 0000000..cce74ec
--- a/dev/null
+++ b/noncore/graphics/drawpad/pageinformationdialog.h
@@ -0,0 +1,39 @@
1/***************************************************************************
2 * *
3 * DrawPad - a drawing program for Opie Environment *
4 * *
5 * (C) 2002 by S. Prud'homme <prudhomme@laposte.net> *
6 * *
7 * This program is free software; you can redistribute it and/or modify *
8 * it under the terms of the GNU General Public License as published by *
9 * the Free Software Foundation; either version 2 of the License, or *
10 * (at your option) any later version. *
11 * *
12 ***************************************************************************/
13
14#ifndef PAGEINFORMATIONDIALOG_H
15#define PAGEINFORMATIONDIALOG_H
16
17#include <qdialog.h>
18
19class Page;
20
21class QLineEdit;
22
23class PageInformationDialog : public QDialog
24{
25 Q_OBJECT
26
27public:
28 PageInformationDialog(Page* page, QWidget* parent = 0, const char* name = 0);
29 ~PageInformationDialog();
30
31 QString selectedTitle();
32
33private:
34 Page* m_pPage;
35
36 QLineEdit* m_pTitleLineEdit;
37};
38
39#endif // PAGEINFORMATIONDIALOG_H