blob: 75f894043c3526732294c475e5948054864827e5 (
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
|
#ifndef BASE_SETTINGS_H
#define BASE_SETTINGS_H
#include <tqwidget.h>
#include <kconfig.h>
class TQGridLayout;
//-----------------------------------------------------------------------------
class BaseAppearanceConfig : public TQWidget
{
Q_OBJECT
TQ_OBJECT
public:
BaseAppearanceConfig();
protected:
TQWidget *_main;
TQGridLayout *_grid;
};
//-----------------------------------------------------------------------------
class ColorConfig : public TQWidget
{
Q_OBJECT
TQ_OBJECT
public:
ColorConfig();
private:
static TQCString colorKey(uint i);
};
#endif
|