aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop/panel-plugins/userbutton/LUserButton.h
blob: 8d5e50409d621156bb3bf32f44646fe6e5e2d698 (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
//===========================================
//  Lumina-DE source code
//  Copyright (c) 2014, Ken Moore
//  Available under the 3-clause BSD license
//  See the LICENSE file for full details
//===========================================
//  This panel plugin is the main button that allow the user to run 
//    applications or logout of the desktop
//===========================================
#ifndef _LUMINA_DESKTOP_USER_MENU_PLUGIN_H
#define _LUMINA_DESKTOP_USER_MENU_PLUGIN_H

// Qt includes
#include <QMenu>
#include <QWidgetAction>
#include <QToolButton>
#include <QString>
#include <QWidget>


// Lumina-desktop includes
//#include "../../Globals.h"
#include "../LPPlugin.h" //main plugin widget

// libLumina includes
#include "LuminaXDG.h"

#include "UserWidget.h"

// PANEL PLUGIN BUTTON
class LUserButtonPlugin : public LPPlugin{
	Q_OBJECT
	
public:
	LUserButtonPlugin(QWidget *parent = 0, QString id = "userbutton", bool horizontal=true);
	~LUserButtonPlugin();
	
private:
	QMenu *menu;
	QWidgetAction *mact;
	UserWidget *usermenu;
	QToolButton *button;

private slots:
	void openMenu();
	void closeMenu();
	void shortcutActivated();

	void updateButtonVisuals();

public slots:
	void OrientationChange(){
	  if(this->layout()->direction()==QBoxLayout::LeftToRight){
	    this->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::MinimumExpanding);
	    button->setIconSize( QSize(this->height(), this->height()) );
	  }else{
	    this->setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Preferred);
	    button->setIconSize( QSize(this->width(), this->width()) );
	  }
	  this->layout()->update();
	  updateButtonVisuals();
	}
	
	void LocaleChange(){ 
	  updateButtonVisuals();
	  usermenu->UpdateAll();
	}
	
	void ThemeChange(){
	  updateButtonVisuals();
	  usermenu->UpdateAll();
	}
};

#endif
bgstack15