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.
tdegames/kolf/config.h

46 lines
630 B

#ifndef KOLF_CONFIG_H
#define KOLF_CONFIG_H
#include <tqframe.h>
class Config : public TQFrame
{
TQ_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
{
TQ_OBJECT
public:
MessageConfig(TQString text, TQWidget *parent, const char *name = 0);
};
// internal
class DefaultConfig : public MessageConfig
{
TQ_OBJECT
public:
DefaultConfig(TQWidget *parent, const char *name = 0);
};
#endif