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.
tdenetwork/kopete/kopete/config/appearance/appearanceconfig.h

73 lines
2.1 KiB

/*
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 <tqptrlist.h>
#include <tqmap.h>
/**
* @author Duncan Mac-Vicar P. <duncan@kde.org>
* @author Michaël Larouche <michael.larouche@kdemail.net>
*/
class AppearanceConfig : public TDECModule
{
Q_OBJECT
friend class KopeteStyleNewStuff;
public:
AppearanceConfig( TQWidget *parent, const char *name, const TQStringList &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 TQString &variantName);
void slotEditTooltips();
void emitChanged();
void installEmoticonTheme();
void removeSelectedEmoticonTheme();
void slotGetEmoticonThemes();
void slotGetChatStyles();
void slotLoadChatStyles();
void updateEmoticonsButton(bool);
void editSelectedEmoticonTheme();
private:
void updateEmoticonlist();
void createPreviewChatSession();
void createPreviewMessages();
private:
class Private;
Private *d;
};
#endif
// vim: set noet ts=4 sts=4 sw=4: