29#ifndef NEW_FOLDER_DIALOG_H
30#define NEW_FOLDER_DIALOG_H
34#include <kdialogbase.h>
47class NewFolderDialog : public KDialogBase
53 NewFolderDialog( TQWidget* parent = 0, KMFolder *folder = 0 );
54 ~NewFolderDialog() {};
57 TQLineEdit* mNameLineEdit;
58 TQLabel* mMailboxFormatLabel;
59 TQComboBox* mFormatComboBox;
60 TQLabel* mContentsLabel;
61 TQComboBox* mContentsComboBox;
62 TQLabel* mNamespacesLabel;
63 TQComboBox* mNamespacesComboBox;
66 TQVBoxLayout* mTopLevelLayout;
67 TQHBoxLayout* mNameHBox;
68 TQHBoxLayout* mFormatHBox;
69 TQHBoxLayout* mContentsHBox;
70 TQHBoxLayout* mNamespacesHBox;
73 void slotFolderNameChanged( const TQString & _text);
|