diff --git a/src/client/plasmavirtualdesktop.h b/src/client/plasmavirtualdesktop.h --- a/src/client/plasmavirtualdesktop.h +++ b/src/client/plasmavirtualdesktop.h @@ -55,7 +55,7 @@ * * The PlasmaVirtualDesktopManagement can be used as a drop-in replacement for any org_kde_plasma_virtual_desktop_management * pointer as it provides matching cast operators. - * @since 5.46 + * @since 5.52 * * @see Registry **/ diff --git a/src/client/plasmawindowmanagement.h b/src/client/plasmawindowmanagement.h --- a/src/client/plasmawindowmanagement.h +++ b/src/client/plasmawindowmanagement.h @@ -489,32 +489,32 @@ * The server may or may not consent. * A window can enter more than one virtual desktop. * - * @since 5.46 + * @since 5.52 */ void requestEnterVirtualDesktop(const QString &id); /** - * RFC: do this with an empty id to request_enter_virtual_desktop? * Make the window enter a new virtual desktop. If the server consents the request, * it will create a new virtual desktop and assign the window to it. + * @since 5.52 */ void requestEnterNewVirtualDesktop(); /** * Ask the server to make the window the window exit a virtual desktop. * The server may or may not consent. * If it exits all desktops it will be considered on all of them. * - * @since 5.46 + * @since 5.52 */ void requestLeaveVirtualDesktop(const QString &id); /** * Return all the virtual desktop ids this window is associated to. * When a desktop gets deleted, it will be automatically removed from this list. * If this list is empty, assume it's on all desktops. * - * @since 5.46 + * @since 5.52 */ QStringList plasmaVirtualDesktops() const; diff --git a/src/client/registry.h b/src/client/registry.h --- a/src/client/registry.h +++ b/src/client/registry.h @@ -178,7 +178,7 @@ AppMenu, ///Refers to org_kde_kwin_appmenu @since 5.42 ServerSideDecorationPalette, ///Refers to org_kde_kwin_server_decoration_palette_manager @since 5.42 RemoteAccessManager, ///< Refers to org_kde_kwin_remote_access_manager interface, @since 5.45 - PlasmaVirtualDesktopManagement, ///< Refers to org_kde_plasma_virtual_desktop_management interface @since 5.47 + PlasmaVirtualDesktopManagement, ///< Refers to org_kde_plasma_virtual_desktop_management interface @since 5.52 XdgOutputUnstableV1, ///refers to zxdg_output_v1, @since 5.47 XdgShellStable ///refers to xdg_wm_base @since 5.48 }; @@ -402,7 +402,7 @@ * * Prefer using createPlasmaShell instead. * @see createPlasmaShell - * @since 5.46 + * @since 5.52 **/ org_kde_plasma_virtual_desktop_management *bindPlasmaVirtualDesktopManagement(uint32_t name, uint32_t version) const; /** @@ -839,7 +839,7 @@ * @param parent The parent for PlasmaShell * * @returns The created PlasmaShell. - * @since 5.46 + * @since 5.52 **/ PlasmaVirtualDesktopManagement *createPlasmaVirtualDesktopManagement(quint32 name, quint32 version, QObject *parent = nullptr); /** @@ -1279,7 +1279,7 @@ * Emitted whenever a org_kde_plasma_virtual_desktop_management interface gets announced. * @param name The name for the announced interface * @param version The maximum supported version of the announced interface - * @since 5.46 + * @since 5.52 **/ void plasmaVirtualDesktopManagementAnnounced(quint32 name, quint32 version); /** @@ -1527,7 +1527,7 @@ /** * Emitted whenever a org_kde_plasma_virtual_desktop_management interface gets removed. * @param name The name for the removed interface - * @since 5.46 + * @since 5.52 **/ void plasmaVirtualDesktopManagementRemoved(quint32 name); /** diff --git a/src/server/display.h b/src/server/display.h --- a/src/server/display.h +++ b/src/server/display.h @@ -273,7 +273,7 @@ * Creates the PlasmaVirtualDesktopManagementInterface in interface @p version. * * @returns The created manager object - * @since 5.46 + * @since 5.52 **/ PlasmaVirtualDesktopManagementInterface *createPlasmaVirtualDesktopManagement(QObject *parent = nullptr); diff --git a/src/server/plasmavirtualdesktop_interface.h b/src/server/plasmavirtualdesktop_interface.h --- a/src/server/plasmavirtualdesktop_interface.h +++ b/src/server/plasmavirtualdesktop_interface.h @@ -37,7 +37,7 @@ * @short Wrapper for the org_kde_plasma_virtual_desktop_management interface. * * This class provides a convenient wrapper for the org_kde_plasma_virtual_desktop_management interface. - * @since 5.46 + * @since 5.52 */ class KWAYLANDSERVER_EXPORT PlasmaVirtualDesktopManagementInterface : public Global { diff --git a/src/server/plasmawindowmanagement_interface.h b/src/server/plasmawindowmanagement_interface.h --- a/src/server/plasmawindowmanagement_interface.h +++ b/src/server/plasmawindowmanagement_interface.h @@ -282,22 +282,22 @@ /** * Emitted when the client wishes this window to enter in a new virtual desktop. * The server will decide whether to consent this request - * @since 5.48 + * @since 5.52 */ void enterPlasmaVirtualDesktopRequested(const QString &desktop); /** * Emitted when the client wishes this window to enter in * a new virtual desktop to be created for it. * The server will decide whether to consent this request - * @since 5.48 + * @since 5.52 */ void enterNewPlasmaVirtualDesktopRequested(); /** * Emitted when the client wishes to remove this window from a virtual desktop. * The server will decide whether to consent this request - * @since 5.48 + * @since 5.52 */ void leavePlasmaVirtualDesktopRequested(const QString &desktop);