author | unc0rr |
Sun, 28 Sep 2014 21:33:14 +0400 | |
branch | qmlfrontend |
changeset 10432 | b0abef0ee78c |
parent 10430 | 899a30018ede |
child 10434 | 1614b13ad35e |
permissions | -rw-r--r-- |
10402 | 1 |
#ifndef HWENGINE_H |
2 |
#define HWENGINE_H |
|
3 |
||
4 |
#include <QObject> |
|
10416 | 5 |
#include <QByteArray> |
6 |
#include <QVector> |
|
10420 | 7 |
#include <QPixmap> |
10416 | 8 |
|
9 |
#include "flib.h" |
|
10402 | 10 |
|
10420 | 11 |
class QQmlEngine; |
12 |
||
10402 | 13 |
class HWEngine : public QObject |
14 |
{ |
|
15 |
Q_OBJECT |
|
16 |
public: |
|
10420 | 17 |
explicit HWEngine(QQmlEngine * engine, QObject *parent = 0); |
10402 | 18 |
~HWEngine(); |
19 |
||
20 |
static void exposeToQML(); |
|
10428
7c25297720f1
More refactoring: move PoC preview getting code into flib
unc0rr
parents:
10426
diff
changeset
|
21 |
Q_INVOKABLE void getPreview(); |
10432 | 22 |
Q_INVOKABLE void runQuickGame(); |
10424
4be6cd55f1cf
- Get rid of engine's PathPrefix and UserPathPrefix
unc0rr
parents:
10420
diff
changeset
|
23 |
Q_INVOKABLE QString currentSeed(); |
10402 | 24 |
|
25 |
signals: |
|
10420 | 26 |
void previewImageChanged(); |
10402 | 27 |
|
28 |
public slots: |
|
10416 | 29 |
|
30 |
private: |
|
10420 | 31 |
QQmlEngine * m_engine; |
10416 | 32 |
|
10428
7c25297720f1
More refactoring: move PoC preview getting code into flib
unc0rr
parents:
10426
diff
changeset
|
33 |
static void guiMessagesCallback(void * context, MessageType mt, const char * msg, uint32_t len); |
10420 | 34 |
|
35 |
private slots: |
|
10430 | 36 |
void engineMessageHandler(MessageType mt, const QByteArray &msg); |
10402 | 37 |
}; |
38 |
||
39 |
#endif // HWENGINE_H |
|
40 |