aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop-unified/src-desktop/src-widgets/ContextMenu.h
blob: b20087efe6bc9171816c7654a2911de43f907d92 (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
//===========================================
//  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(bool fast = true); //re-create the menu

private:
	QLabel *workspaceLabel;
	QWidgetAction *wkspaceact;
	QMenu *appMenu, *winMenu;
	bool usewinmenu;

	void AddWindowToMenu(NativeWindowObject*);

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

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

private slots:
	void LaunchAction(QAction *act);
	void LaunchApp(QAction *act);

	void showMenu(const QPoint&);

	void updateAppMenu();
	void updateWinMenu();

signals:
	void LockSession();
	void showLeaveDialog();
	void LaunchStandardApplication(QString);
	void LaunchApplication(QString);
};

#endif
bgstack15