aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/panel-plugins/systemstart/ItemWidget.h
diff options
context:
space:
mode:
Diffstat (limited to 'lumina-desktop/panel-plugins/systemstart/ItemWidget.h')
-rw-r--r--lumina-desktop/panel-plugins/systemstart/ItemWidget.h4
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);
};
bgstack15