aboutsummaryrefslogtreecommitdiff
path: root/lumina-open
Commit message (Collapse)AuthorAge
* Large update to the Lumina project: provide full theming capabilities.Ken Moore2014-10-10
| | | | | | | | | | | | | 1) New libLumina classes: LuminaThemes.h 2) Single-line usage to add lumina theme usage to an application (already added to all the Lumina utilities) 3) Include a Lumina-default theme template, as well as a single color scheme (will add more later) 4) Will create a global Qt style for "lumina" so that this theme engine can be automatically applied to all Qt applications at a later date (want to make sure to beat this up and get it working reliably before turning it on for everything). Major Features: 1) Full Qt theme capabilities through Qt stylesheets (so they can be modified and applied on the fly). 2) Stylesheets are broken into a couple pieces: an "incomplete" stylesheet file (the theme template) with variables in place of colors, font size, and font family. A "color" file which variable->value definitions for the different colors. And a themesettings.cfg files which keeps track of the files/font settings. 3) Along with this, add the ability to specify the icon theme that is used as well, and make that automatically re-loaded as necessary. 4) Add the ability to read/set thes values in lumina-config. The lumina-config usage is still a bit rough: working on cleaning it up right now.
* Make sure the directory catch for running lumina-fm happens at the end (in ↵Ken Moore2014-10-08
| | | | case of an invalid default that was set).
* Oops, fix a typo in the lumina-open usage: Missed removing a couple of the ↵Ken Moore2014-10-08
| | | | QSettings lines
* Add better binary detection to LuminaUtils, and setup lumina-open to use it.Ken Moore2014-10-08
|
* Clean up the default filemanager/terminal settings. Put them in the main ↵Ken Moore2014-10-08
| | | | session file (instead of desktop settings), and also have lumina-config safe it to the lumina-open defaults file directly (in the case of the file manager).
* make file-manager user-chooseableChristopher Roy Bratusek2014-10-07
|
* Clean up the new global.h usage in all the Lumina subprojects.Ken Moore2014-10-06
| | | | | | | | | | 1) Move the global.h file usage into libLumina exclusively 2) Define a new "LuminaOS::LuminaShare()" function for retrieving the install directory for Lumina (based on the PREFIX/global.h) 3) Change all the other lumina sub directories/projects to use the new LuminaShare() function when necessary. 4) This also fixes up the loading of translations in many of the subprojects (found a bug in the path used in a number of them). Reason: Previous implementation *only* worked if you built lumina from the base directory, causing problems with rebuilding individual pieces of Lumina. This also cleans up the general lumina projects as they only need the LuminaOS class loaded instead of knowing about this other possible OS implementation.
* add global.h containing PREFIX and make use of it in all sub-modules,Christopher Roy Bratusek2014-10-05
| | | | | add PREFIX and LIBPREFIX to the qmake .pro files (allows to change prefix and libdir using <qmake PREFIX=/usr LIBDIR=/usr/lib/x86_64-linux-gnu/> or whatever) update debian packaging scripts accordingly
* Make sure to initialize the QApplication before trying to show the error box ↵Ken Moore2014-10-03
| | | | in lumina-open (if the application that got started crashed).
* Adjust how the QApplication is initialized in lumina-open to try and prevent ↵Ken Moore2014-09-22
| | | | | | a seg fault when showing the OSD on FreeBSD 10-Stable. It appears that a QApplication is a *very* special type of class and should not be initialized to a static pointer for the application.
* Fix path to lrelease on OpenBSD.Antoine Jacoutot2014-09-14
|
* Update lumina-open to remove some of the other Exec= flags that might be ↵Ken Moore2014-09-09
| | | | available (if not handled previously).
* Fix a bug where a directory was not getting the input file added to the ↵Ken Moore2014-09-08
| | | | lumina-fm command properly.
* Also make sure that lumina-open uses the current locale encoding for ↵Ken Moore2014-09-08
| | | | translations.
* Oops, forgot to add the new OSD background image to GIT.Ken Moore2014-09-05
|
* Add a simple OSD to the audio/brightness up/down options in lumina-open ↵Ken Moore2014-09-05
| | | | (since these are what the keyboard shortcuts run). Also adjust the window list filter to cut out any "Lumina-" utilities that do not provide a custom window title (such as the OSD or other splashscreens).
* Fix a bug with the taskmanager when multiple windows from the same ↵Ken Moore2014-09-05
| | | | | | application have the same title: make sure to properly select the window that was clicked. While here, also apply the libLumina dependency order to give preference to the locally/recently compiles libraries during the build if possible in all the lumina tools.
* Initial import of the lumina code from pcbsd git repoKris Moore2014-09-04
bgstack15