You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.3 KiB
52 lines
1.3 KiB
/* |
|
SPDX-FileCopyrightText: 2009 Chani Armitage <chani@kde.org> |
|
|
|
SPDX-License-Identifier: LGPL-2.0-or-later |
|
*/ |
|
|
|
#pragma once |
|
|
|
#include <QButtonGroup> |
|
#include <QHash> |
|
#include <plasma/containmentactions.h> |
|
|
|
class SessionManagement; |
|
|
|
class ContextMenu : public Plasma::ContainmentActions |
|
{ |
|
Q_OBJECT |
|
public: |
|
ContextMenu(QObject *parent, const QVariantList &args); |
|
~ContextMenu() override; |
|
|
|
void restore(const KConfigGroup &) override; |
|
|
|
QList<QAction *> contextualActions() override; |
|
QAction *action(const QString &name); |
|
|
|
QWidget *createConfigurationInterface(QWidget *parent) override; |
|
void configurationAccepted() override; |
|
void save(KConfigGroup &config) override; |
|
|
|
public Q_SLOTS: |
|
void openTerminal(); |
|
void runCommand(); |
|
void startLogout(); |
|
void configureDisplays(); |
|
|
|
private: |
|
QAction *m_openTerminalAction = nullptr; |
|
QAction *m_runCommandAction = nullptr; |
|
QAction *m_lockScreenAction = nullptr; |
|
QAction *m_logoutAction = nullptr; |
|
QAction *m_configureDisplaysAction = nullptr; |
|
QAction *m_separator1 = nullptr; |
|
QAction *m_separator2 = nullptr; |
|
QAction *m_separator3 = nullptr; |
|
|
|
// action name and whether it is enabled or not |
|
QHash<QString, bool> m_actions; |
|
QStringList m_actionOrder; |
|
QButtonGroup *m_buttons = nullptr; |
|
SessionManagement *const m_session; |
|
};
|
|
|