15 : wl_surface(display->createSurface(
this))
17 connect(qApp, &QGuiApplication::screenRemoved,
this, &QWaylandSurface::handleScreenRemoved);
18 connect(qApp, &QGuiApplication::screenAdded,
this, &QWaylandSurface::screensChanged);
58 auto addedScreen = QWaylandScreen::fromWlOutput(output);
63 if (m_screens.contains(addedScreen)) {
64 qCWarning(lcQpaWayland)
65 <<
"Ignoring unexpected wl_surface.enter received for output with id:"
66 << wl_proxy_get_id(
reinterpret_cast<wl_proxy *>(output))
67 <<
"screen name:" << addedScreen->name() <<
"screen model:" << addedScreen->model()
68 <<
"This is most likely a bug in the compositor.";
72 m_screens.append(addedScreen);
73 emit screensChanged();