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.
40 lines
752 B
40 lines
752 B
/* Dialog for handling the properties of a mail folder |
|
*/ |
|
#ifndef __KMFOLDERDIA |
|
#define __KMFOLDERDIA |
|
|
|
#include <qdialog.h> |
|
|
|
class KMAcctFolder; |
|
class QPushButton; |
|
class QLineEdit; |
|
class QListBox; |
|
class KMFolder; |
|
|
|
#define KMFolderDialogInherited QDialog |
|
|
|
class KMFolderDialog : public QDialog |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
KMFolderDialog(KMFolder* folder, QWidget *parent=0, const char *name=0); |
|
|
|
private slots: |
|
void doAccept(); |
|
void doAdd(); |
|
void doAccountHighlighted(int); |
|
void doAccountSelected(int); |
|
void doAssocHighlighted(int); |
|
void doAssocSelected(int); |
|
void doRemove(); |
|
|
|
protected: |
|
QLineEdit *nameEdit; |
|
QPushButton *addButton,*removeButton; |
|
QListBox *assocList,*accountList; |
|
KMAcctFolder* folder; |
|
}; |
|
|
|
#endif /*__KMFOLDERDIA*/ |
|
|
|
|