2008-09-29 16:49:18 +02:00
|
|
|
---------------------------------------------------------------------------
|
2014-05-20 13:02:39 +02:00
|
|
|
--- Screen module for awful
|
|
|
|
--
|
2008-09-29 16:49:18 +02:00
|
|
|
-- @author Julien Danjou <julien@danjou.info>
|
|
|
|
-- @copyright 2008 Julien Danjou
|
|
|
|
-- @release @AWESOME_VERSION@
|
2014-05-20 13:02:39 +02:00
|
|
|
-- @module awful.screen
|
2008-09-29 16:49:18 +02:00
|
|
|
---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
-- Grab environment we need
|
|
|
|
local capi =
|
|
|
|
{
|
|
|
|
mouse = mouse,
|
|
|
|
screen = screen,
|
|
|
|
client = client
|
|
|
|
}
|
|
|
|
local util = require("awful.util")
|
2016-03-13 08:44:27 +01:00
|
|
|
local object = require("gears.object")
|
2012-09-28 23:53:58 +02:00
|
|
|
|
2016-02-26 19:56:07 +01:00
|
|
|
local function get_screen(s)
|
2016-02-29 09:09:16 +01:00
|
|
|
return s and capi.screen[s]
|
2016-02-26 19:56:07 +01:00
|
|
|
end
|
|
|
|
|
2012-09-28 23:53:58 +02:00
|
|
|
-- we use require("awful.client") inside functions to prevent circular dependencies.
|
|
|
|
local client
|
2008-09-29 16:49:18 +02:00
|
|
|
|
2012-06-12 20:13:09 +02:00
|
|
|
local screen = {}
|
2008-09-29 16:49:18 +02:00
|
|
|
|
2009-05-04 11:09:19 +02:00
|
|
|
local data = {}
|
|
|
|
data.padding = {}
|
|
|
|
|
2015-10-09 20:54:17 +02:00
|
|
|
screen.mouse_per_screen = {}
|
2015-10-08 03:52:03 +02:00
|
|
|
|
2016-03-26 08:07:20 +01:00
|
|
|
--- Take an input geometry and substract/add a delta
|
|
|
|
-- @tparam table geo A geometry (width, height, x, y) table
|
|
|
|
-- @tparam table delta A delata table (top, bottom, x, y)
|
|
|
|
-- @treturn table A geometry (width, height, x, y) table
|
|
|
|
local function apply_geometry_ajustments(geo, delta)
|
|
|
|
return {
|
|
|
|
x = geo.x + (delta.left or 0),
|
|
|
|
y = geo.y + (delta.top or 0),
|
|
|
|
width = geo.width - (delta.left or 0) - (delta.right or 0),
|
|
|
|
height = geo.height - (delta.top or 0) - (delta.bottom or 0),
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2016-02-26 19:56:07 +01:00
|
|
|
-- @param s Screen
|
2015-10-10 20:16:49 +02:00
|
|
|
-- @param x X coordinate of point
|
|
|
|
-- @param y Y coordinate of point
|
|
|
|
-- @return The squared distance of the screen to the provided point
|
|
|
|
function screen.getdistance_sq(s, x, y)
|
2016-02-26 19:56:07 +01:00
|
|
|
s = get_screen(s)
|
|
|
|
local geom = s.geometry
|
2015-10-10 20:16:49 +02:00
|
|
|
local dist_x, dist_y = 0, 0
|
|
|
|
if x < geom.x then
|
|
|
|
dist_x = geom.x - x
|
|
|
|
elseif x >= geom.x + geom.width then
|
|
|
|
dist_x = x - geom.x - geom.width
|
|
|
|
end
|
|
|
|
if y < geom.y then
|
|
|
|
dist_y = geom.y - y
|
|
|
|
elseif y >= geom.y + geom.height then
|
|
|
|
dist_y = y - geom.y - geom.height
|
|
|
|
end
|
|
|
|
return dist_x * dist_x + dist_y * dist_y
|
|
|
|
end
|
|
|
|
|
2012-01-15 11:28:17 +01:00
|
|
|
---
|
2016-02-26 19:56:07 +01:00
|
|
|
-- Return screen number corresponding to the given (pixel) coordinates.
|
2012-01-15 11:28:17 +01:00
|
|
|
-- The number returned can be used as an index into the global
|
|
|
|
-- `screen` table/object.
|
|
|
|
-- @param x The x coordinate
|
|
|
|
-- @param y The y coordinate
|
2015-10-10 20:16:49 +02:00
|
|
|
function screen.getbycoord(x, y)
|
2016-02-29 09:09:16 +01:00
|
|
|
local s = capi.screen[1]
|
2015-10-10 20:16:49 +02:00
|
|
|
local dist = screen.getdistance_sq(s, x, y)
|
2016-03-06 13:31:30 +01:00
|
|
|
for i in capi.screen do
|
2015-10-10 20:16:49 +02:00
|
|
|
local d = screen.getdistance_sq(i, x, y)
|
|
|
|
if d < dist then
|
2016-02-29 09:09:16 +01:00
|
|
|
s, dist = capi.screen[i], d
|
2012-01-15 11:28:17 +01:00
|
|
|
end
|
|
|
|
end
|
2016-02-26 19:56:07 +01:00
|
|
|
return s.index
|
2012-01-15 11:28:17 +01:00
|
|
|
end
|
|
|
|
|
2015-10-08 03:52:03 +02:00
|
|
|
--- Give the focus to a screen, and move pointer to last known position on this
|
|
|
|
-- screen, or keep position relative to the current focused screen
|
2015-01-31 16:40:46 +01:00
|
|
|
-- @param _screen Screen number (defaults / falls back to mouse.screen).
|
2012-06-12 20:13:09 +02:00
|
|
|
function screen.focus(_screen)
|
2012-09-28 23:53:58 +02:00
|
|
|
client = client or require("awful.client")
|
2016-02-26 19:56:07 +01:00
|
|
|
if type(_screen) == "number" and _screen > capi.screen.count() then _screen = screen.focused() end
|
|
|
|
_screen = get_screen(_screen)
|
2012-09-14 20:14:22 +02:00
|
|
|
|
|
|
|
-- screen and pos for current screen
|
2016-02-26 19:56:07 +01:00
|
|
|
local s = get_screen(capi.mouse.screen)
|
2015-10-08 03:52:03 +02:00
|
|
|
local pos
|
|
|
|
|
2015-10-09 20:54:17 +02:00
|
|
|
if not screen.mouse_per_screen[_screen] then
|
2015-10-08 03:52:03 +02:00
|
|
|
-- This is the first time we enter this screen,
|
|
|
|
-- keep relative mouse position on the new screen
|
2015-10-11 12:44:28 +02:00
|
|
|
pos = capi.mouse.coords()
|
2016-02-26 19:56:07 +01:00
|
|
|
local relx = (pos.x - s.geometry.x) / s.geometry.width
|
|
|
|
local rely = (pos.y - s.geometry.y) / s.geometry.height
|
2012-09-14 20:14:22 +02:00
|
|
|
|
2016-02-26 19:56:07 +01:00
|
|
|
pos.x = _screen.geometry.x + relx * _screen.geometry.width
|
|
|
|
pos.y = _screen.geometry.y + rely * _screen.geometry.height
|
2015-10-08 03:52:03 +02:00
|
|
|
else
|
|
|
|
-- restore mouse position
|
2015-10-09 20:54:17 +02:00
|
|
|
pos = screen.mouse_per_screen[_screen]
|
2015-10-08 03:52:03 +02:00
|
|
|
end
|
2012-09-14 20:14:22 +02:00
|
|
|
|
2015-10-08 04:40:59 +02:00
|
|
|
-- save pointer position of current screen
|
2015-10-09 20:54:17 +02:00
|
|
|
screen.mouse_per_screen[s] = capi.mouse.coords()
|
2015-10-08 04:40:59 +02:00
|
|
|
|
2012-09-14 20:14:22 +02:00
|
|
|
-- move cursor without triggering signals mouse::enter and mouse::leave
|
|
|
|
capi.mouse.coords(pos, true)
|
|
|
|
|
2016-02-27 09:24:19 +01:00
|
|
|
local c = client.focus.history.get(_screen, 0)
|
2015-05-13 13:36:28 +02:00
|
|
|
if c then
|
2015-06-19 22:24:12 +02:00
|
|
|
c:emit_signal("request::activate", "screen.focus", {raise=false})
|
2015-05-13 13:36:28 +02:00
|
|
|
end
|
2009-08-21 16:05:02 +02:00
|
|
|
end
|
|
|
|
|
2015-10-08 03:52:03 +02:00
|
|
|
--- Give the focus to a screen, and move pointer to last known position on this
|
|
|
|
-- screen, or keep position relative to the current focused screen
|
2012-09-14 21:49:14 +02:00
|
|
|
-- @param dir The direction, can be either "up", "down", "left" or "right".
|
2016-02-26 19:56:07 +01:00
|
|
|
-- @param _screen Screen.
|
2012-09-14 21:49:14 +02:00
|
|
|
function screen.focus_bydirection(dir, _screen)
|
2016-02-26 19:56:07 +01:00
|
|
|
local sel = get_screen(_screen or screen.focused())
|
2012-09-14 21:49:14 +02:00
|
|
|
if sel then
|
|
|
|
local geomtbl = {}
|
2016-03-06 13:31:30 +01:00
|
|
|
for s in capi.screen do
|
2012-09-14 21:49:14 +02:00
|
|
|
geomtbl[s] = capi.screen[s].geometry
|
|
|
|
end
|
2016-02-26 19:56:07 +01:00
|
|
|
local target = util.get_rectangle_in_direction(dir, geomtbl, sel.geometry)
|
2012-09-14 21:49:14 +02:00
|
|
|
if target then
|
|
|
|
return screen.focus(target)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-10-08 03:52:03 +02:00
|
|
|
--- Give the focus to a screen, and move pointer to last known position on this
|
|
|
|
-- screen, or keep position relative to the current focused screen
|
2009-08-21 16:05:02 +02:00
|
|
|
-- @param i Value to add to the current focused screen index. 1 will focus next
|
|
|
|
-- screen, -1 would focus the previous one.
|
2012-06-12 20:13:09 +02:00
|
|
|
function screen.focus_relative(i)
|
2016-03-28 10:35:16 +02:00
|
|
|
return screen.focus(util.cycle(capi.screen.count(), screen.focused().index + i))
|
2008-09-29 16:49:18 +02:00
|
|
|
end
|
|
|
|
|
2009-05-04 11:09:19 +02:00
|
|
|
--- Get or set the screen padding.
|
2012-11-19 14:09:10 +01:00
|
|
|
-- @param _screen The screen object to change the padding on
|
2016-03-26 08:05:17 +01:00
|
|
|
-- @param[opt=nil] padding The padding, a table with 'top', 'left', 'right' and/or
|
|
|
|
-- 'bottom' or a number value to apply set the same padding on all sides. Can be
|
|
|
|
-- nil if you only want to retrieve padding
|
2016-03-26 08:05:45 +01:00
|
|
|
-- @treturn table A table with left, right, top and bottom number values.
|
2012-06-12 20:13:09 +02:00
|
|
|
function screen.padding(_screen, padding)
|
2016-03-26 08:05:17 +01:00
|
|
|
if type(padding) == "number" then
|
|
|
|
padding = {
|
|
|
|
left = padding,
|
|
|
|
right = padding,
|
|
|
|
top = padding,
|
|
|
|
bottom = padding,
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2016-02-26 19:56:07 +01:00
|
|
|
_screen = get_screen(_screen)
|
2009-05-04 11:09:19 +02:00
|
|
|
if padding then
|
2012-06-12 20:13:09 +02:00
|
|
|
data.padding[_screen] = padding
|
|
|
|
_screen:emit_signal("padding")
|
2009-05-04 11:09:19 +02:00
|
|
|
end
|
2016-03-26 08:05:17 +01:00
|
|
|
|
2016-03-26 08:05:45 +01:00
|
|
|
local p = data.padding[_screen] or {}
|
|
|
|
|
|
|
|
-- Create a copy to avoid accidental mutation and nil values
|
|
|
|
return {
|
|
|
|
left = p.left or 0,
|
|
|
|
right = p.right or 0,
|
|
|
|
top = p.top or 0,
|
|
|
|
bottom = p.bottom or 0,
|
|
|
|
}
|
2009-05-04 11:09:19 +02:00
|
|
|
end
|
|
|
|
|
2015-01-31 16:40:46 +01:00
|
|
|
--- Get the focused screen.
|
2016-03-26 08:12:07 +01:00
|
|
|
--
|
|
|
|
-- Valid arguments are:
|
|
|
|
--
|
|
|
|
-- * **client**: Use the client screen instead of the mouse screen.
|
|
|
|
-- * **mouse**: Use the mouse screen (default).
|
|
|
|
--
|
|
|
|
-- It is possible to set `awful.screen.default_focused_args` to override the
|
|
|
|
-- default settings.
|
|
|
|
--
|
|
|
|
-- @tparam[opt={}] table args Some arguments.
|
|
|
|
-- @treturn screen The focused screen object
|
|
|
|
function screen.focused(args)
|
|
|
|
args = args or screen.default_focused_args or {}
|
|
|
|
return get_screen(args.client and capi.client.screen or capi.mouse.screen)
|
2015-01-31 16:40:46 +01:00
|
|
|
end
|
|
|
|
|
2016-03-26 08:07:20 +01:00
|
|
|
--- Get a placement bounding geometry.
|
|
|
|
-- This method compute different variants of the "usable" screen geometry.
|
|
|
|
--
|
|
|
|
-- Valid arguments are:
|
|
|
|
--
|
|
|
|
-- * **honor_padding**: Honor the screen padding.
|
|
|
|
-- * **honor_workarea**: Honor the screen workarea
|
|
|
|
-- * **margins**: Apply some margins on the output. This can wither be a number
|
|
|
|
-- or a table with *left*, *right*, *top* and *bottom* keys.
|
|
|
|
-- * **tag**: Use the tag screen instead of `s`
|
|
|
|
-- * **parent**: A parent drawable to use a base geometry
|
|
|
|
-- * **bounding_rect**: A bounding rectangle. This parameter is incompatible with
|
|
|
|
-- `honor_workarea`.
|
|
|
|
--
|
|
|
|
-- @tparam[opt=mouse.screen] screen s A screen
|
|
|
|
-- @tparam[opt={}] table args The arguments
|
|
|
|
-- @treturn table A table with *x*, *y*, *width* and *height*.
|
|
|
|
function screen.get_bounding_geometry(s, args)
|
|
|
|
args = args or {}
|
|
|
|
|
|
|
|
-- If the tag has a geometry, assume it is right
|
|
|
|
if args.tag then
|
|
|
|
s = args.tag.screen
|
|
|
|
end
|
|
|
|
|
|
|
|
s = get_screen(s or capi.mouse.screen)
|
|
|
|
|
|
|
|
local geo = args.bounding_rect or (args.parent and args.parent:geometry()) or
|
|
|
|
s[args.honor_workarea and "workarea" or "geometry"]
|
|
|
|
|
|
|
|
if (not args.parent) and (not args.bounding_rect) and args.honor_padding then
|
|
|
|
local padding = screen.padding(s)
|
|
|
|
geo = apply_geometry_ajustments(geo, padding)
|
|
|
|
end
|
|
|
|
|
|
|
|
if args.margins then
|
|
|
|
geo = apply_geometry_ajustments(geo,
|
|
|
|
type(args.margins) == "table" and args.margins or {
|
|
|
|
left = args.margins, right = args.margins,
|
|
|
|
top = args.margins, bottom = args.margins,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
return geo
|
|
|
|
end
|
|
|
|
|
2014-03-30 16:37:19 +02:00
|
|
|
capi.screen.add_signal("padding")
|
2010-08-25 23:00:36 +02:00
|
|
|
|
2016-03-13 08:44:27 +01:00
|
|
|
-- Extend the luaobject
|
|
|
|
object.properties(capi.screen, {auto_emit=true})
|
|
|
|
|
2012-06-12 20:13:09 +02:00
|
|
|
return screen
|
|
|
|
|
2011-09-11 16:50:01 +02:00
|
|
|
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|