diff options
| author | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-09-08 15:34:39 +0800 | 
|---|---|---|
| committer | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-09-08 15:34:39 +0800 | 
| commit | 3a009baf606a6720122b64efc9fc3e18ba6e084c (patch) | |
| tree | 552eeb20bef1d04111b26891052e9c88f6e151e4 /main.cxx | |
| parent | 65cb0702d4adf2c1e37e59d256709db7db1f9972 (diff) | |
Renamed the C++ to QML import
Diffstat (limited to 'main.cxx')
| -rw-r--r-- | main.cxx | 16 | 
1 files changed, 10 insertions, 6 deletions
| @@ -2,24 +2,28 @@  #include <QQmlApplicationEngine>  #include <QtQml>  #include "user.hxx" -#include "controller.hxx"  #include "tasklist.hxx" +#include "controller.hxx"  int main(int argc, char* argv[])  {  	QGuiApplication::setAttribute(Qt::AA_EnableHighDpiScaling);  	QGuiApplication app(argc, argv);  	QQmlApplicationEngine engine; -	User::typeId = qmlRegisterSingletonType<User>("id.co.darapsa.kelakon.user" -			, 0, 1, "User" -			, [](QQmlEngine *engine, QJSEngine *scriptEngine) -> QObject* { + +	User::typeId = qmlRegisterSingletonType<User>("KelakonUser", 0, 1, "User" +			, [](QQmlEngine *engine, +				QJSEngine *scriptEngine) -> QObject* {  			Q_UNUSED(engine)  			Q_UNUSED(scriptEngine)  			return new User{};  			}); -	engine.load(QUrl(QStringLiteral("qrc:/main.qml"))); -	Controller controller{&engine}; +  	TaskList taskList;  	engine.rootContext()->setContextProperty("taskList", &taskList); + +	engine.load(QUrl(QStringLiteral("qrc:/main.qml"))); +	Controller controller{&engine}; +  	return app.exec();  } |