summaryrefslogtreecommitdiffstats
path: root/kolf/editor.h
blob: 4d5a3ac582766042f820c341820065680ec49098 (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 <qwidget.h>

#include "game.h"

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

class Editor : public QWidget
{
	Q_OBJECT

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

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

public slots:
	void setItem(CanvasItem *);

private slots:
	void listboxExecuted(QListBoxItem *);

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

#endif