aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/libLumina/NativeWindowSystem.cpp
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-08-31 08:47:21 -0400
committerKen Moore <ken@ixsystems.com>2017-08-31 08:47:21 -0400
commit0bce08ce5c6fa073b0c9e299ab619d35ecdceef6 (patch)
treeca819bd27c14ae05d6c65164f84f41cab3916430 /src-qt5/core/libLumina/NativeWindowSystem.cpp
parentA couple more minor tweaks. (diff)
downloadlumina-0bce08ce5c6fa073b0c9e299ab619d35ecdceef6.tar.gz
lumina-0bce08ce5c6fa073b0c9e299ab619d35ecdceef6.tar.bz2
lumina-0bce08ce5c6fa073b0c9e299ab619d35ecdceef6.zip
A but more work on Lumina2:
1. Get the menu-based task manager up and running. 2. Get the minimize button setup with normal functionality now (since we can restore it) 3. Get the maximize button logic setup - still testing this 4. Get the window movement animation system setup - still testing this for the maximize functionality 5. Cleanup a bit more of the backend "pause" for windows during animations.
Diffstat (limited to 'src-qt5/core/libLumina/NativeWindowSystem.cpp')
-rw-r--r--src-qt5/core/libLumina/NativeWindowSystem.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src-qt5/core/libLumina/NativeWindowSystem.cpp b/src-qt5/core/libLumina/NativeWindowSystem.cpp
index cd2459d3..9d04228d 100644
--- a/src-qt5/core/libLumina/NativeWindowSystem.cpp
+++ b/src-qt5/core/libLumina/NativeWindowSystem.cpp
@@ -479,7 +479,7 @@ void NativeWindowSystem::ChangeWindowProperties(NativeWindow* win, QList< Native
}
if(props.contains(NativeWindow::Size) || props.contains(NativeWindow::GlobalPos) ){
- xcb_configure_window_value_list_t valList;
+ /*xcb_configure_window_value_list_t valList;
//valList.x = 0; //Note that this is the relative position - should always be 0,0 relative to the embed widget
//valList.y = 0;
QSize sz = win->property(NativeWindow::Size).toSize();
@@ -499,7 +499,7 @@ void NativeWindowSystem::ChangeWindowProperties(NativeWindow* win, QList< Native
uint16_t mask = 0;
mask = mask | XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT | XCB_CONFIG_WINDOW_X | XCB_CONFIG_WINDOW_Y;
//qDebug() << "Configure window Geometry:" << sz;
- xcb_configure_window_aux(QX11Info::connection(), win->id(), mask, &valList);
+ xcb_configure_window_aux(QX11Info::connection(), win->id(), mask, &valList);*/
}
if(props.contains(NativeWindow::Name)){
bgstack15