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 KL_MAIN_H
|
|
|
|
#define KL_MAIN_H
|
|
|
|
|
|
|
|
#include "base/main.h"
|
|
|
|
#include "base/factory.h"
|
|
|
|
#include "board.h"
|
|
|
|
#include "field.h"
|
|
|
|
|
|
|
|
|
|
|
|
class KLFactory : public BaseFactory
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
KLFactory();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual BaseBoard *createBoard(bool, TQWidget *parent)
|
|
|
|
{ return new KLBoard(parent); }
|
|
|
|
virtual BaseInterface *createInterface(TQWidget *parent)
|
|
|
|
{ return new Field(parent); }
|
|
|
|
};
|
|
|
|
|
|
|
|
class KLMainWindow : public BaseMainWindow
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
KLMainWindow();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|