dbusinterface: add doc comment for queryWindowInfo()

Adds a simple doc comment to explain what the method does.
This commit is contained in:
Kristen McWilliam 2021-11-01 12:24:32 -04:00
parent 94de28bfbe
commit ab09fdf0b2

View file

@ -60,6 +60,14 @@ public Q_SLOTS: // METHODS
Q_NOREPLY void showDebugConsole(); Q_NOREPLY void showDebugConsole();
Q_NOREPLY void replace(); Q_NOREPLY void replace();
/**
* Allows the user to pick a window and get info on it.
*
* When called the user's mouse cursor will become a targeting reticule.
* On clicking a window with the target a map will be returned
* with various information about the picked window, such as:
* height, width, minimized, fullscreen, etc.
*/
QVariantMap queryWindowInfo(); QVariantMap queryWindowInfo();
/** /**