diff options
author | Ken Moore <ken@pcbsd.org> | 2015-01-16 18:00:31 -0500 |
---|---|---|
committer | Ken Moore <ken@pcbsd.org> | 2015-01-16 18:00:31 -0500 |
commit | 0c91fd6dc5a8ed7e0571335d2ce6dd9b76e76dc9 (patch) | |
tree | 40f0b31c62440abd6ce501e5fae4325a7ee8ef45 /lumina-desktop/desktop-plugins/NewDP.h | |
parent | Have the user button automatically perform the long application listings in t... (diff) | |
download | lumina-0c91fd6dc5a8ed7e0571335d2ce6dd9b76e76dc9.tar.gz lumina-0c91fd6dc5a8ed7e0571335d2ce6dd9b76e76dc9.tar.bz2 lumina-0c91fd6dc5a8ed7e0571335d2ce6dd9b76e76dc9.zip |
Add a new desktop plugin: audioplayer
Diffstat (limited to 'lumina-desktop/desktop-plugins/NewDP.h')
-rw-r--r-- | lumina-desktop/desktop-plugins/NewDP.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lumina-desktop/desktop-plugins/NewDP.h b/lumina-desktop/desktop-plugins/NewDP.h index 6490af00..43d8e8f8 100644 --- a/lumina-desktop/desktop-plugins/NewDP.h +++ b/lumina-desktop/desktop-plugins/NewDP.h @@ -18,6 +18,7 @@ #include "applauncher/AppLauncherPlugin.h" #include "desktopview/DesktopViewPlugin.h" #include "notepad/NotepadPlugin.h" +#include "audioplayer/PlayerWidget.h" class NewDP{ public: @@ -34,6 +35,8 @@ public: plug = new DesktopViewPlugin(parent, plugin); }else if(plugin.section("---",0,0)=="notepad"){ plug = new NotePadPlugin(parent, plugin); + }else if(plugin.section("---",0,0)=="audioplayer"){ + plug = new AudioPlayerPlugin(parent, plugin); }else{ qWarning() << "Invalid Desktop Plugin:"<<plugin << " -- Ignored"; } |