KWindowSystem

waylandxdgforeignv2.cpp
1/*
2 SPDX-FileCopyrightText: 2023 Kai Uwe Broulik <kde@broulik.de>
3
4 SPDX-License-Identifier: LGPL-2.0-or-later
5*/
6
7#include "waylandxdgforeignv2_p.h"
8
9#include <QGuiApplication>
10
11WaylandXdgForeignExportedV2::WaylandXdgForeignExportedV2(::zxdg_exported_v2 *object)
12 : QObject()
13 , QtWayland::zxdg_exported_v2(object)
14{
15}
16
17WaylandXdgForeignExportedV2::~WaylandXdgForeignExportedV2()
18{
19 if (qGuiApp) {
20 destroy();
21 }
22}
23
24QString WaylandXdgForeignExportedV2::handle() const
25{
26 return m_handle;
27}
28
29void WaylandXdgForeignExportedV2::zxdg_exported_v2_handle(const QString &handle)
30{
31 m_handle = handle;
32 Q_EMIT handleReceived(handle);
33}
34
35WaylandXdgForeignExporterV2::WaylandXdgForeignExporterV2()
36 : QWaylandClientExtensionTemplate<WaylandXdgForeignExporterV2>(1)
37{
38 initialize();
39}
40
41WaylandXdgForeignExporterV2::~WaylandXdgForeignExporterV2()
42{
43 if (qGuiApp && isActive()) {
44 destroy();
45 }
46}
47
48WaylandXdgForeignExporterV2 &WaylandXdgForeignExporterV2::self()
49{
50 static WaylandXdgForeignExporterV2 s_instance;
51 return s_instance;
52}
53
54WaylandXdgForeignExportedV2 *WaylandXdgForeignExporterV2::exportToplevel(wl_surface *surface)
55{
56 return new WaylandXdgForeignExportedV2(export_toplevel(surface));
57}
58
59WaylandXdgForeignImportedV2::WaylandXdgForeignImportedV2(const QString &handle, ::zxdg_imported_v2 *object)
60 : QObject()
61 , QtWayland::zxdg_imported_v2(object)
62 , m_handle(handle)
63{
64}
65
66WaylandXdgForeignImportedV2::~WaylandXdgForeignImportedV2()
67{
68 if (qGuiApp) {
69 destroy();
70 }
71}
72
73void WaylandXdgForeignImportedV2::zxdg_imported_v2_destroyed()
74{
75 delete this;
76}
77
78QString WaylandXdgForeignImportedV2::handle() const
79{
80 return m_handle;
81}
82
83WaylandXdgForeignImporterV2::WaylandXdgForeignImporterV2()
84 : QWaylandClientExtensionTemplate<WaylandXdgForeignImporterV2>(1)
85{
86 initialize();
87}
88
89WaylandXdgForeignImporterV2::~WaylandXdgForeignImporterV2()
90{
91 if (qGuiApp && isActive()) {
92 destroy();
93 }
94}
95
96WaylandXdgForeignImporterV2 &WaylandXdgForeignImporterV2::self()
97{
98 static WaylandXdgForeignImporterV2 s_instance;
99 return s_instance;
100}
101
102WaylandXdgForeignImportedV2 *WaylandXdgForeignImporterV2::importToplevel(const QString &handle)
103{
104 return new WaylandXdgForeignImportedV2(handle, import_toplevel(handle));
105}
106
107#include "moc_waylandxdgforeignv2_p.cpp"
void initialize(StandardShortcut id)
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri May 3 2024 11:45:49 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.