blob: ca8718f74c3c80c38934853fff1ee998bb0d774d (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
//-----------------------------------------------------------------------------
//
// KDE Display color scheme setup module
//
// Copyright (c) Mark Donohoe 1997
//
#ifndef __COLORSCM_H__
#define __COLORSCM_H__
#include <tqcolor.h>
#include <tqobject.h>
#include <tqstring.h>
#include <tqstringlist.h>
#include <tdecmodule.h>
#include <kdialogbase.h>
#include "widgetcanvas.h"
class TQSlider;
class TQComboBox;
class TQPushButton;
class TQCheckBox;
class TQResizeEvent;
class KLineEdit;
class TQPalette;
class TDEListBox;
class KColorButton;
class TDEConfig;
class KStdDirs;
class KColorSchemeList;
/**
* The Desktop/Colors tab in kcontrol.
*/
class KColorScheme: public TDECModule
{
Q_OBJECT
public:
KColorScheme(TQWidget *parent, const char *name, const TQStringList &);
~KColorScheme();
virtual void load();
virtual void load( bool useDefaults );
virtual void save();
virtual void defaults();
private slots:
void sliderValueChanged(int val);
void slotSave();
void slotAdd();
void slotRemove();
void slotImport();
void slotSelectColor(const TQColor &col);
void slotWidgetColor(int);
void slotColorForWidget(int, const TQColor &);
void slotPreviewScheme(int);
void slotShadeSortColumnChanged(bool);
private:
void setColorName( const TQString &name, int id );
void readScheme(int index=0);
void readSchemeNames();
void insertEntry(const TQString &sFile, const TQString &sName);
int findSchemeByName(const TQString &scheme);
TQPalette createPalette();
TQColor &color(int index);
int nSysSchemes;
bool useRM;
TQColor colorPushColor;
TQSlider *sb;
TQComboBox *wcCombo;
TQPushButton *addBt, *removeBt, *importBt;
TDEListBox *sList;
KColorSchemeList *mSchemeList;
TQString sCurrentScheme;
KColorButton *colorButton;
WidgetCanvas *cs;
TQCheckBox *cbExportColors;
TQCheckBox *cbShadeList;
};
#endif
|