-rw-r--r-- | kmicromail/newmaildir.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/kmicromail/newmaildir.h b/kmicromail/newmaildir.h new file mode 100644 index 0000000..496eaf4 --- a/dev/null +++ b/kmicromail/newmaildir.h | |||
@@ -0,0 +1,20 @@ | |||
1 | #include "newmaildirui.h" | ||
2 | #include <qvariant.h> | ||
3 | |||
4 | class Newmdirdlg : public Newmdirdlgui | ||
5 | { | ||
6 | Q_OBJECT | ||
7 | public: | ||
8 | Newmdirdlg( QWidget* parent = 0, const char* name = 0,bool no_sub=false); | ||
9 | ~Newmdirdlg(); | ||
10 | |||
11 | const QString&Newdir()const; | ||
12 | const bool subpossible()const; | ||
13 | |||
14 | protected slots: | ||
15 | virtual void accept(); | ||
16 | |||
17 | protected: | ||
18 | QString ndir; | ||
19 | bool possible_subs; | ||
20 | }; | ||