aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop-unified/src-desktop/ContextMenu.h
blob: 8b0509fb3b3fd18e1e6872556488d041aa89d0de (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
//===========================================
//  Lumina-desktop source code
//  Copyright (c) 2012-2017, Ken Moore
//  Available under the 3-clause BSD license
//  See the LICENSE file for full details
//===========================================
#ifndef _LUMINA_DESKTOP_CONTEXT_MENU_H
#define _LUMINA_DESKTOP_CONTEXT_MENU_H

#include <global-includes.h>

class DesktopContextMenu : public QMenu{
	Q_OBJECT
public slots:
	void SettingsChanged(DesktopSettings::File);
	void UpdateMenu(); //re-create the menu

private:
	QLabel *workspaceLabel;
	QWidgetAction *wkspaceact;

public: 
	DesktopContextMenu(QWidget *parent = 0);
	~DesktopContextMenu();

	void start(); //setup connections to global objects

private slots:
	void LaunchAction(QAction *act);
	void showMenu(const QPoint&);

signals:
	void LockSession();
	void showLeaveDialog();
};

#endif
bgstack15