-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.cpp
52 lines (44 loc) · 1.57 KB
/
main.cpp
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
#include <QScreen>
#include <QApplication>
#include <QQmlApplicationEngine>
#include <QQmlContext>
#include <QSystemTrayIcon>
#include <QtQml/QQmlContext>
#include<QIcon>
#include <QDebug>
#include <QtCore/QUrl>
#include <QtCore/QCommandLineOption>
#include <QtCore/QCommandLineParser>
#include <QStyleHints>
#include <QtQml> // We connect to use the qmlRegisterSingletonType function
#include <systemtray.h>
class Utils : public QObject {
Q_OBJECT
public:
Utils(QObject* parent = 0) : QObject(parent) { }
Q_INVOKABLE static QUrl fromUserInput(const QString& userInput);
};
#include "applicationui.hpp"
int main(int argc, char *argv[])
{
//! [0]
QApplication app(argc, argv);
QQmlApplicationEngine engine;
app.setOrganizationName("Aksh Software Solution");
app.setOrganizationName("akshsoftsolution.com");
//app.setApplicationDisplayName("Aksh Software");
//app.setApplicationName("Aksh Software");
app.setWindowIcon(QIcon(":/Img/Basic/pngwing.com.png"));
//! [0]
ApplicationUI appui;
QCommandLineParser parser;
QCoreApplication::setApplicationVersion(QT_VERSION_STR);
qmlRegisterSingletonType(QUrl("qrc:/AppStyle.qml"), "AppStyle", 1, 0, "AppStyle");
qmlRegisterSingletonType(QUrl("qrc:/FontSystem.qml"), "FontStyle", 1, 0, "FontStyle");
QQmlContext *context = engine.rootContext();
SystemTray * systemTray = new SystemTray();
context->setContextProperty("systemTray", systemTray);
context->setContextProperty("AppTheme", &appui);
engine.load(QUrl(QStringLiteral("qrc:/main.qml")));
return app.exec();
}