You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#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
|