You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.3 KiB
C++
64 lines
1.3 KiB
C++
/*
|
|
SPDX-FileCopyrightText: 2018 Michail Vourlakos <mvourlakos@gmail.com>
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef MENU_H
|
|
#define MENU_H
|
|
|
|
// Qt
|
|
#include <QObject>
|
|
|
|
// Plasma
|
|
#include <Plasma/ContainmentActions>
|
|
|
|
class QAction;
|
|
class QMenu;
|
|
|
|
struct LayoutInfo {
|
|
QString layoutName;
|
|
bool isBackgroundFileIcon;
|
|
QString iconName;
|
|
};
|
|
|
|
class Menu : public Plasma::ContainmentActions
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
Menu(QObject *parent, const QVariantList &args);
|
|
~Menu() override;
|
|
|
|
QList<QAction *> contextualActions() override;
|
|
void restore(const KConfigGroup &) override;
|
|
|
|
QAction *action(const QString &name);
|
|
private Q_SLOTS:
|
|
void populateLayouts();
|
|
void populateMoveToLayouts();
|
|
void populateViewTemplates();
|
|
void quitApplication();
|
|
void requestConfiguration();
|
|
void requestWidgetExplorer();
|
|
void updateVisibleActions();
|
|
|
|
void addView(QAction *action);
|
|
void moveToLayout(QAction *action);
|
|
void switchToLayout(QAction *action);
|
|
|
|
private:
|
|
QStringList m_data;
|
|
QStringList m_viewTemplates;
|
|
|
|
QStringList m_actionsAlwaysShown;
|
|
QStringList m_activeLayoutNames;
|
|
|
|
QHash<QString, QAction *> m_actions;
|
|
|
|
QMenu *m_addViewMenu{nullptr};
|
|
QMenu *m_switchLayoutsMenu{nullptr};
|
|
QMenu *m_moveToLayoutMenu{nullptr};
|
|
};
|
|
|
|
#endif
|