aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/libLumina/NativeWindow.pri
Commit message (Collapse)AuthorAge
* A bit more for Lumina2:Ken Moore2017-08-30
| | | | | | | | 1) Get a simple "DISABLE_COMPOSITING" flag working in the NativeEmbedWidget class, and disable the compositing right now (still too many issues with using GPU-accellerated drivers) 2) Get a WM settings file created and add options for "focusFollowsMouse" (true by default) and "raiseOnFocus" (false by default). 3) Add a way for the root window to announce mouse cursor movements to the screensaver, bypassing the XCB event system (can't seem to get it to report those events anyway right now). Probably a better method anyway since moving the mouse won't cause billions of events in a short time then. With this, it seems like all the mouse cursor management systems are up and running. I have not tested using shortcuts combined with mouse buttons yet though....
* A bit more work on compositing and such (mostly commented out) - still not ↵Ken Moore2017-08-30
| | | | working with GPU-backed xorg drivers
* Large update to the window embedding systems - almost have the compositing ↵Ken Moore2017-07-13
| | | | up and running.
* Split out the X11->Qt conversion function into it's own file (getting too ↵Ken Moore2017-07-08
| | | | | | long to be mixed in with the rest of the class). Also finish up a lot more of the conversions. Should be ready for testing now.
* Commit a work-in-progress for converting an X11 keycode into a Qt::Key ↵Ken Moore2017-07-07
| | | | definition
* Another large batch of re-organization for lumina-desktop-unified.Ken Moore2017-06-27
| | | | This gets the new "NativeWindowSystem" and associated Native* classes all integrated (untested)
* Some more work on the NativeWindowSystem "plumbing". Get the system tray ↵Ken Moore2017-03-04
| | | | init routine all ported over, and start filling in the mouse/key handling routines.
* Add a new "NativeWindow" class to the library. This is a pure Qt container ↵Ken Moore2017-02-01
class for setting/announcing changes to native windows on the system. This allows the WM class (XCB/Wayland-specific) to simply adjust each window object as needed, and the interface (pure Qt) will automatically adjust as needed. NOTE: Still need to adjust the LXCBEventFilter to use this new class, but the root window and rootsubwindow classes are all setup to use it.
bgstack15