author | unc0rr |
Sun, 28 Sep 2014 01:17:55 +0400 | |
branch | qmlfrontend |
changeset 10430 | 899a30018ede |
parent 10428 | 7c25297720f1 |
child 10432 | b0abef0ee78c |
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(); |
10424
4be6cd55f1cf
- Get rid of engine's PathPrefix and UserPathPrefix
unc0rr
parents:
10420
diff
changeset
|
22 |
Q_INVOKABLE QString currentSeed(); |
10402 | 23 |
|
24 |
signals: |
|
10420 | 25 |
void previewImageChanged(); |
10402 | 26 |
|
27 |
public slots: |
|
10416 | 28 |
|
29 |
private: |
|
10420 | 30 |
QQmlEngine * m_engine; |
10416 | 31 |
|
10428
7c25297720f1
More refactoring: move PoC preview getting code into flib
unc0rr
parents:
10426
diff
changeset
|
32 |
static void guiMessagesCallback(void * context, MessageType mt, const char * msg, uint32_t len); |
10420 | 33 |
|
34 |
private slots: |
|
10430 | 35 |
void engineMessageHandler(MessageType mt, const QByteArray &msg); |
10402 | 36 |
}; |
37 |
||
38 |
#endif // HWENGINE_H |
|
39 |