add formatter configuration to ui

This commit is contained in:
2016-05-15 01:18:18 +03:00
parent 6bd7788aa9
commit 301a908aed
15 changed files with 604 additions and 39 deletions

View File

@ -21,7 +21,7 @@
#include "awactions.h"
#include "awconfighelper.h"
#include "awformatterhelper.h"
#include "awformatterconfigfactory.h"
#include "awkeys.h"
@ -31,6 +31,7 @@ void AWPlugin::registerTypes(const char *uri)
qmlRegisterType<AWActions>(uri, 1, 0, "AWActions");
qmlRegisterType<AWConfigHelper>(uri, 1, 0, "AWConfigHelper");
qmlRegisterType<AWFormatterHelper>(uri, 1, 0, "AWFormatterHelper");
qmlRegisterType<AWFormatterConfigFactory>(uri, 1, 0,
"AWFormatterConfigFactory");
qmlRegisterType<AWKeys>(uri, 1, 0, "AWKeys");
}