aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/panel-plugins/userbutton/LUserButton.cpp
blob: 7450992053dffa6dacc2af95567f76d8e1430a21 (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
//===========================================
//  Lumina-DE source code
//  Copyright (c) 2014, Ken Moore
//  Available under the 3-clause BSD license
//  See the LICENSE file for full details
//===========================================
#include "LUserButton.h"
#include "../../LSession.h"

LUserButtonPlugin::LUserButtonPlugin(QWidget *parent, QString id, bool horizontal) : LPPlugin(parent, id, horizontal){
  button = new QToolButton(this);
    button->setAutoRaise(true);
    button->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
    button->setToolTip(QString("Quickly launch applications or open files"));
    button->setText( SYSTEM::user() );
    connect(button, SIGNAL(clicked()), this, SLOT(openMenu()));
    this->layout()->setContentsMargins(0,0,0,0);
    this->layout()->addWidget(button);
  menu = new QMenu(this);
    menu->setContentsMargins(1,1,1,1);
  usermenu = new UserWidget(this);
    connect(usermenu, SIGNAL(CloseMenu()), this, SLOT(closeMenu()) );
  mact = new QWidgetAction(this);
    mact->setDefaultWidget(usermenu);
    menu->addAction(mact);
	
  QTimer::singleShot(0,this, SLOT(OrientationChange())); //Update icons/sizes
}

LUserButtonPlugin::~LUserButtonPlugin(){

}

// ========================
//    PRIVATE FUNCTIONS
// ========================
void LUserButtonPlugin::openMenu(){
  usermenu->UpdateMenu();
  menu->popup(this->mapToGlobal(QPoint(0,0)));
}

void LUserButtonPlugin::closeMenu(){
  menu->hide();
}

bgstack15