summaryrefslogtreecommitdiffstats
path: root/ksirc/KSPrefs/page_colors.h
blob: c1a7b959c8c8d54924fefbf5b03027b5a3aee542 (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
/***************************************************************************
 *                                                                         *
 *   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 PAGE_COLORS_H
#define PAGE_COLORS_H

#include "page_colorsbase.h"
#include "ksopts.h"

#include <tqlistbox.h>
#include <tqstringlist.h>
#include <tqdict.h>

class PageColors : public PageColorsBase
{
Q_OBJECT
  

public:
	PageColors( TQWidget *parent = 0, const char *name = 0 );
	~PageColors();

    void saveConfig();
    void defaultConfig();
    void readConfig( const KSOColors * = ksopts );

protected slots:
    void changed();

public slots:
    virtual void theme_clicked(TQListBoxItem*);
    virtual void themeNewPB_clicked();
    virtual void themeAddPB_clicked();
    virtual void themeDelPB_clicked();
    virtual void theme_sel();

signals:
    void modified();

private:
    void coloursSetEnable();

private:
    int changing;
    TQDict<KSOColors> m_dcol;
};

#endif