diff --git a/lib/awful/client.lua b/lib/awful/client.lua index ae74a9f4..246b7f24 100644 --- a/lib/awful/client.lua +++ b/lib/awful/client.lua @@ -74,7 +74,7 @@ client.focus = require("awful.client.focus") --- When applying the placement, honor the screen padding. -- @clientruleproperty honor_padding --- @param[opt=true] boolean +-- @tparam[opt=true] boolean honor_padding -- @see awful.placement --- When applying the placement, honor the screen work area. @@ -82,7 +82,7 @@ client.focus = require("awful.client.focus") -- The workarea is the part of the screen that excludes the bars and docks. -- -- @clientruleproperty honor_workarea --- @param[opt=true] boolean +-- @tparam[opt=true] boolean honor_workarea -- @see awful.placement --- The client default tag. @@ -90,7 +90,7 @@ client.focus = require("awful.client.focus") -- @DOC_sequences_client_rules_tags_EXAMPLE@ -- -- @clientruleproperty tag --- @param tag +-- @tparam tag tag -- @see tag -- @see new_tag -- @see tags @@ -102,7 +102,7 @@ client.focus = require("awful.client.focus") -- issues. -- -- @clientruleproperty tags --- @param[opt={tag}] table +-- @tparam[opt={tag}] table tags -- @see tag -- @see new_tag -- @see tags @@ -130,7 +130,7 @@ client.focus = require("awful.client.focus") -- @DOC_sequences_client_rules_switch_to_tags_EXAMPLE@ -- -- @clientruleproperty switch_to_tags --- @param[opt=false] boolean +-- @tparam[opt=false] boolean switch_to_tags -- @see tag.selected --- Define if the client should grab focus by default. @@ -138,11 +138,11 @@ client.focus = require("awful.client.focus") -- The `request::activate` context for this call is `rules`. -- -- @clientruleproperty focus --- @param[opt=false] boolean +-- @tparam[opt=false] boolean focus --- Should this client have a titlebar by default. -- @clientruleproperty titlebars_enabled --- @param[opt=false] boolean +-- @tparam[opt=false] boolean titlebars_enabled -- @see awful.titlebar --- A function to call when this client is ready. @@ -177,6 +177,8 @@ end -- tag as arguments. -- @request client activate client.jumpto granted When a client is activated -- because `c:jump_to()` is called. +-- @see activate +-- @see active function client.object.jump_to(self, merge) local s = get_screen(screen.focused()) -- focus the screen @@ -251,7 +253,7 @@ end -- @tparam int i The index. Use 1 to get the next, -1 to get the previous. -- @client[opt] sel The client. -- @tparam[opt=false] boolean stacked Use stacking order? (top to bottom) --- @return A client, or nil if no client is available. +-- @treturn[opt] client|nil A client, or nil if no client is available. -- -- @usage -- focus the next window in the index -- awful.client.next(1) @@ -282,10 +284,16 @@ function client.next(i, sel, stacked) end --- Swap a client with another client in the given direction. +-- -- @staticfct awful.client.swap.bydirection -- @tparam string dir The direction, can be either "up", "down", "left" or "right". -- @client[opt=focused] c The client. -- @tparam[opt=false] boolean stacked Use stacking order? (top to bottom) +-- @see swap +-- @see swapped +-- @see awful.client.swap.global_bydirection +-- @see awful.client.swap.byidx +-- @see awful.client.cycle function client.swap.bydirection(dir, c, stacked) local sel = c or capi.client.focus if sel then @@ -304,12 +312,18 @@ function client.swap.bydirection(dir, c, stacked) end --- Swap a client with another client in the given direction. +-- -- Swaps across screens. -- @staticfct awful.client.swap.global_bydirection --- @param dir The direction, can be either "up", "down", "left" or "right". +-- @tparam string dir The direction, can be either "up", "down", "left" or "right". -- @client[opt] sel The client. -- @request client activate client.swap.global_bydirection granted When a client -- could be activated because `awful.client.swap.global_bydirection` was called. +-- @see swap +-- @see swapped +-- @see awful.client.swap.bydirection +-- @see awful.client.swap.byidx +-- @see awful.client.cycle function client.swap.global_bydirection(dir, sel) sel = sel or capi.client.focus local scr = get_screen(sel and sel.screen or screen.focused()) @@ -340,9 +354,15 @@ function client.swap.global_bydirection(dir, sel) end --- Swap a client by its relative index. +-- -- @staticfct awful.client.swap.byidx --- @param i The index. +-- @tparam integer i The index. -- @client[opt] c The client, otherwise focused one is used. +-- @see swap +-- @see swapped +-- @see awful.client.swap.bydirection +-- @see awful.client.swap.global_bydirection +-- @see awful.client.cycle function client.swap.byidx(i, c) local sel = c or capi.client.focus local target = client.next(i, sel) @@ -351,12 +371,20 @@ function client.swap.byidx(i, c) end end ---- Cycle clients. +--- Cycle through the clients to change the focus. +-- +-- This will swap the client from one position to the next +-- in the layout. -- -- @staticfct awful.client.cycle --- @param clockwise True to cycle clients clockwise. --- @param[opt] s The screen where to cycle clients. +-- @tparam boolean clockwise True to cycle clients clockwise. +-- @tparam[opt] screen s The screen where to cycle clients. -- @tparam[opt=false] boolean stacked Use stacking order? (top to bottom) +-- @see swap +-- @see swapped +-- @see awful.client.swap.bydirection +-- @see awful.client.swap.global_bydirection +-- @see awful.client.swap.byidx function client.cycle(clockwise, s, stacked) s = s or screen.focused() local cls = client.visible(s, stacked) @@ -402,7 +430,7 @@ end -- -- @legacylayout awful.client.getmaster -- @screen_or_idx[opt=awful.screen.focused()] s The screen. --- @return The master window. +-- @treturn client The master client. function client.getmaster(s) s = s or screen.focused() return client.visible(s)[1] @@ -431,10 +459,10 @@ end --- Move/resize a client relative to current coordinates. -- @deprecated awful.client.moveresize --- @param x The relative x coordinate. --- @param y The relative y coordinate. --- @param w The relative width. --- @param h The relative height. +-- @tparam integer x The relative x coordinate. +-- @tparam integer y The relative y coordinate. +-- @tparam integer w The relative width. +-- @tparam integer h The relative height. -- @client[opt] c The client, otherwise focused one is used. -- @see client.relative_move function client.moveresize(x, y, w, h, c) @@ -460,7 +488,7 @@ end --- Move a client to a tag. -- @deprecated awful.client.movetotag --- @param target The tag to move the client to. +-- @tparam tag target The tag to move the client to. -- @client[opt] c The client to move, otherwise the focused one is used. -- @see client.move_to_tag function client.movetotag(target, c) @@ -469,10 +497,12 @@ function client.movetotag(target, c) end --- Move a client to a tag. +-- -- @method move_to_tag -- @tparam tag target The tag to move the client to. -- @request client activate client.movetotag granted When a client could be -- activated because `c:move_to_tag()` was called. +-- @see tags function client.object.move_to_tag(self, target) local s = target.screen if self and s then @@ -486,18 +516,22 @@ function client.object.move_to_tag(self, target) end --- Toggle a tag on a client. +-- -- @deprecated awful.client.toggletag --- @param target The tag to toggle. +-- @tparam tag target The tag to toggle. -- @client[opt] c The client to toggle, otherwise the focused one is used. -- @see client.toggle_tag +-- @see tags function client.toggletag(target, c) gdebug.deprecate("Use c:toggle_tag(target) instead of awful.client.toggletag", {deprecated_in=4}) client.object.toggle_tag(c or capi.client.focus, target) end --- Toggle a tag on a client. +-- -- @method toggle_tag -- @tparam tag target The tag to move the client to. +-- @see tags function client.object.toggle_tag(self, target) -- Check that tag and client screen are identical if self and get_screen(self.screen) == get_screen(target.screen) then @@ -523,7 +557,7 @@ end --- Move a client to a screen. Default is next screen, cycling. -- @deprecated awful.client.movetoscreen -- @client c The client to move. --- @param s The screen, default to current + 1. +-- @tparam screen s The screen, default to current + 1. -- @see screen -- @see client.move_to_screen function client.movetoscreen(c, s) @@ -590,14 +624,11 @@ end --- If a client is marked or not. -- --- **Signal:** --- --- * *marked* (for legacy reasons, use `property::marked`) --- * *unmarked* (for legacy reasons, use `property::marked`) --- * *property::marked* --- -- @property marked --- @param boolean +-- @tparam boolean marked +-- @emits marked (for legacy reasons, use `property::marked`) +-- @emits unmarker (for legacy reasons, use `property::marked`) +-- @emits property::marked --- The border color when the client is focused. -- @@ -664,7 +695,7 @@ end --- Return the marked clients and empty the marked table. -- @deprecated awful.client.getmarked --- @return A table with all marked clients. +-- @treturn table A table with all marked clients. function client.getmarked() local copy = gtable.clone(client.data.marked, false) @@ -682,7 +713,7 @@ end -- Floating client are not handled by tiling layouts. -- @deprecated awful.client.floating.set -- @client c A client. --- @param s True or false. +-- @tparam boolean s True or false. function client.floating.set(c, s) gdebug.deprecate("Use c.floating = true instead of awful.client.floating.set", {deprecated_in=4}) client.object.set_floating(c, s) @@ -691,7 +722,7 @@ end -- Set a client floating state, overriding auto-detection. -- Floating client are not handled by tiling layouts. -- @client c A client. --- @param s True or false. +-- @tparam boolan s True or false. function client.object.set_floating(c, s) c = c or capi.client.focus if c and client.property.get(c, "floating") ~= s then @@ -741,13 +772,10 @@ end --- Return if a client has a fixed size or not. -- --- **Signal:** --- --- * *property::is_fixed* --- -- This property is read only. -- @property is_fixed --- @param boolean The fixed size state +-- @tparam[opt=false] boolean is_fixed The fixed size state +-- @propemits false false -- @see size_hints -- @see size_hints_honor @@ -772,7 +800,7 @@ end -- -- This property is read only. -- @property immobilized_horizontal --- @param boolean The immobilized state +-- @tparam[opt=false] boolean immobilized_horizontal The immobilized state -- @see maximized -- @see maximized_horizontal -- @see fullscreen @@ -788,7 +816,7 @@ end -- -- This property is read only. -- @property immobilized_vertical --- @param boolean The immobilized state +-- @tparam[opt=false] boolean immobilized_vertical The immobilized state -- @see maximized -- @see maximized_vertical -- @see fullscreen @@ -801,7 +829,7 @@ end -- @client c A client. -- @see floating -- @deprecated awful.client.floating.get --- @return True or false. Note that some windows might be floating even if you +-- @treturn boolean True or false. Note that some windows might be floating even if you -- did not set them manually. For example, windows with a type different than -- normal. function client.floating.get(c) @@ -817,10 +845,6 @@ end -- did not set them manually. For example, windows with a type different than -- normal. -- --- **Signal:** --- --- * *property::floating* --- -- @property floating -- @tparam boolean floating The floating state. -- @request client border floating granted When a border update is required @@ -829,6 +853,7 @@ end -- floating. -- @request client border inactive granted When a client stop being active and -- is not floating. +-- @propemits false false function client.object.get_floating(c) c = c or capi.client.focus @@ -901,39 +926,43 @@ end --- The x coordinates. -- --- **Signal:** --- --- * *property::x* --- -- @property x --- @param integer +-- @tparam integer x +-- @emits property::geometry +-- @emitstparam property::geometry table geo The +-- geometry (with `x`, `y`, `width`, `height`). +-- @emits property::x +-- @emits property::position --- The y coordinates. -- --- **Signal:** --- --- * *property::y* --- -- @property y --- @param integer +-- @tparam integer y +-- @emits property::geometry +-- @emitstparam property::geometry table geo The +-- geometry (with `x`, `y`, `width`, `height`). +-- @emits property::y +-- @emits property::position --- The width of the client. -- --- **Signal:** --- --- * *property::width* --- -- @property width --- @param width +-- @tparam integer width +-- @emits property::geometry +-- @emitstparam property::geometry table geo The +-- geometry (with `x`, `y`, `width`, `height`). +-- @emits property::width +-- @emits property::size --- The height of the client. -- --- **Signal:** --- --- * *property::height* --- -- @property height --- @param height +-- @tparam integer height +-- @emits property::geometry +-- @emitstparam property::geometry table geo The +-- geometry (with `x`, `y`, `width`, `height`). +-- @emits property::height +-- @emits property::size -- Add the geometry helpers to match the wibox API for _, v in ipairs {"x", "y", "width", "height"} do @@ -949,8 +978,8 @@ end --- Restore (=unminimize) a random client. -- @staticfct awful.client.restore --- @param s The screen to use. --- @return The restored client if some client was restored, otherwise nil. +-- @tparam screen s The screen to use. +-- @treturn client The restored client if some client was restored, otherwise nil. function client.restore(s) s = s or screen.focused() local cls = capi.client.get(s) @@ -970,8 +999,8 @@ function client.restore(s) end --- Normalize a set of numbers to 1. --- @param set the set of numbers to normalize --- @param num the number of numbers to normalize +-- @tparam table set the set of numbers to normalize. +-- @tparam number num the number of numbers to normalize. local function normalize(set, num) num = num or #set local total = 0 @@ -998,9 +1027,9 @@ end -- -- @legacylayout awful.client.idx -- @client c the client --- @return col the column number --- @return idx index of the client in the column --- @return num the number of visible clients in the column +-- @treturn integer col The column number. +-- @treturn integer idx Index of the client in the column. +-- @treturn integer num The number of visible clients in the column. function client.idx(c) c = c or capi.client.focus if not c then return end @@ -1058,8 +1087,9 @@ end --- Set the window factor of a client -- -- @legacylayout awful.client.setwfact --- @param wfact the window factor value +-- @tparam number wfact the window factor value -- @client c the client +-- @emits property::windowfact function client.setwfact(wfact, c) -- get the currently selected window c = c or capi.client.focus @@ -1114,7 +1144,8 @@ end -- @tparam number add Amount to increase/decrease the client's window factor. -- Should be between `-current_window_factor` and something close to -- infinite. The normalisation then ensures that the sum of all factors is 1. --- @client c the client +-- @client c the client. +-- @emits property::windowfact function client.incwfact(add, c) c = c or capi.client.focus if not c then return end @@ -1152,12 +1183,9 @@ end -- Clients with a type of "utility", "toolbar" or "dock" are dockable by -- default. -- --- **Signal:** --- --- * *property::dockable* --- -- @property dockable --- @param boolean The dockable state +-- @tparam boolean dockable The dockable state +-- @propemits false false function client.object.get_dockable(c) local value = client.property.get(c, "dockable") @@ -1180,7 +1208,7 @@ end -- to the edge of the workarea. -- -- @client c A client. --- @param value True or false. +-- @tparam boolean value True or false. -- @deprecated awful.client.dockable.set function client.dockable.set(c, value) gdebug.deprecate("Use c.dockable = value instead of awful.client.dockable.set", {deprecated_in=4}) @@ -1193,12 +1221,10 @@ end -- various ways. This property uses the motif MWM_DECOR_TITLE hint and -- interprets it as the client (not) wanting a titlebar. -- --- **Signal:** --- --- * *property::requests_no_titlebar* --- -- @property requests_no_titlebar --- @param boolean Whether the client requests not to get a titlebar +-- @tparam boolean requests_no_titlebar Whether the client +-- requests not to get a titlebar. +-- @propemits false false function client.object.get_requests_no_titlebar(c) local hints = c.motif_wm_hints @@ -1224,8 +1250,8 @@ end) -- This method is deprecated. It is now possible to use `c.value` directly. -- -- @client c The client. --- @param prop The property name. --- @return The property. +-- @tparam string prop The property name. +-- @return The property value. -- @deprecated awful.client.property.get function client.property.get(c, prop) if not c._private._persistent_properties_loaded then @@ -1248,8 +1274,8 @@ end -- directly. -- -- @client c The client. --- @param prop The property name. --- @param value The value. +-- @tparam string prop The property name. +-- @param value The property value. -- @deprecated awful.client.property.set function client.property.set(c, prop, value) if not c._private.awful_client_properties then @@ -1267,8 +1293,8 @@ end --- Set a client property to be persistent across restarts (via X properties). -- -- @staticfct awful.client.property.persist --- @param prop The property name. --- @param kind The type (used for register_xproperty). +-- @tparam string prop The property name. +-- @tparam string kind The type (used for register_xproperty). -- One of "string", "number" or "boolean". function client.property.persist(prop, kind) local xprop = "awful.client.property." .. prop @@ -1288,10 +1314,10 @@ end -- Starting from the client in focus or the given index, all clients that match -- a given criteria. -- --- @param filter a function that returns true to indicate a positive match --- @param start what index to start iterating from. Defaults to using the +-- @tparam function filter a function that returns true to indicate a positive match. +-- @tparam integer start what index to start iterating from. Defaults to using the -- index of the currently focused client. --- @param s which screen to use. nil means all screens. +-- @tparam screen s which screen to use. nil means all screens. -- -- @staticfct awful.client.iterate -- @usage -- un-minimize all urxvt instances @@ -1313,8 +1339,8 @@ end -- If multiple clients match the given condition then the next one is -- focussed. -- --- @param cmd the command to execute --- @param matcher a function that returns true to indicate a matching client +-- @tparam string cmd the command to execute +-- @tparam function matcher a function that returns true to indicate a matching client -- @tparam bool|function merge If true then merge tags (select the client's -- first tag additionally) when the client is not visible. -- If it is a function, it will be called with the client as argument. @@ -1354,7 +1380,7 @@ end -- @client c The client. -- @tparam function matcher A function that should return true, if -- a matching parent client is found. --- @treturn client.client|nil The matching parent client or nil. +-- @treturn client|nil The matching parent client or nil. function client.get_transient_for_matching(c, matcher) gdebug.deprecate("Use c:get_transient_for_matching(matcher) instead of".. "awful.client.get_transient_for_matching", {deprecated_in=4}) @@ -1366,7 +1392,10 @@ end -- @method get_transient_for_matching -- @tparam function matcher A function that should return true, if -- a matching parent client is found. --- @treturn client.client|nil The matching parent client or nil. +-- @treturn client|nil The matching parent client or nil. +-- @see transient_for +-- @see modal +-- @see is_transient_for function client.object.get_transient_for_matching(self, matcher) local tc = self.transient_for while tc do @@ -1379,11 +1408,12 @@ function client.object.get_transient_for_matching(self, matcher) end --- Is a client transient for another one? +-- -- @deprecated awful.client.is_transient_for -- @see client.is_transient_for -- @client c The child client (having transient_for). -- @client c2 The parent client to check. --- @treturn client.client|nil The parent client or nil. +-- @treturn client|nil The parent client or nil. function client.is_transient_for(c, c2) gdebug.deprecate("Use c:is_transient_for(c2) instead of".. "awful.client.is_transient_for", {deprecated_in=4}) @@ -1391,9 +1421,20 @@ function client.is_transient_for(c, c2) end --- Is a client transient for another one? +-- +-- This will traverse the chain of `transient_for` client +-- until a client which is transient for `c2` is found. If +-- one is found, it will be returned. If none is found, then +-- `nil` will be returned. Most of the time there is no +-- long chain of clients, so `self` or `nil` are the most +-- likely return values. +-- -- @method is_transient_for -- @client c2 The parent client to check. --- @treturn client.client|nil The parent client or nil. +-- @treturn client|nil The parent client or nil. +-- @see transient_for +-- @see modal +-- @see client.get_transient_for_matching function client.object.is_transient_for(self, c2) local tc = self while tc.transient_for do @@ -1418,12 +1459,15 @@ object.properties._legacy_accessors(client, "keys", "_keys", true, function(new_ end, true, true, "keybinding") --- Set the client shape. +-- -- @property shape -- @tparam gears.shape A gears.shape compatible function. +-- @propemits true false -- @see gears.shape function client.object.set_shape(self, shape) client.property.set(self, "_shape", shape) set_shape(self) + self:emit_signal("property::shape", shape) end -- Proxy those properties to decorate their accessors with an extra flag to @@ -1643,7 +1687,7 @@ capi.client.connect_signal("request::manage", function (c) require("awful.placement").no_offscreen(c) end - if awesome.startup then + if capi.awesome.startup then client.focus.history.add(c) end diff --git a/objects/client.c b/objects/client.c index 7856eb63..7bd1cd35 100644 --- a/objects/client.c +++ b/objects/client.c @@ -140,6 +140,7 @@ * initialized, but before clients are added. * * @signal scanning + * @classsignal */ /** AwesomeWM is done scanning for clients. @@ -147,14 +148,17 @@ * This is emitted before the `startup` signal and after the `scanning` signal. * * @signal scanned + * @classsignal */ /** When a client gains focus. * @signal focus + * @classsignal */ /** Before manage, after unmanage, and when clients swap. * @signal list + * @classsignal */ /** When 2 clients are swapped @@ -179,6 +183,7 @@ * with the other `request::` signals). * @request client border added granted When a new client needs a its initial * border settings. + * @classsignal */ /** When a client is going away. @@ -198,6 +203,7 @@ * @tparam string context Why was the client unmanaged. * @tparam table hints More metadata (currently empty, it exists for compliance * with the other `request::` signals). + * @classsignal */ /** Use `request::manage`. @@ -208,30 +214,31 @@ * @deprecatedsignal unmanage */ -/** +/** When a mouse button is pressed in a client. * @signal button::press */ -/** +/** When a mouse button is released in a client. + * * @signal button::release */ -/** +/** When the mouse enters a client. + * * @signal mouse::enter */ -/** +/** When the mouse leaves a client. + * * @signal mouse::leave */ /** + * When the mouse moves within a client. + * * @signal mouse::move */ -/** - * @signal property::window - */ - /** When a client should get activated (focused and/or raised). * * **Contexts are:** @@ -267,6 +274,7 @@ * @tparam[opt] table hints A table with additional hints: * @tparam[opt=false] boolean hints.raise should the client be raised? * @request client activate ewmh granted When the client asks to be activated. + * @classsignal */ /** When an event could lead to the client being activated. @@ -286,6 +294,7 @@ * @tparam string context The context where this signal was used. * @tparam[opt] table hints A table with additional hints: * @tparam[opt=false] boolean hints.raise should the client be raised? + * @classsignal * */ @@ -301,14 +310,19 @@ * (programmatically) asks for the maximization to be changed. * @request client geometry client_maximize_vertical granted When a client * (programmatically) asks for the maximization to be changed. + * @classsignal */ -/** +/** When the tag requests to be moved to a tag or needs a new tag. + * * @signal request::tag + * @classsignal */ -/** +/** When the client requests to become urgent. + * * @signal request::urgent + * @classsignal */ /** Emitted during startup to gather the default client mousebindings. @@ -363,151 +377,231 @@ */ /** + * Emitted when the client is raised within its layer. + * * @signal raised + * @see below + * @see above + * @see ontop + * @see raise + * @see lower + * @see lowered */ -/** +/** Emitted when the client is lowered within its layer. + * * @signal lowered + * @see below + * @see above + * @see ontop + * @see raise + * @see lower + * @see raised */ /** * The focused `client` or nil (in case there is none). * + * It is not recommanded to set the focused client using + * this property. Please use `c:activate{}` instead of + * `client.focus = c`. Setting the focus directly bypasses + * all the filters and emits fewer signals, which tend to + * cause unwanted side effects and make it harder to alter + * the code behavior in the future. It usually takes *more* + * code to use this rather than `:activate{}` because all + * the boilerplate code (such as `c:raise()`) needs to be + * added everywhere. + * + * The main use case for this field is to check *when* there + * is an active client. + * + * if client.focus ~= nil then + * -- do something + * end + * + * If you want to check if a client is active, use: + * + * if c.active then + * -- do something + * end + * * @tfield client focus + * @see active + * @see activate + * @see request::activate */ /** * The X window id. * - * **Signal:** - * - * * *property::window* + * This is rarely useful, but some DBus protocols will + * have this ID in their API, so it can be useful when + * writing AwesomeWM bindings for them. * * @property window - * @param string + * @tparam integer window + * @propemits false false */ /** * The client title. * - * **Signal:** - * - * * *property::name* + * This is the text which will be shown in the `awful.widget.tasklist` + * and the `awful.titlebar`. * * @property name - * @param string + * @tparam string name + * @propemits false false + * @see awful.titlebar + * @see awful.widget.tasklist */ /** * True if the client does not want to be in taskbar. * - * **Signal:** + * Some clients, like docked bars or some `sticky` clients + * such as wallpaper sensors like Conky have no value in + * the `awful.widget.tasklist` and should not be shown there. * - * * *property::skip\_taskbar* + * The default value of this property reflects the value of the + * `_NET_WM_STATE_SKIP_TASKBAR` X11 protocol xproperty. * * @property skip_taskbar - * @param boolean + * @tparam[opt=false] boolean skip_taskbar + * @propemits false false + * @see sticky */ +//TODO v5: Rename to skip_tasklist? + /** * The window type. * + * This is useful in, among other places, the `ruled.client` rules to apply + * different properties depending on the client types. It is also used + * throughout the API to alter the client (and `wibox`) behavior depending on + * the `type`. For example, clients with the `dock` type are placed on the side + * of the screen while other like `combo` are totally ignored and never + * considered `client`s in the first place. + * * Valid types are: * - * * **desktop**: The root client, it cannot be moved or resized. - * * **dock**: A client attached to the side of the screen. - * * **splash**: A client, usually without titlebar shown when an application starts. - * * **dialog**: A dialog, see `transient_for`. - * * **menu**: A context menu. - * * **toolbar**: A floating toolbar. - * * **utility**: - * * **dropdown_menu**: A context menu attached to a parent position. - * * **popup_menu**: A context menu. - * * **notification**: A notification popup. - * * **combo**: A combobox list menu. - * * **dnd**: A drag and drop indicator. - * * **normal**: A normal application main window. + *
Name | + *Description | + *
---|---|
desktop | The root client, it cannot be moved or resized. |
dock | A client attached to the side of the screen. |
splash | A client, usually without titlebar shown when an application starts. |
dialog | A dialog, see `transient_for`. |
menu | A context menu. |
toolbar | A floating toolbar. |
utility | |
dropdown_menu | A context menu attached to a parent position. |
popup_menu | A context menu. |
notification | A notification popup. |
combo | A combobox list menu. |
dnd | A drag and drop indicator. |
normal | A normal application main window. |