aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core
Commit message (Collapse)AuthorAge
* Clean up how the default application for a mimetype is displayed within the ↵Ken Moore2017-02-06
| | | | lumina-open file dialog. Now it will always be listed in the preferred applications list, and with the "[default]" tag at the beginning of the name.
* Commit my work-in-progress on a new NativeWindowSystem class.Ken Moore2017-02-03
| | | | This will be a replacement for the current LuminaX11 class usage in the desktop, with a generic Qt5 API that talks to the X11/Wayland subsystems in the background.
* Try to fix the tiling high-DPI wallpaper issue.Ken Moore2017-02-03
|
* Merge pull request #368 from antab/bugfix-taskmanagerKen Moore2017-02-02
|\ | | | | Bugfix taskmanager
| * Add missing call to this->setText().Arnar Mar Sig2017-02-02
| |
| * Remove calls to setToolButtonStyle() from LTaskButton.Arnar Mar Sig2017-02-02
| | | | | | | | | | | | Add calls to setToolButtonStyle() when LTaskButton is created. LTaskManagerPlugin::OrientationChange() already has calls to set the button style when orientation is changed, but this is overwritten in LTaskButton::UpdateButton().
* | Clean up the window activate XCB function. Now it should send the window a ↵Ken Moore2017-02-02
|/ | | | client message asking it to take focus properly as well.
* Another large batch of work on Lumina2:Ken Moore2017-02-01
| | | | | The NativeWindow intermediary seems to be working really well, now just to start adding the the various event detection parsing in to modify that object on-demand. There is still a window focus issue too - the setActive routine is not properly setting that window to have focus yet - need to examine further.
* 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.
* Get a lot more of Lumina2 working. Now the window embed systems are ↵Ken Moore2017-01-31
| | | | functional, with 2-way create/show/hide/close detection. Windows do not detect/resize as needed yet though.
* Get the next phase of Lumina2 working: The context menu for the desktop itself.Ken Moore2017-01-30
| | | | While not fully up to where the current contextmenu for Lumina is yet, it can be used for logging out, locking the screen, and launching commands (so far - will gradually add back in the other plugins/functionality later after these steps are used for more testing of other components).
* Add a new "DarkGlass" theme to Lumina and the pkg-plist.Ken Moore2017-01-27
|
* Merge branch 'master' of github.com:trueos/luminaKen Moore2017-01-27
|\
| * Translated using Weblate (lumina_WM@it (generated))giulio zanardi2017-01-27
| | | | | | | | Currently translated at 100.0% (7 of 7 strings)
| * Translated using Weblate (lumina_OPEN@it (generated))giulio zanardi2017-01-27
| | | | | | | | Currently translated at 94.8% (37 of 39 strings)
| * Translated using Weblate (lumina_OPEN@it (generated))giulio zanardi2017-01-27
| | | | | | | | Currently translated at 100.0% (39 of 39 strings)
| * Translated using Weblate (lumina_DESKTOP@it (generated))giulio zanardi2017-01-27
| | | | | | | | Currently translated at 81.6% (253 of 310 strings)
* | Another large update for Lumina 2:Ken Moore2017-01-27
|/ | | | | | | | | | | | Get the new LShortcutEvents class setup and functional. This is what converts the key presses and mouse clicks into a format that can be scanned for user-defined shortcuts to do things in the session. NOTES: The format of the keys.conf files uses "keycodes" (in ascending order") delimited by "+" to make the settings searchable and non-ordered-specific. Example: [strict] 22+37+64=logout This is a shortcut for [L_Ctrl (37), L_Alt (64), Backspace (22)] and it will trigger the start of the logout procedures. The "strict" section (and it's alternative "desktop" section) determine priority of the shortcut (strict is always evaluated, desktop is only evaluated if the desktop has focus and there is no corresponding "strict" shortcut).
* Another large batch of work on the new unified desktop.Ken Moore2017-01-26
| | | | | | 1) Get the RootWindow up and functional. 2) Get the lumina-desktop-unified binary functional for starting to test the various pieces (not ready yet for general use) 3) Get the start-lumina-desktop binary setup to launch the new unified binary for testing if the "--unified" flag is used.
* Finish up the new RootWindow class, and tie it into the ↵Ken Moore2017-01-26
| | | | lumina-desktop-unified build. Also finish cleaning up the compilation of the lumina-desktop-unified project - still not ready for actual testing yet.
* Add the beginnings of a new RootWindow class for providing the multi-monitor ↵Ken Moore2017-01-24
| | | | virtual root functionality with all wallpaper painting routines embedded within.
* Translated using Weblate (lumina_DESKTOP@pt_br (generated))José Danzicourt2017-01-17
| | | | Currently translated at 100.0% (310 of 310 strings)
* Fix up some handling of the non-application .desktop file types:Ken Moore2017-01-17
| | | | | 1) Make sure the "LINK" type uses the default browser (even for local file links) 2) Make sure the "DIR" type uses the default file manager.
* Adjust the LuminaXDG wildcard replacement routines a bit (%i, %c, etc..) so ↵Ken Moore2017-01-17
| | | | they block off the replacement within double quotes instead of single-quotes.
* Translated using Weblate (lumina_OPEN@pt_br (generated))José Danzicourt2017-01-17
| | | | Currently translated at 100.0% (39 of 39 strings)
* Quick fix for running files with the executable bit set: Only run them if ↵Ken Moore2017-01-16
| | | | they have no extension or a ".sh" extension (can extend later to check if there is no known mimetype as another valid use-case).
* Translated using Weblate (lumina_OPEN@ru (generated))Koljasha2017-01-15
| | | | Currently translated at 97.4% (38 of 39 strings)
* Translated using Weblate (lumina_DESKTOP@ru (generated))Koljasha2017-01-15
| | | | Currently translated at 79.6% (247 of 310 strings)
* Translated using Weblate (lumina_DESKTOP@lt (generated))Moo2017-01-15
| | | | Currently translated at 90.3% (280 of 310 strings)
* Add add the option to watch a "/tmp/.autofs_change" file which will prompt ↵Ken Moore2017-01-12
| | | | for re-reading the /media directory as well.
* Add the ability to show "/media/*" shortcuts on the Lumina desktop. This ↵Ken Moore2017-01-12
| | | | will be very useful for systems that auto-create dirs in /media when devices are attached to the system, and mount-on-demand when browsing into that directory (*SPOILERS*).
* Add a new OSInterface class to libLumina. This will eventually replace most ↵Ken Moore2017-01-11
| | | | of the LuminaOS class, but is not hooked in to be used yet.
* Remove the "detach" option from the ExternalProcess class. Need to find out ↵Ken Moore2017-01-11
| | | | the exact function to call to detach a live process from a QProcess.
* Translated using Weblate (lumina_DESKTOP@cs (generated))Pavel Fric2017-01-11
| | | | Currently translated at 100.0% (310 of 310 strings)
* A few more code changes for Lumina2.Ken Moore2017-01-10
|
* More setup for Lumina2:Ken Moore2017-01-10
| | | | | 1) Make a new "DesktopSettings" class in libLumina for managing desktop settings files. This class understands/uses a hierarchy of files (User Overrides > System Overrides > Default Settings) and layers them as needed for the session. 2) Cleanup the new source tree a lot more, and get it *mostly* compiling (mostly just the backend classes right now - none of the desktop/WM classes yet).
* Translated using Weblate (lumina_OPEN@ja (generated))YAMASHIRO Jun2017-01-09
| | | | Currently translated at 100.0% (39 of 39 strings)
* Translated using Weblate (lumina_DESKTOP@ja (generated))YAMASHIRO Jun2017-01-09
| | | | Currently translated at 87.7% (272 of 310 strings)
* Merge remote-tracking branch 'origin/master'Weblate2017-01-09
|\
| * Merge pull request #353 from Nanolx/selectable-windowmanagerKen Moore2017-01-09
| |\ | | | | | | Selectable Window Manager
| | * add back ability to use different window managerChristopher Roy Bratusek2017-01-06
| | |
* | | Translated using Weblate (lumina_DESKTOP@ja (generated))YAMASHIRO Jun2017-01-09
|/ / | | | | | | Currently translated at 81.6% (253 of 310 strings)
* | Translated using Weblate (lumina_DESKTOP@cs (generated))Pavel Fric2017-01-09
| | | | | | | | Currently translated at 92.9% (288 of 310 strings)
* | Translated using Weblate (lumina_OPEN@cs (generated))Pavel Fric2017-01-09
| | | | | | | | Currently translated at 100.0% (39 of 39 strings)
* | Translated using Weblate (lumina_DESKTOP@pl (generated))Paweł2017-01-07
| | | | | | | | Currently translated at 85.1% (264 of 310 strings)
* | Translated using Weblate (lumina_OPEN@pl (generated))Paweł2017-01-07
| | | | | | | | Currently translated at 100.0% (39 of 39 strings)
* | Translated using Weblate (lumina_DESKTOP@ca (generated))Davidmp2017-01-07
| | | | | | | | Currently translated at 100.0% (310 of 310 strings)
* | Merge branch 'master' of github.com:trueos/luminaKen Moore2017-01-06
|\|
| * Translated using Weblate (lumina_DESKTOP@ca (generated))Davidmp2017-01-06
| | | | | | | | Currently translated at 92.9% (288 of 310 strings)
* | Continue the re-assembly of the desktop backend.Ken Moore2017-01-06
|/ | | | | Move the system tray registration/management into the XCB Event Filter class itself (since it needs access to the XCB library functions to work). This should restrict almost all use of the XCB classes to the EventFilter instance itself. Also continue moving around the source files as they are evaluated and tied into the project file. The src-screensaver and src-eventfilter directories are used now, but the src-DE and src-WM directories are still just holding cells for the files from the old lumina-desktop and lumina-wm subprojects that are not yet evaluated.
bgstack15