kopete/kopete
appearanceconfig.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef __APPEARANCE_H
00020 #define __APPEARANCE_H
00021
00022 #define KDE3_SUPPORT
00023 #include <kcmodule.h>
00024 #undef KDE3_SUPPORT
00025
00030 class AppearanceConfig : public KCModule
00031 {
00032 Q_OBJECT
00033
00034
00035 public:
00036 AppearanceConfig( QWidget *parent, const QVariantList &args );
00037 ~AppearanceConfig();
00038
00039 virtual void save();
00040 virtual void load();
00041
00042 private slots:
00043 void slotHighlightChanged();
00044 void slotChangeFont();
00045 void slotEditTooltips();
00046 void emitChanged();
00047 private:
00048
00049 private:
00050 class Private;
00051 Private *d;
00052 };
00053 #endif
00054