* end work on #68

* create special class for configuration
* update clion settings
This commit is contained in:
arcan1s
2015-10-17 00:06:32 +03:00
parent 0e1b101703
commit 8645260f99
32 changed files with 955 additions and 372 deletions

View File

@ -20,6 +20,7 @@
#include <QtQml>
#include "awactions.h"
#include "awconfighelper.h"
#include "awkeys.h"
@ -28,5 +29,6 @@ void AWPlugin::registerTypes(const char *uri)
Q_ASSERT(uri == QLatin1String("org.kde.plasma.private.awesomewidget"));
qmlRegisterType<AWActions>(uri, 1, 0, "AWActions");
qmlRegisterType<AWConfigHelper>(uri, 1, 0, "AWConfigHelper");
qmlRegisterType<AWKeys>(uri, 1, 0, "AWKeys");
}