10 #ifndef EXPIRYPROPERTIESDIALOG_H
11 #define EXPIRYPROPERTIESDIALOG_H
13 #include <tqvariant.h>
14 #include <kdialogbase.h>
31 class FolderRequester;
33 class ExpiryPropertiesDialog : public KDialogBase
39 ExpiryPropertiesDialog( KMFolderTree* tree, KMFolder* folder );
40 ~ExpiryPropertiesDialog();
42 TQCheckBox* expireReadMailCB;
43 TQSpinBox* expireReadMailSB;
45 TQCheckBox* expireUnreadMailCB;
46 TQSpinBox* expireUnreadMailSB;
48 TQLabel* expiryActionLabel;
49 TQRadioButton* moveToRB;
50 FolderRequester *folderSelector;
51 TQRadioButton* deletePermanentlyRB;
53 TQButtonGroup* actionsGroup;
57 void slotUpdateControls();
60 TQVBoxLayout* globalVBox;
61 TQHBoxLayout* readHBox;
62 TQHBoxLayout* unreadHBox;
63 TQHBoxLayout* expiryActionHBox;
64 TQVBoxLayout* actionsHBox;
65 TQHBoxLayout* moveToHBox;
|