aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop/panel-plugins/appmenu/LAppMenuPlugin.h
blob: 659d781f77fc914e378d54cba8525782deef160a (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
//===========================================
//  Lumina-DE source code
//  Copyright (c) 2015, Ken Moore
//  Available under the 3-clause BSD license
//  See the LICENSE file for full details
//===========================================
//  This panel plugin is a re-creation of the classic "start" menu
//===========================================
#ifndef _LUMINA_DESKTOP_APP_MENU_PANEL_PLUGIN_H
#define _LUMINA_DESKTOP_APP_MENU_PANEL_PLUGIN_H

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


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


// PANEL PLUGIN BUTTON
class LAppMenuPlugin : public LPPlugin{
	Q_OBJECT
	
public:
	LAppMenuPlugin(QWidget *parent = 0, QString id = "appmenu", bool horizontal=true);
	~LAppMenuPlugin();
	
private:
	QToolButton *button;
	QMenu *mainmenu;

	void updateButtonVisuals();

private slots:
	void shortcutActivated();
	void LaunchItem(QAction* item);
	void UpdateMenu();

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();
	}
	
	void ThemeChange(){
	  updateButtonVisuals();
	}
};

#endif
bgstack15