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.
konversation/konversation/src/theme_preferences.h

58 lines
1.3 KiB

/*
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.
*/
/*
Copyright (C) 2005 Ismail Donmez <ismail@kde.org>
Copyright (C) 2006 Dario Abatianni <eisfuchs@tigress.com>
Copyright (C) 2006 John Tapsell <johnflux@gmail.com>
Copyright (C) 2007 Eike Hein <hein@kde.org>
*/
#ifndef PREFSPAGETHEMES_H
#define PREFSPAGETHEMES_H
#include "theme_preferencesui.h"
#include "konvisettingspage.h"
#include <tdeio/job.h>
class TQStringList;
class Theme_Config : public Theme_ConfigUI, public KonviSettingsPage
{
Q_OBJECT
public:
explicit Theme_Config(TQWidget* parent, const char* name=NULL);
~Theme_Config();
virtual void restorePageToDefaults();
virtual void saveSettings();
virtual void loadSettings();
virtual bool hasChanged();
signals:
void modified();
protected slots:
void updatePreview(int id);
void updateButtons();
void installTheme();
void removeTheme();
void postRemoveTheme(TDEIO::Job* delete_job);
private:
TQStringList m_dirs;
TQString m_oldTheme;
TQString m_currentTheme;
int m_defaultThemeIndex;
};
#endif