aboutsummaryrefslogtreecommitdiff
path: root/libLumina/LuminaThemes.cpp
Commit message (Collapse)AuthorAge
* Make sure that the font-family declaration is set off within quotes when ↵Ken Moore2015-02-02
| | | | assembling the stylesheet. This fixes fonts that use strange characters such as brackets in the name.
* Commit a checkpoint on the conversion of Lumina to Qt5.Ken Moore2014-12-18
| | | | It is functional at the moment, but still has a few rough edges with regards to the X11 background interface (due to the move from XLib to XCB in Qt5). This reulst in some of the window manager interactions not behaving properly (such as sticky status on panels).
* Add a bunch of new color schemes for Lumina (Red/Green/Purple/Gold/Glass), ↵Ken Moore2014-11-12
| | | | and adjust the auto-loading of a theme so that it will automatically pick up when the current theme/color file changes (such as when it was manually edited).
* Finish up the rest of the new Lumina Theme engine and the utilities for ↵Ken Moore2014-10-14
| | | | editing those themes in lumina-config. Also tag Lumina version 0.7.0 with this change.
* 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.
* Get the new LuminaThemes class working with a sample color theme for Insight ↵Ken Moore2014-10-06
| | | | (for testing). The theme loading/usage appears to be working, now I just need to generalize the theme template so that it applies to all the QAbstract* widgets
* 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 the template for the new LuminaThemes library class (not integrated into ↵Ken Moore2014-10-04
build yet). This class will provide a consistant look for all Lumina utilities, while also allowing the user ways to easily modify the themes/appearance and have it take effect immediately. I also plan on extending this framework to save the completed stylesheet for *all* Qt-based system applications to use (providing an easy way to customize the feel of the system).
bgstack15