aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop/desktop-plugins/applauncher/AppLauncherPlugin.h
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-05-26 11:18:24 -0400
committerKen Moore <ken@ixsystems.com>2017-05-26 11:18:24 -0400
commitb1fff33e839f9fd5c967552ecba3ff31f2b060aa (patch)
tree64e4982ddad051975b82ad7005448a4150a3d9fb /src-qt5/core/lumina-desktop/desktop-plugins/applauncher/AppLauncherPlugin.h
parentOops - forgot to include the changes to the LIconCache files in that last com... (diff)
downloadlumina-b1fff33e839f9fd5c967552ecba3ff31f2b060aa.tar.gz
lumina-b1fff33e839f9fd5c967552ecba3ff31f2b060aa.tar.bz2
lumina-b1fff33e839f9fd5c967552ecba3ff31f2b060aa.zip
Get the new Icon Cache system implemented and turned on for the desktop "applauncher" plugins. This seems to be working quite well, and now we just need to start using this for all the other pieces of the desktop.
Diffstat (limited to 'src-qt5/core/lumina-desktop/desktop-plugins/applauncher/AppLauncherPlugin.h')
-rw-r--r--src-qt5/core/lumina-desktop/desktop-plugins/applauncher/AppLauncherPlugin.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src-qt5/core/lumina-desktop/desktop-plugins/applauncher/AppLauncherPlugin.h b/src-qt5/core/lumina-desktop/desktop-plugins/applauncher/AppLauncherPlugin.h
index b1e3fc85..34a75ce8 100644
--- a/src-qt5/core/lumina-desktop/desktop-plugins/applauncher/AppLauncherPlugin.h
+++ b/src-qt5/core/lumina-desktop/desktop-plugins/applauncher/AppLauncherPlugin.h
@@ -36,10 +36,14 @@ private:
QFileSystemWatcher *watcher;
//QMenu *menu;
QInputDialog *inputDLG;
+ QString iconID;
+ int icosize;
private slots:
void loadButton();
void buttonClicked(bool openwith = false);
+ void iconLoaded(QString);
+
//void openContextMenu();
//void increaseIconSize();
bgstack15