aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/panel-plugins
Commit message (Collapse)AuthorAge
* Rearrange the Lumina source tree quite a bit:Ken Moore2016-04-25
| | | | Now the utilites are arranged by category (core, core-utils, desktop-utils), so all the -utils may be excluded by a package system (or turned into separate packages) as needed.
* Fix up a couple other small bugs:Ken Moore2016-02-19
| | | | | 1) Ensure the clock plugin does not resize smaller than the time display. 2) Enforce a 40 character limit for task manager button text.
* Remove the 80-pixel limit to the text shown on task manager buttons ↵Ken Moore2016-02-18
| | | | (non-grouped). This allows the buttons to be as large as needed to fit the text, then shrink down automatically when more windows/buttons are opened up.
* For the clock plugin, add a smarter minimum width based on the time format ↵Ken Moore2016-02-18
| | | | chosen. This should prevent the clock from changing sizes regularly if the font is not mono-spaced or non-padded seconds/minutes is desired.
* Find/switch a bunch of other "delete" calls on QWidgets to the Qt ↵Ken Moore2016-02-18
| | | | deleteLater() function instead. This seems to fix the start menu category change crash with Qt 5.5.1
* Change a lot of "delete" calls on QWidgets to the safer "->deleteLater()" Qt ↵Ken Moore2016-02-12
| | | | function. This might fix the random issues with desktop crashes on non-FreeBSD systems.
* A few small fixes to lumina-desktop:Ken Moore2016-02-05
| | | | | 1) When loading the "pt" locale code - pass it to QLocale as "pt_PT" so the native language translation some out properly (European portuguese, not brazilian) 2) Add a new button for the audio controls in the start menu for muting/unmuting the audio.
* Ken changed theming to be more specific for Lumina on my system so I can ↵JoshDW192016-02-01
| | | | begin theming elements.
* Large cleanup of the Lumina project files and OS-detection/support systems.Ken Moore2016-01-11
| | | | | | | 1) Setup all the subprojects to use the new OS-detect.pri subfile 2) Automatically detect/set the build datetime string for the project when qmake is run. 3) Automatically read/embed the current GIT revision into the Lumina version string 4) Remove the old QtConfig shortcut function from the LuminaOS class (and all templates).
* Fix up the loading of locales through the StartMenu/Session. Now it will ↵Ken Moore2015-12-01
| | | | properly make the locale changes *if* it could properly load the locale (ensuring consistency between system/session).
* Change the text of the app menu plugin to have the button now say ↵Ken Moore2015-12-01
| | | | "Applications".
* Oops - fix an issue with opening the home dir from the new appmenu.Ken Moore2015-12-01
|
* Re-do the "App Menu" plugin a bit. Now it uses a self-contained menu with a ↵Ken Moore2015-12-01
| | | | "Leave" option at the bottom. We can add/change it more later as needed.
* make the userbutton sort items case-insensitively.Ken Moore2015-11-25
|
* Change the icon for the individual items in the workspace switcher plugin ↵Ken Moore2015-11-25
| | | | (something different than the main panel button icon).
* Change the "quick settings" button to now say "Preferences" instead. Also ↵Ken Moore2015-11-24
| | | | remove a sync() operation when changing quicklaunch items.
* Adjust the start menu to show the "genericName" instead of the comment ↵Ken Moore2015-11-23
| | | | underneath an app name, and use the comment as the tooltip. Also adjust the panel re-focus routine a bit to make it smarter about which window gets activation after leaving the panel if the previously active window was closed/minimized.
* Merge branch 'master' of github.com:pcbsd/luminaKen Moore2015-11-23
|\
| * Fix up the sorting of the favorites items in the start menu. Now the ↵Ken Moore2015-11-23
| | | | | | | | applications will be sorted by display name instead of file name (case-insensitive). The favorites are still sorted by type as well (apps, dirs, files), each type sorted alphabetically.
* | A few fixes for the desktop:Ken Moore2015-11-23
|/ | | | | | 1) Clean up the characters which are unsupported by the notepad for filenames (quotes of all kinds, semicolons, slashes) 2) Start Menu: allow clicks on the item text to trigger the launch, add the generic "comment" text underneath the name of the application (if available) in italics and indented. 3) Remove an extra processEvents call during session startup.
* Add a couple more XCB EWMH functions. One change required a re-definition of ↵Ken Moore2015-11-12
| | | | an enumeration (WINDOWSTATE -> WINDOWVISIBILITY), so I fixed the usage of that enum in the lumina-desktop project as well.
* A couple changes to Lumina:Ken Moore2015-11-09
| | | | | | 1) Add 3 different "view modes" for applications in the start menu: Alphabetical (no categories), Partial Categories (same as before - still on list though), or Categories (need to click the category to go into it and see the applications).2) Fix the theming of partially checked checkboxes and groupboxes. 3) Force the desktop icons to have black text in the theme (no matter which color scheme is in use). 4) Adjust the outlining effects of the desktop icons to use a radial gradient now, so you get a smoother effect which does not steal eye focus as much on contrasting backgrounds.
* Cleanup how auto-start apps are launched a bit (start them via a single ↵Ken Moore2015-10-30
| | | | | | lumina-open call now, instead of a bunch of individual ones). Also fix up the tray app detection/failover methods a bit to catch/discard tray icons which were registered/destroyed almost simultaneously (or no destroy event was ever caught for the icon). This prevents the situation where a "blank" tray icon may be trying to repaint itself repeatedly (eating up CPU cycles). NOTE: It seems like these "blank" tray apps are all GTK based, so it might be something in that toolkit which needs fixing to prevent registering a tray window which will never be used (or is instantly destroyed).
* When locking the screen via the new start menu, don't use the "LaunchApp" ↵Ken Moore2015-10-26
| | | | function, just start the process externally (prevent changing the mouse cursor to the "loading" icon.
* Enable the vertical scrollbar for the favorites list in the start menu as ↵Ken Moore2015-10-22
| | | | needed.
* In the startmenu, make sure to scale up any item sizes as necessary to ↵Ken Moore2015-10-21
| | | | ensure a uniform appearance.
* Update the ItemWidgets in the start menu plugin to resize the icons/text as ↵Ken Moore2015-10-21
| | | | necessary to account for differences in font size.
* Update how the PC-BSD overlay files for Lumina are installed. Now there is a ↵Ken Moore2015-10-19
| | | | special "PCBSD" qmake argument to tell Lumina to install the PC-BSD specific config/wallpaper files instead of the generic files.
* In the task manager plugin: for a button with a single window associated put ↵Ken Moore2015-10-15
| | | | the full text of the window title as the tooltip.
* Change the icon for the "showdesktop" plugin to be an image of the desktop ↵Ken Moore2015-10-15
| | | | (user-desktop) instead of a house.
* Ensure that the item widgets in the start menu plugin use all the text ↵Ken Moore2015-10-14
| | | | possible for the size of the menu (including active change on resize).
* Update the new ResizeMenu and startmenu a bit: Now it better performes ↵Ken Moore2015-10-08
| | | | resizing and the startmenu savees it's size between sessions.
* Add a new panel plugin: "line"Ken Moore2015-10-08
| | | | | This simply inserts a horizontal/vertical line to help provide separation between panel sections as needed. Also start moving the project files around: take all the panel plugins and define their files within panel-plugins.pri - will do something similar for desktop-plugins later.
* Another batch of small fixes:Ken Moore2015-10-07
| | | | | | | | 1) Add a new ResizeMenu() class to the LuminaUtils library - this class allows the resulting menu to be resizable by the user clicking on an edge and dragging. 2) In the systemstart panel plugin, reverse the location of the shutdown options on the leave page (put them at the bottom next to where the leave button is in the first place) 3) Setup the systemstart plugin to use the new ResizeMenu. It currently does not save the new size to be used for later sessions, but per-session resizing works fine. 4) Quick adjustment to the systemtray icon sizes 5) Quick fix to the detection of a desktop file removal.
* Reverse the order of items in the startmenu logout page - now they start at ↵Ken Moore2015-10-07
| | | | the bottom instead.
* Couple more updates for lumina-desktop:Ken Moore2015-10-07
| | | | | | | 1) Implement the file dropping on the desktop 2) Fix the panel painting routine to ensure the proper "fake" transparency is applied. 3) Add a missing include line in the panel "applauncher" plugin. 4) Fix the initial desktop icon size setting.
* Clean up the quicklaunch buttons a bit more - also add a context menu for ↵Ken Moore2015-10-05
| | | | removing the button directly.
* Add quicklaunch ability to the systemstart panel plugin.Ken Moore2015-10-03
| | | | Also turn off some debuging information from the system tray plugin.
* Fix the battery icon used in the new start menu plugin.Ken Moore2015-10-02
|
* Add a 1 pixel margin around the panel plugins - this helps a lot with hidden ↵Ken Moore2015-10-02
| | | | panels "detecting" when the mouse leaves the window.
* A couple quick tweaks:Ken Moore2015-09-21
| | | | | 1) The XCB event filter should not use the Damage ID in event detection, because each individual tray app uses their own damage ID and not the tray ID. 2) Fix the "back" button icon in the start menu plugin.
* Ensure that the menu for the desktopswitcher panel plugin is refreshed ↵Ken Moore2015-09-17
| | | | before it appears. This will sync it up with the current system settings - in case the workspace was changed earlier by some other method.
* Oops, needed to make the entire suspend frame invisible, not just the button.Ken Moore2015-09-16
|
* 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.
* 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
|
* 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 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.
bgstack15