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.
76 lines
1.9 KiB
76 lines
1.9 KiB
// -*- c++ -*- |
|
// configuredialog_p.h: classes internal to ConfigureDialog |
|
// see configuredialog.h for details. |
|
|
|
#ifndef _CONFIGURE_DIALOG_PRIVATE_H_ |
|
#define _CONFIGURE_DIALOG_PRIVATE_H_ |
|
|
|
#include "kmail_export.h" |
|
#include "configmodule.h" |
|
|
|
#include <kcmodule.h> |
|
|
|
class KTabWidget; |
|
class ConfigureDialog; |
|
|
|
|
|
|
|
// Individual tab of a ConfigModuleWithTabs |
|
class ConfigModuleTab : public QWidget { |
|
Q_OBJECT |
|
public: |
|
explicit ConfigModuleTab( QWidget *parent=0 ) |
|
: QWidget( parent ), |
|
mEmitChanges( true ) |
|
{} |
|
~ConfigModuleTab() {} |
|
virtual void save() = 0; |
|
void defaults(); |
|
signals: |
|
// forwarded to the ConfigModule |
|
void changed(bool); |
|
public slots: |
|
void slotEmitChanged(); |
|
void load(); |
|
protected: |
|
bool mEmitChanges; |
|
private: |
|
// reimplement this for loading values of settings which are available |
|
// via GlobalSettings |
|
virtual void doLoadFromGlobalSettings() {} |
|
// reimplement this for loading values of settings which are not available |
|
// via GlobalSettings |
|
virtual void doLoadOther() {} |
|
// reimplement this for loading default values of settings which are |
|
// not available via GlobalSettings (KConfigXT). |
|
virtual void doResetToDefaultsOther() {} |
|
}; |
|
|
|
|
|
/* |
|
* ConfigModuleWithTabs represents a kcm with several tabs. |
|
* It simply forwards load and save operations to all tabs. |
|
*/ |
|
class KMAIL_EXPORT ConfigModuleWithTabs : public ConfigModule { |
|
Q_OBJECT |
|
public: |
|
explicit ConfigModuleWithTabs( const KComponentData &instance, QWidget *parent=0 ); |
|
~ConfigModuleWithTabs() {} |
|
|
|
// don't reimplement any of those methods |
|
virtual void load(); |
|
virtual void save(); |
|
virtual void defaults(); |
|
|
|
protected: |
|
virtual void showEvent ( QShowEvent * event ); |
|
void addTab( ConfigModuleTab* tab, const QString & title ); |
|
|
|
private: |
|
KTabWidget *mTabWidget; |
|
bool mWasInitialized; |
|
}; |
|
|
|
|
|
|
|
#endif // _CONFIGURE_DIALOG_PRIVATE_H_
|
|
|