kwin/src/wayland/appmenu_interface.h

95 lines
2.4 KiB
C
Raw Normal View History

/*
SPDX-FileCopyrightText: 2017 David Edmundson <kde@davidedmundson.co.uk>
SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
*/
2021-03-10 16:08:30 +00:00
#pragma once
2020-04-29 14:56:38 +00:00
#include <KWaylandServer/kwaylandserver_export.h>
#include <QObject>
struct wl_resource;
2020-04-29 14:56:38 +00:00
namespace KWaylandServer
{
class Display;
class SurfaceInterface;
class AppMenuInterface;
class AppMenuManagerInterfacePrivate;
class AppMenuInterfacePrivate;
/**
* Provides the DBus service name and object path to a AppMenu DBus interface.
*
* This global can be used for clients to bind AppmenuInterface instances
* and notifies when a new one is created
*/
class KWAYLANDSERVER_EXPORT AppMenuManagerInterface : public QObject
{
Q_OBJECT
public:
explicit AppMenuManagerInterface(Display *display, QObject *parent = nullptr);
~AppMenuManagerInterface() override;
/**
* Returns any existing appMenu for a given surface
* This returns a null pointer if no AppMenuInterface exists.
*/
AppMenuInterface *appMenuForSurface(SurfaceInterface *);
Q_SIGNALS:
/**
* Emitted whenever a new AppmenuInterface is created.
*/
void appMenuCreated(KWaylandServer::AppMenuInterface *);
private:
QScopedPointer<AppMenuManagerInterfacePrivate> d;
};
/**
* Provides the DBus service name and object path to a AppMenu DBus interface.
* This interface is attached to a wl_surface and provides access to where
* the AppMenu DBus interface is registered.
*/
class KWAYLANDSERVER_EXPORT AppMenuInterface : public QObject
{
Q_OBJECT
public:
/**
* Structure containing DBus service name and path
*/
struct InterfaceAddress {
/** Service name of host with the AppMenu object*/
QString serviceName;
/** Object path of the AppMenu interface*/
QString objectPath;
};
~AppMenuInterface() override;
/**
* @returns the service name and object path or empty strings if unset
*/
InterfaceAddress address() const;
/**
* @returns The SurfaceInterface this AppmenuInterface references.
*/
SurfaceInterface *surface() const;
Q_SIGNALS:
/**
* Emitted when the address changes or is first received
*/
2020-04-29 14:56:38 +00:00
void addressChanged(KWaylandServer::AppMenuInterface::InterfaceAddress);
private:
explicit AppMenuInterface(SurfaceInterface *s, wl_resource *resource);
friend class AppMenuManagerInterfacePrivate;
QScopedPointer<AppMenuInterfacePrivate> d;
};
}