2018-07-24 14:12:44 +02:00
|
|
|
--DOC_GEN_IMAGE --DOC_HIDE
|
2016-03-28 07:53:39 +02:00
|
|
|
-- Stretch the drawable to the bottom of the parent area. --DOC_HEADER
|
|
|
|
-- @tparam drawable d A drawable (like `client` or `wibox`) --DOC_HEADER
|
|
|
|
-- @tparam[opt={}] table args Other arguments --DOC_HEADER
|
2016-04-21 03:48:46 +02:00
|
|
|
-- @treturn table The new geometry --DOC_HEADER
|
2019-06-08 01:08:05 +02:00
|
|
|
-- @staticfct awful.placement.stretch_down --DOC_HEADER
|
2016-03-28 07:53:39 +02:00
|
|
|
|
|
|
|
screen[1]._resize {width = 128, height = 96} --DOC_HIDE
|
|
|
|
local placement = require("awful.placement") --DOC_HIDE
|
|
|
|
|
|
|
|
local c = client.gen_fake {x = 45, y = 35, width=40, height=30} --DOC_HIDE
|
|
|
|
placement.stretch_down(client.focus)
|
|
|
|
|
|
|
|
assert(c.x==45) --DOC_HIDE
|
|
|
|
assert(c.y==35) --DOC_HIDE
|
|
|
|
assert(c.width == 40) --DOC_HIDE
|
2016-04-19 05:56:23 +02:00
|
|
|
assert(c.y+c.height+2*c.border_width == --DOC_HIDE
|
2016-12-27 21:39:08 +01:00
|
|
|
screen[1].geometry.y + screen[1].geometry.height) --DOC_HIDE
|
2016-12-31 13:59:38 +01:00
|
|
|
|
|
|
|
--DOC_HIDE vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|