diff options
author | Ken Moore <moorekou@gmail.com> | 2015-11-09 12:45:10 -0500 |
---|---|---|
committer | Ken Moore <moorekou@gmail.com> | 2015-11-09 12:45:10 -0500 |
commit | e6a725a855208bccab349c6265c6d99af65ecc42 (patch) | |
tree | 397fd3c232108c329997462d45327e5c4d1fa4ef /lumina-desktop/panel-plugins/systemstart/StartMenu.h | |
parent | Add the WM_PROTOCOLS ICCCM support to the lumina library. (diff) | |
download | lumina-e6a725a855208bccab349c6265c6d99af65ecc42.tar.gz lumina-e6a725a855208bccab349c6265c6d99af65ecc42.tar.bz2 lumina-e6a725a855208bccab349c6265c6d99af65ecc42.zip |
A couple changes to Lumina:
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.
Diffstat (limited to 'lumina-desktop/panel-plugins/systemstart/StartMenu.h')
-rw-r--r-- | lumina-desktop/panel-plugins/systemstart/StartMenu.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lumina-desktop/panel-plugins/systemstart/StartMenu.h b/lumina-desktop/panel-plugins/systemstart/StartMenu.h index 8e2b2a3c..7a85df70 100644 --- a/lumina-desktop/panel-plugins/systemstart/StartMenu.h +++ b/lumina-desktop/panel-plugins/systemstart/StartMenu.h @@ -34,6 +34,7 @@ private: Ui::StartMenu *ui; QHash<QString, QList<XDGDesktop> > *sysapps; QStringList favs; + QString CCat; //current category //Simple utility functions void ClearScrollArea(QScrollArea *area); @@ -43,11 +44,13 @@ private slots: void LaunchItem(QString path, bool fix = true); //Application/Favorite Listings + void ChangeCategory(QString cat); void UpdateApps(); void UpdateFavs(); // Page update routines void on_stackedWidget_currentChanged(int); //page changed + void catViewChanged(); //application categorization view mode changed //Page Change Buttons void on_tool_goto_apps_clicked(); |