diff options
author | Ken Moore <moorekou@gmail.com> | 2015-10-03 14:28:21 -0400 |
---|---|---|
committer | Ken Moore <moorekou@gmail.com> | 2015-10-03 14:28:21 -0400 |
commit | 5beb2730a9e8230d2377ea89e9728504ea88de9c (patch) | |
tree | 417339b654f781d7909e5d43f47fd6ce46567a4e /lumina-desktop/panel-plugins/systemstart/ItemWidget.h | |
parent | Fix the battery icon used in the new start menu plugin. (diff) | |
download | lumina-5beb2730a9e8230d2377ea89e9728504ea88de9c.tar.gz lumina-5beb2730a9e8230d2377ea89e9728504ea88de9c.tar.bz2 lumina-5beb2730a9e8230d2377ea89e9728504ea88de9c.zip |
Add quicklaunch ability to the systemstart panel plugin.
Also turn off some debuging information from the system tray plugin.
Diffstat (limited to 'lumina-desktop/panel-plugins/systemstart/ItemWidget.h')
-rw-r--r-- | lumina-desktop/panel-plugins/systemstart/ItemWidget.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lumina-desktop/panel-plugins/systemstart/ItemWidget.h b/lumina-desktop/panel-plugins/systemstart/ItemWidget.h index 6aa8b037..6f64c7fb 100644 --- a/lumina-desktop/panel-plugins/systemstart/ItemWidget.h +++ b/lumina-desktop/panel-plugins/systemstart/ItemWidget.h @@ -32,6 +32,7 @@ public: ~ItemWidget(); bool gooditem; + private: QToolButton *actButton; QMenu *contextMenu; @@ -49,6 +50,8 @@ private slots: void PinToDesktop(); void RemoveFavorite(); void AddFavorite(); + void RemoveQL(); + void AddQL(); void ItemClicked(); void actionClicked(QAction*); //Functions to fix the submenu open/close issues @@ -74,6 +77,7 @@ signals: void NewShortcut(); void RemovedShortcut(); void RunItem(QString cmd); + void toggleQuickLaunch(QString path, bool ok); }; |