From e6a725a855208bccab349c6265c6d99af65ecc42 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Mon, 9 Nov 2015 12:45:10 -0500 Subject: 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. --- lumina-desktop/panel-plugins/systemstart/StartMenu.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lumina-desktop/panel-plugins/systemstart/StartMenu.h') 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 > *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(); -- cgit