You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
393 B
C++
15 lines
393 B
C++
8 years ago
|
#include "lattedockplugin.h"
|
||
|
#include "windowsystem.h"
|
||
|
#include "types.h"
|
||
|
|
||
|
#include <qqml.h>
|
||
|
|
||
|
void LatteDockPlugin::registerTypes(const char *uri)
|
||
|
{
|
||
|
Q_ASSERT(uri == QLatin1String("org.kde.latte.dock"));
|
||
|
|
||
|
qmlRegisterUncreatableType<LatteDock::Types>(uri, 0, 1, "Types", "LatteDock Types uncreatable");
|
||
|
|
||
|
qmlRegisterType<LatteDock::WindowSystem>(uri, 0, 1, "WindowSystem");
|
||
|
}
|