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