summaryrefslogtreecommitdiffstats
path: root/kolf/editor.h
blob: cfe998e6c60405a52ffe885d377d2e2af301d431 (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
#ifndef EDITOR_H_INCLUDED
#define EDITOR_H_INCLUDED

#include <tqwidget.h>

#include "game.h"

class KListBox;
class QHBoxLayout;
class QListBoxItem;
class Config;

class Editor : public QWidget
{
	Q_OBJECT

public:
	Editor(ObjectList *list, TQWidget * = 0, const char * = 0);

signals:
	void changed();
	void addNewItem(Object *);

public slots:
	void setItem(CanvasItem *);

private slots:
	void listboxExecuted(TQListBoxItem *);

private:
	ObjectList *list;
	TQHBoxLayout *hlayout;
	KListBox *listbox;
	Config *config;
};

#endif