-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmain.cpp
More file actions
80 lines (70 loc) · 3.63 KB
/
Copy pathmain.cpp
File metadata and controls
80 lines (70 loc) · 3.63 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/***************************************************************************
* Copyright (C) 2011 by Renaud Guezennec *
* http://renaudguezennec.homelinux.org/accueil,3.html *
* *
* rmindmap is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <QAbstractItemModel>
#include <QApplication>
#include <QOpenGLContext>
#include <QQmlApplicationEngine>
#include <QQmlContext>
#include <QQuickStyle>
#include <QSurfaceFormat>
#include "controller/mindmapcontroller.h"
#include "controller/selectioncontroller.h"
#include "controller/sidemenucontroller.h"
#include "data/minditem.h"
#include "data/nodestyle.h"
#include "data/positioneditem.h"
#include "model/nodeimageprovider.h"
#include "qmlItems/linkitem.h"
#include "worker/theme.h"
int main(int argc, char** argv)
{
QApplication app(argc, argv);
app.setOrganizationName(QStringLiteral("Rolisteam"));
app.setOrganizationDomain(QStringLiteral("org.rolisteam"));
Q_INIT_RESOURCE(rmindmap);
auto format= QSurfaceFormat::defaultFormat();
if(QOpenGLContext::openGLModuleType() == QOpenGLContext::LibGL)
{
format.setVersion(3, 2);
format.setProfile(QSurfaceFormat::CoreProfile);
}
format.setDepthBufferSize(24);
format.setStencilBufferSize(8);
format.setSamples(8);
QSurfaceFormat::setDefaultFormat(format);
QQuickStyle::setStyle("Universal");
auto ctrl= new MindMapController();
qmlRegisterSingletonInstance<MindMapController>("RMindMap", 1, 0, "MainController", ctrl);
qmlRegisterSingletonType<Theme>("RMindMap", 1, 0, "Theme",
[](QQmlEngine* engine, QJSEngine*) { return new Theme(engine); });
qmlRegisterType<MindMapController>("RMindMap", 1, 0, "MindMapController");
qmlRegisterType<SideMenuController>("RMindMap", 1, 0, "SideMenuController");
qmlRegisterType<SelectionController>("RMindMap", 1, 0, "SelectionController");
qmlRegisterType<LinkItem>("RMindMap", 1, 0, "MindLink");
qmlRegisterUncreatableType<PositionedItem>("RMindMap", 1, 0, "PositionedItem", "Enum only");
qmlRegisterType<NodeStyle>("RMindMap", 1, 0, "NodeStyle");
qmlRegisterUncreatableType<MindItem>("RMindMap", 1, 0, "MindItem", "Enum only");
qRegisterMetaType<QAbstractItemModel*>();
QQmlApplicationEngine qmlEngine;
auto provider= new NodeImageProvider(ctrl->imgModel());
qmlEngine.addImageProvider("nodes", provider);
qmlEngine.load(QLatin1String("qrc:/resources/qml/main.qml"));
return app.exec();
}