summaryrefslogtreecommitdiffstats
path: root/kopete/kopete/config/appearance/appearanceconfig.h
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/kopete/config/appearance/appearanceconfig.h')
-rw-r--r--kopete/kopete/config/appearance/appearanceconfig.h70
1 files changed, 70 insertions, 0 deletions
diff --git a/kopete/kopete/config/appearance/appearanceconfig.h b/kopete/kopete/config/appearance/appearanceconfig.h
new file mode 100644
index 00000000..22a23024
--- /dev/null
+++ b/kopete/kopete/config/appearance/appearanceconfig.h
@@ -0,0 +1,70 @@
+/*
+ appearanceconfig.h - Kopete Look Feel Config
+
+ Copyright (c) 2001-2002 by Duncan Mac-Vicar Prett <duncan@kde.org>
+ Copyright (c) 2005 by Michaël Larouche <michael.larouche@kdemail.net>
+
+ Kopete (c) 2002-2005 by the Kopete developers <kopete-devel@kde.org>
+
+ *************************************************************************
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or *
+ * (at your option) any later version. *
+ * *
+ *************************************************************************
+*/
+
+#ifndef __APPEARANCE_H
+#define __APPEARANCE_H
+
+#include "kcmodule.h"
+#include <qptrlist.h>
+#include <qmap.h>
+
+/**
+ * @author Duncan Mac-Vicar P. <duncan@kde.org>
+ * @author Michaël Larouche <michael.larouche@kdemail.net>
+ */
+class AppearanceConfig : public KCModule
+{
+ Q_OBJECT
+
+friend class KopeteStyleNewStuff;
+
+public:
+ AppearanceConfig( QWidget *parent, const char *name, const QStringList &args );
+ ~AppearanceConfig();
+
+ virtual void save();
+ virtual void load();
+
+private slots:
+ void slotSelectedEmoticonsThemeChanged();
+ void slotUpdateChatPreview();
+ void slotHighlightChanged();
+ void slotChangeFont();
+ void slotInstallChatStyle();
+ void slotDeleteChatStyle();
+ void slotChatStyleSelected();
+ void slotChatStyleVariantSelected(const QString &variantName);
+ void slotEditTooltips();
+ void emitChanged();
+ void installEmoticonTheme();
+ void removeSelectedEmoticonTheme();
+ void slotGetEmoticonThemes();
+ void slotGetChatStyles();
+ void slotLoadChatStyles();
+ void updateEmoticonsButton(bool);
+private:
+ void updateEmoticonlist();
+ void createPreviewChatSession();
+ void createPreviewMessages();
+
+private:
+ class Private;
+ Private *d;
+};
+#endif
+// vim: set noet ts=4 sts=4 sw=4: