summaryrefslogtreecommitdiffstats
path: root/kolf/config.h
blob: 795d6cec816b0807090b94359ea5440bffc9f23b (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
#ifndef KOLF_CONFIG_H
#define KOLF_CONFIG_H

#include <tqframe.h>

class Config : public TQFrame
{
	Q_OBJECT
  

public:
	Config(TQWidget *parent, const char *name = 0);
	void ctorDone();

signals:
	void modified();

protected:
	int spacingHint();
	int marginHint();
	bool startedUp;
	void changed();
};

// this is easy to use to show a message
class MessageConfig : public Config
{
	Q_OBJECT
  

public:
	MessageConfig(TQString text, TQWidget *parent, const char *name = 0);
};

// internal
class DefaultConfig : public MessageConfig
{
	Q_OBJECT
  

public:
	DefaultConfig(TQWidget *parent, const char *name = 0);
};

#endif