-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 @@ +#include "newmaildirui.h" +#include <qvariant.h> + +class Newmdirdlg : public Newmdirdlgui +{ + Q_OBJECT +public: + Newmdirdlg( QWidget* parent = 0, const char* name = 0,bool no_sub=false); + ~Newmdirdlg(); + + const QString&Newdir()const; + const bool subpossible()const; + +protected slots: + virtual void accept(); + +protected: + QString ndir; + bool possible_subs; +}; |