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.
41 lines
787 B
41 lines
787 B
|
|
#ifndef EXPIRYPROPERTIESDIALOG_H |
|
#define EXPIRYPROPERTIESDIALOG_H |
|
|
|
#include <kdialog.h> |
|
|
|
class QCheckBox; |
|
class QSpinBox; |
|
class QRadioButton; |
|
class KMFolderTree; |
|
class KMFolder; |
|
|
|
namespace KMail { |
|
|
|
class FolderRequester; |
|
|
|
class ExpiryPropertiesDialog : public KDialog |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
ExpiryPropertiesDialog( KMFolderTree* tree, KMFolder* folder ); |
|
~ExpiryPropertiesDialog(); |
|
|
|
protected slots: |
|
void accept(); |
|
void slotUpdateControls(); |
|
|
|
private: |
|
KMFolder *mFolder; |
|
|
|
QCheckBox *expireReadMailCB; |
|
QSpinBox *expireReadMailSB; |
|
QCheckBox *expireUnreadMailCB; |
|
QSpinBox *expireUnreadMailSB; |
|
QRadioButton *moveToRB; |
|
FolderRequester *folderSelector; |
|
QRadioButton *deletePermanentlyRB; |
|
}; |
|
} // namespace |
|
#endif // EXPIRYPROPERTIESDIALOG_H
|
|
|