Emitted when the user switches from a virtual desktop to another.
Emitted whenever a client's 'Keep Above' property is changed. setabove_client holds the client object of the client whose property was modified and the parameter 'set' is '1' if the 'Keep Above' was set, or '0' otherwise.
Emitted whenever a client is moved across virtual desktops. The client's previous desktop is available through the old_desk parameter, whereas the current desktop can be fetched using moved_client.desktop
Emitted whenever a new client is added to the workspace. This generally occurs when a new window is opened which includes dialog boxes, windows etc. However, it is NOT emitted for unmanaged clients like the Alt+Tab switcher.
Emitted whenever a client is being managed by the KWin subsystem. The difference between workspace.clientManaging and workspace.clientAdded is that clientManaging is emitted BEFORE clientAdded. Also, if KWin is restarted with a list of clients C, then the clientManaging event will be emitted for every client in C, but clientAdded will not.
Emitted whenever a client is minimized.
Emitted whenever a client is maximized in a particular orientation. The orientation i.e. the rectangular direction in which the client was specified to occupy the entire available space is specified by the two parameters horizontally and vertically. If both are true, the client was maximized fully i.e. asked to occupy the entire workspace are available.
Emitted whenever the user requests a Kill Window [generally using the Ctrl+Esc combination]. The parameter killwindow_client is not completely safe and may return kill windows out of order of invocation. This is just a fancy function, avoid using. Instead, use workspace.clientAdded and filter for incoming Kill Windows.
Emitted whenever a client is given focus or 'activated'.
Emitted whenever a client is set to full screen or unset. The fss_set parameter can be used to determine whether the client was set or unset.
Emitted whenever a client is Unminimized (or restored).
Gets all clients on the virtual desktop desktop_no. If no desktop number is specified then it fetches all the clients. To specifically isolate clients which are on 'All desktops', set the desktop_no parameter to -1.
Returns the dimensions of the workspace in pixels.
Returns the desktop size in grid units. In essence, it returns the order of a rectangular matrix, where each element is a virtual desktop and the rows and columns specify the number of virtual desktops and the way of arrangement.
Returns the client which currently has focus.
Returns an array of all the ClientGroups from the current workspace.
Returns the current desktop number of the workspace.
Returns the x co-ordinate of the toplevel client (or the client).
Returns the y co-ordinate of the toplevel client (or the client).
Returns the width of the toplevel client (or the client).
Returns the height of the toplevel client (or the client).
Returns the size of the toplevel client (or the client).
Returns the position of the toplevel client (or the client).
Returns the opacity (or 1 - transperency) of the toplevel client (or the client).
Returns (true) if the client can be made translucent i.e. opacity can be set to values other than 0 or 1, (false) otherwise. NOTE: If compositing is OFF, then clients may still show that translucency is possible, but translucency is not possible without compositing being ON.
Sets the opacity of the client to opacity_v or sets transperency to (1 - opacity_v). NOTE: If compositing is OFF, this function has no effect for any values between 0 and 1 (exclusive).
Emitted whenever the client is moved or it's geometry changed. This includes when a client is resized.
Emitted whenever the client's 'Keep Above' property is set or cleared. 'set' is 1 if the client was set to 'Keep Above', 0 otherwise. Equivalent to workspace.clientSetKeepAbove, but for a specific client. Use wherever possible instead of workspace.clientSetKeepAbove to improve performance.
Emitted whenever a client is minimized. Equivalent to workspace.clientMinimized, but for a specific client. Use wherever possible instead of workspace.clientMinimzed to improve performance.
Emitted when the client is maximized in a particular orientation. The orientation i.e. the rectangular direction in which the client was specified to occupy the entire available space is specified by the two parameters horizontally and vertically. If both are true, the client was maximized fully i.e. asked to occupy the entire workspace are available. Equivalent to workspace.clientMaximizeSet, but for a specific client. Use wherever possible instead of workspace.clientMaximizeSet to improve performance.
Emitted whenever the client is activated (or gets focus). Equivalent to workspace.clientActivated but for a specific client. Use wherever possible instead of workspace.clientActivated to improve performance.
Emitted whenever the given client is unminimized. Equivalent of workspace.clientUnminimzed but for a specific client. Use wherever possible instead of workspace.clientUnminimized to improve performance.
Emitted whenever the client's fullscreen mode is toggled. fss_set specifies whether the client was set to or from fullscreen mode.
Returns the caption of the caption (or the title) of the window.
Closes the given client using killClient.
Moves the client to the specified location keeping the height and width of the client same.
move( location {qpoint}, emitjs {boolean} )
move( x {integer}, x {integer}, emitjs {boolean} )
Resizes the client to the specified size without changing its position.
resize( size {qsize}, emitJS {boolean} )
resize( w {integer}, h {integer}, emitJS {boolean} )
Sets the geometry of the client i.e. sets is size and location according to the provided parameters.
setGeometry( geometry {qrect}, emitJS {boolean} )
setGeometry( x {integer}, y {integer}, w {integer}, h {integer} )
Returns a windowinfo object which can be used to get further information about the client. Wherever possible, directly use the client properties than calling for a windowinfo object. NOTE: The windowinfo object is a 'snapshot' object and hence the data provided by it is not modified when the properties of the client are changed.
Returns (true) is 'client' is transient, (false) otherwise.
If the given client is transient, returns it's parent client, otherwise returns an undefined scriptvalue.
<strong>Attempt</strong> to activate (focus) the client. By attempt, it means that focus stealing prevention still is activated and the rules for activation are in place. Hence, the client actually may nor may not be activated.
Sets the caption for the specified client to caption_string.
Unminimizes (or restores) the given client.
Sets the client to or from full screen mode.
Returns (true) if the client is shaded, (false) otherwise.
Returns (true) if the client is shadeable (can be shaded), (false) otherwise.
Returns (true) if the client is minimized, (false) otherwise.
Returns (true) if the client can be minimized, (false) otherwise.
Returns (true) if the client can be mazimized, (false) otherwise.
Returns (true) if the client can be resized (changable size), (false) otherwise.
Returns (true) if the client can be moved (non-fixed location), (false) otherwise.
Returns (true) if the client can be moved across screens (only valid in a multiple monitor setup), (false) otherwise.
Returns (true) if the client can be closed by user action (or any other action other than the system or the application itself), (false) otherwise.
Returns (true) if the client is in fullscreen mode, (false) otherwise.
Returns (true) if the client can be set to fullscreen mode, (false) otherwise.
Returns (true) if the window is 'normal', (false) otherwise. A normal window is a window which has a border, can be moved by the user, can be closed, etc.
Returns (true) if 'Keep Above Others' has been set on the client, (false) otherwise.
Returns (true) if 'Keep Below Others' has been set on the client, (false) otherwise.
Sets the 'Keep Above others' parameter value or unsets it according to keepabove.
Sets the 'Keep Below others' parameter value or unsets it according to keepbelow.
Returns the client group the client belongs to. If it belongs to no client, it returns an undefined script value.
Returns the desktop number that the client is on. If it is on all desktops, it returns -1.
Creates a new clientgroup object. A clientgroup in essence refers to a group of tabbed clients and an object refers to a specific group of such tabbed clients. It returns a clientgroup object which can be then manipulated using the various accessor functions.
Adds new_client to the clientgroup at the index specified by beforeClient and if becomeVisible is true, makes it visible.
Removes the client from the clientgroup and then sets it's geometry according to set_geom. This parameter is optional.
remove( index {integer}, set_geom {qrect} )
remove( rem_client {client}, set_geom {qrect} )
Returns an array of all the member clients of the clientgroup.
Returns (true) if needle_client is a member of the clientgroup, (false) otherwise.
Searches for needle_client in the clientgroup and returns the position at which it exists. If needle_client is not found, then it returns -1.
Move a client within the group. Accepts move(client, client), move(index, index), move(index, client), move(client, index). All calls except move(client, client) are eventually mapped to move(index, index) using indexOf(client)
move( index_a {integer}, index_b {integer} )
move( move_client {integer}, index {integer} )
move( move_client {integer}, before_client {integer} )
move( index_a {integer}, before_client {integer} )
Removes all the clients from the clientgroup i.e. completely disassembles the clientgroup into its proponents.
Closes all the clients presents in the clientgroup.
Returns the minimum size acceptable for the clientgroup computed from the minimum sizes of all its present members.
Returns the maximum size acceptable for the clientgroup computed from the minimum sizes of all its present members.
Returns (true) if the client is valid, (false) otherwise.
Returns the visible name of the client.
Returns (true) if client is minimized. Redundant with client.isMinimized. For client, the subclass property is called, not the toplevel one.
Returns an integeral state for the client. Prefer other methods like isShaded, isFullScreenSet etc. over this.
Returns the window role of the toplevel client.
Returns the windowclass class of the client.
Returns the windowclass name of the client.
Searches for config_key in the configuration array and returns (true) if a corresponding value exists, (false) otherwise.
If called without parameters, returns an associative array in the format ["key" : "value"] of all available key value pairs. If only a single key is requested for (passing 1 string parameter), then the corresponding value is returned and NOT an array. If multiple keys are provided as multiple arguments, an associative array is returned. If multiple keys (or a single) key is provided as an Array, then an associative array is present (if showNonAssoc is false or it is not specified), otherwise returns an integer indexed array.
get( )
get( key1, key2 ... keyN {string} )
get( key {string} )
get( keyArray {Array(string)}, showNonAssoc {boolean} )
Returns (true) if a configuration file was found and loaded, (false) otherwise.