You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
873 B
45 lines
873 B
/* Dialog for handling the properties of a mail folder |
|
*/ |
|
#ifndef __KMFOLDERDIA |
|
#define __KMFOLDERDIA |
|
|
|
#include <kdialogbase.h> |
|
#include <qlist.h> |
|
|
|
class KMAcctFolder; |
|
class QCheckBox; |
|
class QPushButton; |
|
class QLineEdit; |
|
class QListBox; |
|
class QComboBox; |
|
class KMFolder; |
|
|
|
#define KMFolderDialogInherited KDialogBase |
|
|
|
class KMFolderDialog : public KDialogBase |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
KMFolderDialog(KMFolder* aFolder, KMFolderDir *aFolderDir, |
|
QWidget *parent, const QString& caption); |
|
|
|
protected slots: |
|
virtual void slotOk( void ); |
|
virtual void slotHoldsML( bool ); |
|
|
|
protected: |
|
QComboBox *fileInFolder; |
|
QLineEdit *nameEdit; |
|
KMAcctFolder* folder; |
|
KMFolderDir* mFolderDir; |
|
QValueList<QGuardedPtr<KMFolder> > mFolders; |
|
|
|
QCheckBox *holdsMailingList; |
|
QLineEdit *mailingListPostAddress; |
|
// QLineEdit *mailingListAdminAddress; |
|
|
|
}; |
|
|
|
#endif /*__KMFOLDERDIA*/ |
|
|
|
|