summaryrefslogtreecommitdiff
path: root/noncore/graphics/drawpad/importdialog.h
Unidiff
Diffstat (limited to 'noncore/graphics/drawpad/importdialog.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/graphics/drawpad/importdialog.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/noncore/graphics/drawpad/importdialog.h b/noncore/graphics/drawpad/importdialog.h
new file mode 100644
index 0000000..1c67145
--- a/dev/null
+++ b/noncore/graphics/drawpad/importdialog.h
@@ -0,0 +1,36 @@
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 IMPORTDIALOG_H
15#define IMPORTDIALOG_H
16
17#include <qdialog.h>
18
19class DocLnk;
20class FileSelector;
21
22class ImportDialog : public QDialog
23{
24 Q_OBJECT
25
26public:
27 ImportDialog(QWidget* parent = 0, const char* name = 0);
28 ~ImportDialog();
29
30 const DocLnk* selected();
31
32private:
33 FileSelector* m_pFileSelector;
34};
35
36#endif // IMPORTDIALOG_H