blob: 5ced0daf0545cc7ef2495badca92cd7d020600d3 (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
#ifndef _EditorLoadBase_H
#define _EditorLoadBase_H
#include <qdialog.h>
#include <qframe.h>
#include <ktoolbar.h>
#include <kstatusbar.h>
#include <kfiledialog.h>
#include "Tileset.h"
#include "BoardLayout.h"
#include "Background.h"
#include "Preview.h"
class Editor: public QDialog
{
Q_OBJECT
public:
Editor
(
QWidget* parent = NULL,
const char* name = NULL
);
virtual ~Editor();
protected slots:
void topToolbarOption(int w);
void drawFrameMousePressEvent ( QMouseEvent* );
void drawFrameMouseMovedEvent ( QMouseEvent *);
protected:
enum {remove=98, insert=99, move=100};
void paintEvent( QPaintEvent* pa );
void setupToolbar();
void loadBoard();
bool saveBoard();
void newBoard();
void drawBackground(QPixmap *to);
void drawTiles(QPixmap *to);
bool testSave();
void transformPointToPosition(const QPoint &, POSITION &, bool align);
void drawCursor(POSITION &p, bool visible);
bool canInsert(POSITION &p);
void statusChanged();
QString statusText();
private:
int mode;
int numTiles;
KToolBar *topToolbar;
FrameImage * drawFrame;
Tileset tiles;
BoardLayout theBoard;
bool clean;
POSITION currPos;
QLabel *theLabel;
private:
};
#endif
|