Changeset View
Changeset View
Standalone View
Standalone View
src/server/display.cpp
| Context not available. | |||||
| 25 | #include "outputmanagement_interface.h" | 25 | #include "outputmanagement_interface.h" | ||
|---|---|---|---|---|---|
| 26 | #include "outputdevice_interface.h" | 26 | #include "outputdevice_interface.h" | ||
| 27 | #include "idle_interface.h" | 27 | #include "idle_interface.h" | ||
| 28 | #include "remote_access_interface.h" | ||||
| 28 | #include "fakeinput_interface.h" | 29 | #include "fakeinput_interface.h" | ||
| 29 | #include "logging_p.h" | 30 | #include "logging_p.h" | ||
| 30 | #include "output_interface.h" | 31 | #include "output_interface.h" | ||
| Context not available. | |||||
| 279 | return s; | 280 | return s; | ||
| 280 | } | 281 | } | ||
| 281 | 282 | | |||
| 283 | RemoteAccessManagerInterface *Display::createRemoteAccessManager(QObject *parent) | ||||
| 284 | { | ||||
| 285 | auto i = new RemoteAccessManagerInterface(this, parent); | ||||
| 286 | connect(this, &Display::aboutToTerminate, i, [this, i] { delete i; }); | ||||
| 287 | return i; | ||||
| 288 | } | ||||
| 289 | | ||||
| 282 | IdleInterface *Display::createIdle(QObject *parent) | 290 | IdleInterface *Display::createIdle(QObject *parent) | ||
| 283 | { | 291 | { | ||
| 284 | auto i = new IdleInterface(this, parent); | 292 | auto i = new IdleInterface(this, parent); | ||
| Context not available. | |||||