aboutsummaryrefslogtreecommitdiffstats
path: root/WindowManager/src/main.cpp
diff options
context:
space:
mode:
authorBocklage, Jens <Jens_Bocklage@mentor.com>2016-11-02 16:23:58 +0100
committerBocklage, Jens <Jens_Bocklage@mentor.com>2016-11-02 16:23:58 +0100
commit9ca0a50d021a8d6e12cfb8f04671ba3dd389f92d (patch)
treec76ff30548eef6c6fdf49449c5917c8d3fab5589 /WindowManager/src/main.cpp
parentca4026b34ab8cc32dbe49c3a6272aa01733baf12 (diff)
New layer management in WindowManager. Three layers are created. One for the HomeScreen, one for apps, one for popups.
Signed-off-by: Bocklage, Jens <Jens_Bocklage@mentor.com>
Diffstat (limited to 'WindowManager/src/main.cpp')
-rw-r--r--WindowManager/src/main.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/WindowManager/src/main.cpp b/WindowManager/src/main.cpp
index 9c6e791..455361c 100644
--- a/WindowManager/src/main.cpp
+++ b/WindowManager/src/main.cpp
@@ -25,14 +25,16 @@ int main(int argc, char *argv[])
QCoreApplication::setOrganizationDomain("LinuxFoundation");
QCoreApplication::setOrganizationName("AutomotiveGradeLinux");
QCoreApplication::setApplicationName("WindowManager");
- QCoreApplication::setApplicationVersion("0.3.0");
+ QCoreApplication::setApplicationVersion("0.3.1");
qDebug("%s, v%s", QCoreApplication::applicationName().toStdString().c_str(), QCoreApplication::applicationVersion().toStdString().c_str());
qDBusRegisterMetaType<SimplePoint>();
qDBusRegisterMetaType<QList<SimplePoint> >();
- qDBusRegisterMetaType<SimpleRect>();
- qDBusRegisterMetaType<QList<SimpleRect> >();
+ qDBusRegisterMetaType<LayoutArea>();
+ qDBusRegisterMetaType<QList<LayoutArea> >();
+ qDBusRegisterMetaType<Layout>();
+ qDBusRegisterMetaType<QList<Layout> >();
WindowManager *windowManager = new WindowManager();
windowManager->start();