aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/panel-plugins/appmenu/LAppMenuPlugin.cpp
blob: c38c4d3f53c3e38878f28c8c6ed7b893e4aa5fef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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