Changeset View
Changeset View
Standalone View
Standalone View
src/client/registry.cpp
| Context not available. | |||||
| 26 | #include "fakeinput.h" | 26 | #include "fakeinput.h" | ||
|---|---|---|---|---|---|
| 27 | #include "fullscreen_shell.h" | 27 | #include "fullscreen_shell.h" | ||
| 28 | #include "idle.h" | 28 | #include "idle.h" | ||
| 29 | #include "remote_access.h" | ||||
| 29 | #include "logging_p.h" | 30 | #include "logging_p.h" | ||
| 30 | #include "outputconfiguration.h" | 31 | #include "outputconfiguration.h" | ||
| 31 | #include "outputmanagement.h" | 32 | #include "outputmanagement.h" | ||
| Context not available. | |||||
| 52 | #include <wayland-plasma-shell-client-protocol.h> | 53 | #include <wayland-plasma-shell-client-protocol.h> | ||
| 53 | #include <wayland-plasma-window-management-client-protocol.h> | 54 | #include <wayland-plasma-window-management-client-protocol.h> | ||
| 54 | #include <wayland-idle-client-protocol.h> | 55 | #include <wayland-idle-client-protocol.h> | ||
| 56 | #include <wayland-remote-access-client-protocol.h> | ||||
| 55 | #include <wayland-fake-input-client-protocol.h> | 57 | #include <wayland-fake-input-client-protocol.h> | ||
| 56 | #include <wayland-shadow-client-protocol.h> | 58 | #include <wayland-shadow-client-protocol.h> | ||
| 57 | #include <wayland-output-management-client-protocol.h> | 59 | #include <wayland-output-management-client-protocol.h> | ||
| Context not available. | |||||
| 161 | &Registry::idleAnnounced, | 163 | &Registry::idleAnnounced, | ||
| 162 | &Registry::idleRemoved | 164 | &Registry::idleRemoved | ||
| 163 | }}, | 165 | }}, | ||
| 166 | {Registry::Interface::RemoteAccessManager, { | ||||
| 167 | 1, | ||||
| 168 | QByteArrayLiteral("org_kde_kwin_remote_access_manager"), | ||||
| 169 | &org_kde_kwin_remote_access_manager_interface, | ||||
| 170 | &Registry::remoteAccessManagerAnnounced, | ||||
| 171 | &Registry::remoteAccessManagerRemoved | ||||
| 172 | }}, | ||||
| 164 | {Registry::Interface::FakeInput, { | 173 | {Registry::Interface::FakeInput, { | ||
| 165 | 2, | 174 | 2, | ||
| 166 | QByteArrayLiteral("org_kde_kwin_fake_input"), | 175 | QByteArrayLiteral("org_kde_kwin_fake_input"), | ||
| Context not available. | |||||
| 532 | BIND(PlasmaShell, org_kde_plasma_shell) | 541 | BIND(PlasmaShell, org_kde_plasma_shell) | ||
| 533 | BIND(PlasmaWindowManagement, org_kde_plasma_window_management) | 542 | BIND(PlasmaWindowManagement, org_kde_plasma_window_management) | ||
| 534 | BIND(Idle, org_kde_kwin_idle) | 543 | BIND(Idle, org_kde_kwin_idle) | ||
| 544 | BIND(RemoteAccessManager, org_kde_kwin_remote_access_manager) | ||||
| 535 | BIND(FakeInput, org_kde_kwin_fake_input) | 545 | BIND(FakeInput, org_kde_kwin_fake_input) | ||
| 536 | BIND(OutputManagement, org_kde_kwin_outputmanagement) | 546 | BIND(OutputManagement, org_kde_kwin_outputmanagement) | ||
| 537 | BIND(OutputDevice, org_kde_kwin_outputdevice) | 547 | BIND(OutputDevice, org_kde_kwin_outputdevice) | ||
| Context not available. | |||||
| 581 | CREATE(PlasmaShell) | 591 | CREATE(PlasmaShell) | ||
| 582 | CREATE(PlasmaWindowManagement) | 592 | CREATE(PlasmaWindowManagement) | ||
| 583 | CREATE(Idle) | 593 | CREATE(Idle) | ||
| 594 | CREATE(RemoteAccessManager) | ||||
| 584 | CREATE(FakeInput) | 595 | CREATE(FakeInput) | ||
| 585 | CREATE(OutputManagement) | 596 | CREATE(OutputManagement) | ||
| 586 | CREATE(OutputDevice) | 597 | CREATE(OutputDevice) | ||
| Context not available. | |||||