aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/panel-plugins/appmenu/LAppMenuPlugin.cpp
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2015-01-21 09:22:27 -0500
committerKen Moore <ken@pcbsd.org>2015-01-21 09:22:27 -0500
commit1b194f252557051d4c625b596f2b7928a6cc01db (patch)
treec815dff4af1ee69a9b4ee1b469aa0ad2313c2aa3 /lumina-desktop/panel-plugins/appmenu/LAppMenuPlugin.cpp
parentCompletely revamp the notepad desktop plugin so that it is now file-based ins... (diff)
downloadlumina-1b194f252557051d4c625b596f2b7928a6cc01db.tar.gz
lumina-1b194f252557051d4c625b596f2b7928a6cc01db.tar.bz2
lumina-1b194f252557051d4c625b596f2b7928a6cc01db.zip
Add a new panel-plugin: appmenu
This plugin re-creates the classic "start" menu from other OS's. Also update how panel-plugins open menus, so now the menu will no longer cover the button that opened it.
Diffstat (limited to 'lumina-desktop/panel-plugins/appmenu/LAppMenuPlugin.cpp')
-rw-r--r--lumina-desktop/panel-plugins/appmenu/LAppMenuPlugin.cpp47
1 files changed, 47 insertions, 0 deletions
diff --git a/lumina-desktop/panel-plugins/appmenu/LAppMenuPlugin.cpp b/lumina-desktop/panel-plugins/appmenu/LAppMenuPlugin.cpp
new file mode 100644
index 00000000..c38c4d3f
--- /dev/null
+++ b/lumina-desktop/panel-plugins/appmenu/LAppMenuPlugin.cpp
@@ -0,0 +1,47 @@
+//===========================================
+// Lumina-DE source code
+// Copyright (c) 2015, Ken Moore
+// Available under the 3-clause BSD license
+// See the LICENSE file for full details
+//===========================================
+#include "LAppMenuPlugin.h"
+#include "../../LSession.h"
+
+#include <LuminaXDG.h>
+
+LAppMenuPlugin::LAppMenuPlugin(QWidget *parent, QString id, bool horizontal) : LPPlugin(parent, id, horizontal){
+ button = new QToolButton(this);
+ button->setAutoRaise(true);
+ button->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
+ button->setMenu( LSession::handle()->applicationMenu() );
+ button->setPopupMode(QToolButton::InstantPopup);
+ this->layout()->setContentsMargins(0,0,0,0);
+ this->layout()->addWidget(button);
+
+
+ QTimer::singleShot(0,this, SLOT(OrientationChange())); //Update icons/sizes
+}
+
+LAppMenuPlugin::~LAppMenuPlugin(){
+
+}
+
+void LAppMenuPlugin::updateButtonVisuals(){
+ button->setToolTip( tr("Quickly launch applications or open files"));
+ button->setText( tr("Start Here") );
+ //Use the PC-BSD icon by default (or the Lumina icon for non-PC-BSD systems)
+ button->setIcon( LXDG::findIcon("pcbsd","Lumina-DE") );
+}
+
+// ========================
+// PRIVATE FUNCTIONS
+// ========================
+/*void LAppMenuPlugin::openMenu(){
+ usermenu->UpdateMenu();
+ menu->popup(this->mapToGlobal(QPoint(0,0)));
+}
+
+void LAppMenuPlugin::closeMenu(){
+ menu->hide();
+}*/
+
bgstack15