aboutsummaryrefslogtreecommitdiffstats
path: root/qmlpage.h
blob: 699984a3321fee33d594e312c40b772944780916 (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
#ifndef QMLPAGE_H
#define QMLPAGE_H

#include <QWidget>
#include <QDeclarativeContext>
#include <QGraphicsObject>
#include "kgpg/core/kgpgkey.h"

class QMLPage : public QWidget
{

    Q_OBJECT

public:
    QMLPage(KgpgCore::KgpgKey key, QWidget *parent = 0);

public slots:
    void qmlClicked();

private:
    QDeclarativeContext *context;
    QGraphicsObject *obj;

};

#endif // QMLPAGE_H