summaryrefslogtreecommitdiffstats
path: root/konversation/src/theme_preferences.h
blob: 52acff26ac9f67f5c7502fc847f71600b141464c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*
  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 <kio/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(KIO::Job* delete_job);

    private:
        TQStringList m_dirs;
        TQString m_oldTheme;
        TQString m_currentTheme;
        int m_defaultThemeIndex;
};
#endif