aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop
Commit message (Collapse)AuthorAge
* Fix up all the window activation detection/management within the lumina ↵Ken Moore2015-09-16
| | | | session. Now when a submenu on the panel is closed somehow or a window was modified with the task manager, it will properly find/activate the right window again.
* Ensure that the screen brightness slider in the system dashboard only goes ↵Ken Moore2015-09-16
| | | | down to 10% - this prevents the user from completely blacking out their screen by accident.
* Make sure that the QT_QPA_PLATFORMTHEME environment variable is purged ↵Ken Moore2015-09-16
| | | | before starting up the Lumina session. That variable causes Qt to load other theme engines/plugins - preving the desktop from loading properly.
* Finally fix up the system tray updates:Ken Moore2015-09-15
| | | | Found out that (at least on FreeBSD 10.2 right now), the xcb_damage_create() routine does absolutely nothing (no damage events ever sent out when the window changes). Switching this back to the Xlib XDamageCreate() routine makes it work perfectly again. Need to ask about this upstream and see if this is a known bug/regression in the XCB libraries.
* Adjust the tooltip for the applications tab of the user button.Ken Moore2015-09-11
|
* Update the default keyboard shortcuts a bit with some new shortcuts:Ken Moore2015-09-11
| | | | | | | | | 1) WinKey+L - lock screen 2) WinKey+Space - launch lumina-search 3) WinKey+PgUp - Volume up 4) WinKey+PgDown - Volume down 5) WinKey+Home - Brightness Up 6) WinKey+End - Brightness Down
* Merge branch 'master' of github.com:pcbsd/luminaKen Moore2015-09-11
|\
| * Merge pull request #155 from harcobbit/issue/11400Ken Moore2015-09-11
| |\ | | | | | | Solves issue 11400
| | * Several changesCarlos Bohórquez2015-09-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use the global variable sessionsettings_config_file in all places that must be used. QSettings::setPath was already setted so it's not needed. Deleted. Instead using variable for date and time format in case user settings aren't setted, now we go to Qt::DefaultLocaleShortDate. To perform this operation, we must work with Date and Time separately. Now DirWidget::date_format is an QStringList, first item for date and second for time. The QDateTime with format "yyyyMMddhhmmsszzz" is stored on whatsThis variable for being used in sort operations. CQTreeWidgetItem operator< function has been simplified. Now, to check dates, we used the value stored in whatsThis.
* | | Add various formatting options for the background wallpaper: center, ↵Ken Moore2015-09-11
|/ / | | | | | | [top/bottom][left/right], tile, stretch (stretch is default - same as before).
* / Add a new panel plugin: systemstartKen Moore2015-09-10
|/ | | | This plugins is an overall "start" menu for the system, combining the functionality of the userbutton and the system dashboard into a single unified interface.
* Oops, make sure that applauncher/desktop icon check is run before deleting ↵Ken Moore2015-08-20
| | | | the desktop file (just in case the user simply unchecked the icon generation option).
* Add an additional option to desktop plugins where additional cleanup ↵Ken Moore2015-08-20
| | | | routines may be added (only used for some applaunchers right now). This now makes a desktop icon which was explicitly closed/removed by the user also delete the file from the desktop folder (instead of having that plugin get re-created at a later time)
* Clean up a couple new bugs in the userbutton:Ken Moore2015-08-20
| | | | | 1) Fix which icons are loaded for files (mimetypes) 2) If an application shortcut is invalid (the app was removed but the shortcut remains), don't show it on the favorites tab
* Update the arrangement of the available time zones in the clock plugin. Now ↵Ken Moore2015-08-18
| | | | it is organized by: Continent -> Country -> City
* Completely overhaul the Clock plugin for the panel:Ken Moore2015-08-18
| | | | | | 1) It is now a QToolButton, and resizes to fit the text better now. 2) It now has a menu that appears when clicked on - showing a calendar and a list of possible time zones. 3) Use the new environment setting routine in LTHEME to change the time zone for the user when asked (this changes it not just for the desktop session, but instantly changes it for any app using the Lumina Theme Engine as well (others will need to be restarted to see the change).
* Update the lumina theme engine/class so that custom environment variables ↵Ken Moore2015-08-18
| | | | may be set/loaded for all apps using the theme engine (including the session - which propagates to new non-lumina applications as well)
* Add special handling for lumina-screenshot when moving the initial window ↵Ken Moore2015-08-14
| | | | location: for some reason Fluxbox treats it differently than other windows.
* Remove some old comments, and also remove the old savedScreens variable that ↵Ken Moore2015-08-07
| | | | I was using for Xinerama testing.
* Turn off some debugging within the system tray plugin, cleanup the message ↵Ken Moore2015-08-07
| | | | logging routine, and fix a bug in the autostart loop procedures
* Fix up the file/dir removal options within the userbutton.Ken Moore2015-08-05
|
* Completely finish the XLib -> XCB conversions. Now Lumina no longer requires ↵Ken Moore2015-08-05
| | | | any XLib functions/libraries/extensions.
* Add a replacement for XSelectInput and use it within lumina-desktopKen Moore2015-08-05
|
* Finish converting libLumina to XCB-only and finish replacing any LX11 ↵Ken Moore2015-08-05
| | | | functions in lumina-desktop.
* Add the XCB versions of the system tray start/stop routines, and setup ↵Ken Moore2015-08-04
| | | | LSession to use those new versions
* Add "DESTDIR" build option support to the Lumina project files (needed for ↵Ken Moore2015-07-31
| | | | | | Fedora packaging). Also convert the last X11 usage in LPanel over to XCB
* Oops, fix a typo in the LDesktop conversion to XCBKen Moore2015-07-31
|
* Move all the X11 usage in LDesktop.cpp to XCBKen Moore2015-07-31
|
* Fix up the issues with some apps which re-configure the Xsession/screens to ↵Ken Moore2015-07-30
| | | | match their own internal specifications. On single-screen setups it works fine now, but on multi-screen setups the app does not seem to return the xsettings back to their original specs properly (Tested with OpenArena and MegaMario). This may result in the screen being "flipped" or placed on different monitors after closing the app.
* Oops, forgot to translate the internal QPoint to a global point before ↵Ken Moore2015-07-28
| | | | showing the menu in LDesktop.
* Add some work that make the Lumina desktop/panels appear in the proper ↵Ken Moore2015-07-28
| | | | locations when XINERAMA is used for combining monitors. However, the interface is still completely unresponsive because the Qt backend is completely screwed up by Xinerama (returns 0's for everything related to screens, geometries, etc, preventing menus from opening up even when manually started). This might be something where we just have to say that Xinerama is not supported for Lumina (at least until lumina-wm get finished up).
* Finish cleaning up the submenu open/close checks for the userbutton. Now the ↵Ken Moore2015-07-24
| | | | "Action" submenu can be closed without launching the base application.
* Fix up the active re-loading of icons in the desktop interface when the icon ↵Ken Moore2015-07-24
| | | | theme changes.
* Finish up the XDG "Actions" specification for *.desktop files, and integrate ↵Ken Moore2015-07-22
| | | | it into the AppMenu and UserButton. Also add a new flag to lumina-open so that we can specify which action to use when starting an app.
* Make sure that all the interface elements in lumina-desktop actively re-load ↵Ken Moore2015-07-22
| | | | their text/icons when the system locale is changed.
* Finish cleaning up the new localization configuration settings in libLumina, ↵Ken Moore2015-07-21
| | | | | | and put a combobox in the system dashboard plugin which allows the user to (temporarily) change their session locale. Still need to finish up the active re-translation of the desktop session though.
* Fix up a calculation of the new window geometry - add in checks for those ↵Ken Moore2015-07-17
| | | | strange windows (like gimp) which move the main window off-screen before showing it (causing errors/crashes in the program when moving it back).
* Commit some quick fixes:Ken Moore2015-07-17
| | | | | | 1) Switch some X11->XCB functions around (SetAsDesktop(), SetDisableWMActions()). 2) Fix up some QtQuick plugin detection routines (now it will properly see the user's quickplugins if any). 3) Connect the status change signal/slots for QtQuick plugins to try and detect script failures and remove the script (still not working reliably).
* Update the default fluxbox-keys file to exclude window modification commands ↵Ken Moore2015-07-17
| | | | from operating on non-normal layered windows (so the user cannot use FLuxbox shortcuts to close/move/<other> the desktop/panel windows any more).
* Update all the *.pro files to add a new NO_I18N config option which prevents ↵Ken Moore2015-07-14
| | | | the installation of the translation files (the translations in this repo are highly incomplete, you should use the translation files from the lumina-i18n repo instead since that is where almost all the translation work is being committed).
* Final cleanup of debugging messages and temporary changes prior to release. ↵Ken Moore2015-07-10
| | | | | | | Aslo update the default key bindings a bit: 1) Add a shortcut to lock the screen (Pause key) 2) Adjust the tiling shortcuts to Alt+[left/right] instead of Ctrl-[left/right]. The Ctrl shortcuts were already in use by Fluxbox.
* Adjust the window check/resize routine a bit more. Now it seems to workmuch ↵Ken Moore2015-07-10
| | | | better, still have a couple apps which might go past the bottom of the screen a couple pixels, but that might be the app doing some auto-resizing of itself later.
* Ok, NOW the desktop plugins layout methodology is consistent/reliable. Had ↵Ken Moore2015-07-10
| | | | to implement my own tiling algorithm for initial plugin placements (and adjust a lot of the plugins to have better auto-set default sizes depending on font settings)
* Finish cleaning up the arrangement/placement of desktop plugins with the new ↵Ken Moore2015-07-09
| | | | system. Also add a default size for the calendar plugin.
* Remove the old "forcing" of a panel with particular settings on the ↵Ken Moore2015-07-09
| | | | default/first screen. This is no longer used/needed because of the luminaDesktop.conf settings file.
* Clean up some extra debugging in the lumina-desktopKen Moore2015-07-09
|
* Oops, forgot that when browsing the ~/Desktop directory some special rules ↵Ken Moore2015-07-09
| | | | need to be considered with regards to favorite status.
* Large update to the usermanager:Ken Moore2015-07-09
| | | | | | | 1) Fix alphabetizing the list of favorites 2) Make all the menu updates happen in a non-blocking fashion (the user will see the items appear as they are loaded) 3) In the home dir browser, also load any files within the directory (and launch them when clicked) 4) Remember which dir was loaded in the browser last, and only refresh/change it as necessary on next menu open.
* Fix up the clipping/sizing issues with the applauncher desktop icons.Ken Moore2015-07-08
|
* Update how the desktop icons (applaunchers or desktopview) are ↵Ken Moore2015-07-08
| | | | created/arranged initially. Now the desktopview should be oriented the proper way, and the applauncher icons should be the proper size (although they are still not being placed in non-overlapping locations yet).
bgstack15