kwin/src/appmenu.h

63 lines
1.5 KiB
C
Raw Normal View History

2020-08-02 22:22:19 +00:00
/*
KWin - the KDE window manager
This file is part of the KDE project.
2020-08-02 22:22:19 +00:00
SPDX-FileCopyrightText: 2011 Lionel Chauvin <megabigbug@yahoo.fr>
SPDX-FileCopyrightText: 2011, 2012 Cédric Bellegarde <gnumdk@gmail.com>
SPDX-FileCopyrightText: 2013 Martin Gräßlin <mgraesslin@kde.org>
2020-08-02 22:22:19 +00:00
SPDX-License-Identifier: GPL-2.0-or-later
*/
2018-08-29 18:02:16 +00:00
#ifndef KWIN_APPMENU_H
#define KWIN_APPMENU_H
// KWin
#include <kwinglobals.h>
// Qt
#include <QObject>
// xcb
#include <xcb/xcb.h>
class QPoint;
class OrgKdeKappmenuInterface;
class QDBusObjectPath;
class QDBusServiceWatcher;
namespace KWin
{
2022-04-22 17:39:12 +00:00
class Window;
class ApplicationMenu : public QObject
{
Q_OBJECT
public:
explicit ApplicationMenu();
2022-04-22 17:39:12 +00:00
void showApplicationMenu(const QPoint &pos, Window *c, int actionId);
bool applicationMenuEnabled() const;
void setViewEnabled(bool enabled);
Q_SIGNALS:
void applicationMenuEnabledChanged(bool enabled);
private Q_SLOTS:
void slotShowRequest(const QString &serviceName, const QDBusObjectPath &menuObjectPath, int actionId);
void slotMenuShown(const QString &serviceName, const QDBusObjectPath &menuObjectPath);
void slotMenuHidden(const QString &serviceName, const QDBusObjectPath &menuObjectPath);
private:
OrgKdeKappmenuInterface *m_appmenuInterface;
QDBusServiceWatcher *m_kappMenuWatcher;
2022-04-28 07:44:11 +00:00
Window *findWindowWithApplicationMenu(const QString &serviceName, const QDBusObjectPath &menuObjectPath);
bool m_applicationMenuEnabled = false;
};
}
2018-08-29 18:02:16 +00:00
#endif // KWIN_APPMENU_H