-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
27 lines (24 loc) · 717 Bytes
/
main.cpp
File metadata and controls
27 lines (24 loc) · 717 Bytes
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
#include <QApplication>
#include <QQmlApplicationEngine>
#include <QQuickView>
#include <QQmlContext>
#include <QVBoxLayout>
#include <QWidget>
#include "save.h"
#include "screen.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
Screen s;
QQuickView qmlView;
qmlView.engine()->rootContext()->setContextProperty("screen", &s);
qmlView.setSource(QUrl("qrc:/main.qml"));
/*QWidget* container = QWidget::createWindowContainer(&qmlView);
container->setMaximumHeight(200);*/
QObject::connect(qmlView.engine(), SIGNAL(quit()), &s, SLOT(quit()));
qmlView.setMaximumWidth(200);
qmlView.setFlags(Qt::Tool);
qmlView.show();
s.show();
return app.exec();
}