diff options
author | Ken Moore <ken@pcbsd.org> | 2014-10-23 21:13:38 -0400 |
---|---|---|
committer | Ken Moore <ken@pcbsd.org> | 2014-10-23 21:13:38 -0400 |
commit | 7cd34701d1678087dd2b5a407bbc40f733d7f212 (patch) | |
tree | 2636e04cf2ee69d5bc7b8a21dc24d3e4f25de0ff /lumina-config | |
parent | Add the auto-hide ability for the Lumina panels (and add a configuration opti... (diff) | |
download | lumina-7cd34701d1678087dd2b5a407bbc40f733d7f212.tar.gz lumina-7cd34701d1678087dd2b5a407bbc40f733d7f212.tar.bz2 lumina-7cd34701d1678087dd2b5a407bbc40f733d7f212.zip |
Add a new menu plugin:
The "Window List" will show a menu of all the current windows, and activate the one that the user clicks on.
Diffstat (limited to 'lumina-config')
-rw-r--r-- | lumina-config/LPlugins.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/lumina-config/LPlugins.cpp b/lumina-config/LPlugins.cpp index 6b61441b..918cc629 100644 --- a/lumina-config/LPlugins.cpp +++ b/lumina-config/LPlugins.cpp @@ -172,7 +172,14 @@ void LPlugins::LoadMenuPlugins(){ info.ID = "settings"; info.icon = "configure"; MENU.insert(info.ID, info); - //Settings + //Window List + info = LPI(); //clear it + info.name = QObject::tr("Window List"); + info.description = QObject::tr("List the open application windows"); + info.ID = "windowlist"; + info.icon = "preferences-system-windows"; + MENU.insert(info.ID, info); + //Custom Apps info = LPI(); //clear it info.name = QObject::tr("Custom App"); info.description = QObject::tr("Start a custom application"); |