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")
|
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
|
|
|
|
2012-01-15 11:28:17 +01:00
|
|
|
---
|
|
|
|
-- Return Xinerama screen number corresponding to the given (pixel) coordinates.
|
|
|
|
-- 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-02-26 22:06:34 +01:00
|
|
|
-- @param[opt] default The default return value. If unspecified, 1 is returned.
|
2013-01-05 20:56:20 +01:00
|
|
|
function screen.getbycoord(x, y, default)
|
2012-01-15 11:28:17 +01:00
|
|
|
for i = 1, capi.screen:count() do
|
|
|
|
local geometry = capi.screen[i].geometry
|
|
|
|
if((x < 0 or (x >= geometry.x and x < geometry.x + geometry.width))
|
|
|
|
and (y < 0 or (y >= geometry.y and y < geometry.y + geometry.height))) then
|
2013-01-05 20:56:20 +01:00
|
|
|
return i
|
2012-01-15 11:28:17 +01:00
|
|
|
end
|
|
|
|
end
|
2013-01-05 20:56:20 +01:00
|
|
|
-- No caller expects a nil result here, so just make something up
|
|
|
|
if default == nil then return 1 end
|
|
|
|
return default
|
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")
|
2015-01-31 16:40:46 +01:00
|
|
|
if _screen > capi.screen.count() then _screen = screen.focused() end
|
2012-09-14 20:14:22 +02:00
|
|
|
|
|
|
|
-- screen and pos for current screen
|
|
|
|
local s = 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
|
|
|
|
local relx = (pos.x - capi.screen[s].geometry.x) / capi.screen[s].geometry.width
|
|
|
|
local rely = (pos.y - capi.screen[s].geometry.y) / capi.screen[s].geometry.height
|
2012-09-14 20:14:22 +02:00
|
|
|
|
2015-10-08 03:52:03 +02:00
|
|
|
pos.x = capi.screen[_screen].geometry.x + relx * capi.screen[_screen].geometry.width
|
|
|
|
pos.y = capi.screen[_screen].geometry.y + rely * capi.screen[_screen].geometry.height
|
|
|
|
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)
|
|
|
|
|
2012-06-12 20:13:09 +02: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".
|
2012-11-19 14:09:10 +01:00
|
|
|
-- @param _screen Screen number.
|
2012-09-14 21:49:14 +02:00
|
|
|
function screen.focus_bydirection(dir, _screen)
|
2015-01-31 16:40:46 +01:00
|
|
|
local sel = _screen or screen.focused()
|
2012-09-14 21:49:14 +02:00
|
|
|
if sel then
|
|
|
|
local geomtbl = {}
|
|
|
|
for s = 1, capi.screen.count() do
|
|
|
|
geomtbl[s] = capi.screen[s].geometry
|
|
|
|
end
|
|
|
|
local target = util.get_rectangle_in_direction(dir, geomtbl, capi.screen[sel].geometry)
|
|
|
|
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)
|
2015-01-31 16:40:46 +01:00
|
|
|
return screen.focus(util.cycle(capi.screen.count(), screen.focused() + 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
|
2009-05-04 11:09:19 +02:00
|
|
|
-- @param padding The padding, an table with 'top', 'left', 'right' and/or
|
|
|
|
-- 'bottom'. Can be nil if you only want to retrieve padding
|
2012-06-12 20:13:09 +02:00
|
|
|
function screen.padding(_screen, padding)
|
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
|
2012-06-12 20:13:09 +02:00
|
|
|
return data.padding[_screen]
|
2009-05-04 11:09:19 +02:00
|
|
|
end
|
|
|
|
|
2015-01-31 16:40:46 +01:00
|
|
|
--- Get the focused screen.
|
|
|
|
-- This can be replaced in a user's config.
|
|
|
|
-- @treturn integer
|
|
|
|
function screen.focused()
|
|
|
|
return capi.mouse.screen
|
|
|
|
end
|
|
|
|
|
2014-03-30 16:37:19 +02:00
|
|
|
capi.screen.add_signal("padding")
|
2010-08-25 23:00:36 +02:00
|
|
|
|
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
|