6ba9856a29
This adds primary clipboard support to data control.
62 lines
1.7 KiB
C++
62 lines
1.7 KiB
C++
/*
|
|
SPDX-FileCopyrightText: 2020 David Edmundson <davidedmundson@kde.org>
|
|
|
|
SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
|
|
*/
|
|
#pragma once
|
|
|
|
#include <QObject>
|
|
|
|
#include <KWaylandServer/kwaylandserver_export.h>
|
|
|
|
struct wl_resource;
|
|
|
|
namespace KWaylandServer
|
|
{
|
|
|
|
class AbstractDataSource;
|
|
class DataControlDeviceManagerV1Interface;
|
|
class DataControlDeviceV1InterfacePrivate;
|
|
class DataControlOfferV1Interface;
|
|
class DataControlSourceV1Interface;
|
|
class SeatInterface;
|
|
class SurfaceInterface;
|
|
|
|
/**
|
|
* The DataControlDeviceV1Interface extensions allows clients to manage seat's current selection.
|
|
*
|
|
* DataControlDeviceV1Interface corresponds to the Wayland interface @c zwlr_data_control_device_v1.
|
|
*/
|
|
class KWAYLANDSERVER_EXPORT DataControlDeviceV1Interface : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
~DataControlDeviceV1Interface() override;
|
|
|
|
SeatInterface *seat() const;
|
|
DataControlSourceV1Interface *selection() const;
|
|
DataControlSourceV1Interface *primarySelection() const;
|
|
|
|
void sendSelection(AbstractDataSource *other);
|
|
void sendClearSelection();
|
|
|
|
void sendPrimarySelection(AbstractDataSource *other);
|
|
void sendClearPrimarySelection();
|
|
|
|
Q_SIGNALS:
|
|
void selectionChanged(KWaylandServer::DataControlSourceV1Interface *dataSource);
|
|
void selectionCleared();
|
|
|
|
void primarySelectionChanged(KWaylandServer::DataControlSourceV1Interface *dataSource);
|
|
|
|
private:
|
|
friend class DataControlDeviceManagerV1InterfacePrivate;
|
|
explicit DataControlDeviceV1Interface(SeatInterface *seat, wl_resource *resource);
|
|
|
|
QScopedPointer<DataControlDeviceV1InterfacePrivate> d;
|
|
};
|
|
|
|
}
|
|
|
|
Q_DECLARE_METATYPE(KWaylandServer::DataControlDeviceV1Interface*)
|