configuredialog.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef _CONFIGURE_DIALOG_H_
00023 #define _CONFIGURE_DIALOG_H_
00024
00025 #include <kdialogbase.h>
00026 #include <qptrlist.h>
00027 #include <qguardedptr.h>
00028
00029 class KConfig;
00030 class ConfigurationPage;
00031 class ProfileDialog;
00032
00033 class ConfigureDialog : public KDialogBase
00034 {
00035 Q_OBJECT
00036
00037 public:
00038 ConfigureDialog( QWidget *parent=0, const char *name=0, bool modal=true );
00039 ~ConfigureDialog();
00040
00041 public slots:
00043 void show();
00044
00045 protected slots:
00047 void slotOk();
00049 void slotApply();
00051 void slotHelp();
00053 void slotUser1();
00061 void slotInstallProfile( KConfig * profile );
00062
00063 private slots:
00064 void slotCancelOrClose();
00065
00066 signals:
00067 void configChanged();
00068
00069 private:
00070 void setup();
00071 void apply(bool);
00072
00073 private:
00074 QPtrList<ConfigurationPage> mPages;
00075 QGuardedPtr<ProfileDialog> mProfileDialog;
00076 };
00077
00078 #endif
This file is part of the documentation for kmail Library Version 3.2.2.