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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
#ifndef _PreviewLoadBase_H
#define _PreviewLoadBase_H
#include <kdialogbase.h>
#include <qframe.h>
#include "Tileset.h"
#include "BoardLayout.h"
#include "Background.h"
class QComboBox;
class QPixmap;
class FrameImage: public QFrame
{
Q_OBJECT
public:
FrameImage(QWidget *parent=NULL, const char *name = NULL);
~FrameImage();
void setGeometry(int x, int y, int w, int h);
QPixmap *getPreviewPixmap() {return thePixmap;}
void setRect(int x, int y, int w, int h, int ss, int type);
signals:
void mousePressed(QMouseEvent *e);
void mouseMoved(QMouseEvent *e);
protected:
void mousePressEvent(QMouseEvent *e);
void mouseMoveEvent(QMouseEvent *e);
void paintEvent( QPaintEvent* pa );
private:
QPixmap *thePixmap;
int rx;
int ry;
int rw;
int rh;
int rs;
int rt;
};
class Preview: public KDialogBase
{
Q_OBJECT
public:
enum PreviewType {background, tileset, board, theme};
Preview(QWidget* parent);
~Preview();
void initialise(const PreviewType type);
void saveTheme();
protected:
void markUnchanged();
void markChanged();
bool isChanged();
QPixmap *getPreviewPixmap() {return m_drawFrame->getPreviewPixmap(); }
virtual void drawPreview();
void applyChange() ;
void renderBackground(const QString &bg);
void renderTiles(const QString &file, const QString &layout);
void paintEvent( QPaintEvent* pa );
signals:
void boardRedraw(bool);
void loadTileset(const QString &);
void loadBackground(const QString &, bool);
void loadBoard(const QString &);
void layoutChange();
public slots:
void selectionChanged(int which);
protected slots:
void slotApply();
void slotOk();
private slots:
void load();
protected:
FrameImage *m_drawFrame;
QComboBox *m_combo;
QString m_selectedFile;
Tileset m_tiles;
BoardLayout m_boardLayout;
Background m_back;
private:
QString m_fileSelector;
bool m_changed;
QStringList m_fileList;
PreviewType m_previewType;
QString m_themeBack;
QString m_themeLayout;
QString m_themeTileset;
};
#endif
|