summaryrefslogtreecommitdiff
path: root/noncore/graphics/drawpad/page.h
Unidiff
Diffstat (limited to 'noncore/graphics/drawpad/page.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/graphics/drawpad/page.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/noncore/graphics/drawpad/page.h b/noncore/graphics/drawpad/page.h
new file mode 100644
index 0000000..888f552
--- a/dev/null
+++ b/noncore/graphics/drawpad/page.h
@@ -0,0 +1,29 @@
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 PAGE_H
15#define PAGE_H
16
17#include <qpixmap.h>
18
19class Page : public QPixmap
20{
21public:
22 Page();
23 Page(int w, int h);
24 Page(const QSize& size);
25
26 ~Page();
27};
28
29#endif // PAGE_H