2008-09-29 16:49:18 +02:00
|
|
|
---------------------------------------------------------------------------
|
|
|
|
-- @author Julien Danjou <julien@danjou.info>
|
|
|
|
-- @copyright 2008 Julien Danjou
|
|
|
|
-- @release @AWESOME_VERSION@
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
-- Grab environment we need
|
|
|
|
local util = require("awful.util")
|
|
|
|
local pairs = pairs
|
|
|
|
local ipairs = ipairs
|
2009-05-30 18:11:07 +02:00
|
|
|
local table = table
|
2009-04-11 14:04:51 +02:00
|
|
|
local setmetatable = setmetatable
|
2008-09-29 16:49:18 +02:00
|
|
|
local capi =
|
|
|
|
{
|
2009-08-21 15:50:01 +02:00
|
|
|
tag = tag,
|
2008-09-29 16:49:18 +02:00
|
|
|
screen = screen,
|
2009-07-10 14:36:04 +02:00
|
|
|
mouse = mouse,
|
|
|
|
client = client
|
2008-09-29 16:49:18 +02:00
|
|
|
}
|
|
|
|
|
2009-08-28 15:40:01 +02:00
|
|
|
--- Useful functions for tag manipulation.
|
2008-09-29 16:49:18 +02:00
|
|
|
module("awful.tag")
|
|
|
|
|
|
|
|
-- Private data
|
|
|
|
local data = {}
|
|
|
|
data.history = {}
|
2009-04-11 14:04:51 +02:00
|
|
|
data.tags = setmetatable({}, { __mode = 'k' })
|
2008-09-29 16:49:18 +02:00
|
|
|
|
|
|
|
-- History functions
|
|
|
|
history = {}
|
2009-08-27 16:03:45 +02:00
|
|
|
history.limit = 20
|
2008-09-29 16:49:18 +02:00
|
|
|
|
2009-08-21 15:50:01 +02:00
|
|
|
--- Create a set of tags and attach it to a screen.
|
|
|
|
-- @param names The tag name, in a table
|
|
|
|
-- @param screen The tag screen, or 1 if not set.
|
|
|
|
-- @param layout The layout to set for this tags by default.
|
|
|
|
-- @return A table with all created tags.
|
|
|
|
function new(names, screen, layout)
|
|
|
|
local screen = screen or 1
|
|
|
|
local tags = {}
|
|
|
|
for id, name in ipairs(names) do
|
|
|
|
tags[#tags + 1] = capi.tag { name = name }
|
|
|
|
tags[#tags].screen = screen
|
|
|
|
-- Select the first tag.
|
|
|
|
if id == 1 then
|
|
|
|
tags[#tags].selected = true
|
|
|
|
end
|
|
|
|
setproperty(tags[#tags], "layout", layout)
|
|
|
|
end
|
|
|
|
return tags
|
|
|
|
end
|
|
|
|
|
2008-09-29 16:49:18 +02:00
|
|
|
--- Update the tag history.
|
2009-08-27 16:03:45 +02:00
|
|
|
-- @param obj Screen object.
|
|
|
|
function history.update(obj)
|
|
|
|
local s = obj.index
|
|
|
|
local curtags = capi.screen[s]:tags()
|
|
|
|
-- create history table
|
|
|
|
if not data.history[s] then
|
|
|
|
data.history[s] = {}
|
|
|
|
-- limit history
|
|
|
|
elseif #data.history[s] >= history.limit then
|
|
|
|
for i = history.limit, #data.history[s] do
|
|
|
|
data.history[s][i] = nil
|
2008-09-29 16:49:18 +02:00
|
|
|
end
|
|
|
|
end
|
2009-08-27 16:03:45 +02:00
|
|
|
-- store previously selected tags in the history table
|
|
|
|
table.insert(data.history[s], 1, data.history[s].current)
|
|
|
|
data.history[s].previous = data.history[s][1]
|
|
|
|
-- store currently selected tags
|
|
|
|
data.history[s].current = setmetatable(selectedlist(s), { __mode = 'v' })
|
2008-09-29 16:49:18 +02:00
|
|
|
end
|
|
|
|
|
2009-04-29 14:58:41 +02:00
|
|
|
--- Revert tag history.
|
2008-09-29 16:49:18 +02:00
|
|
|
-- @param screen The screen number.
|
2009-08-27 16:03:45 +02:00
|
|
|
-- @param idx Index in history. Defaults to "previous" which is a special index
|
|
|
|
-- toggling between last two selected sets of tags. Number (eg 1) will go back
|
|
|
|
-- to the given index in history.
|
|
|
|
function history.restore(screen, idx)
|
2008-09-29 16:49:18 +02:00
|
|
|
local s = screen or capi.mouse.screen
|
2009-08-27 16:03:45 +02:00
|
|
|
local i = idx or "previous"
|
|
|
|
local sel = selectedlist(s)
|
|
|
|
-- do nothing if history empty
|
|
|
|
if not data.history[s] or not data.history[s][i] then return end
|
|
|
|
-- if all tags been deleted, try next entry
|
|
|
|
if #data.history[s][i] == 0 then
|
|
|
|
if i == "previous" then i = 0 end
|
|
|
|
history.restore(s, i + 1)
|
|
|
|
return
|
|
|
|
end
|
|
|
|
-- deselect all tags
|
|
|
|
viewnone(s)
|
|
|
|
-- select tags from the history entry
|
|
|
|
for _, t in ipairs(data.history[s][i]) do
|
|
|
|
t.selected = true
|
2008-09-29 16:49:18 +02:00
|
|
|
end
|
2009-08-27 16:03:45 +02:00
|
|
|
-- update currently selected tags table
|
|
|
|
data.history[s].current = data.history[s][i]
|
|
|
|
-- store previously selected tags
|
|
|
|
data.history[s].previous = setmetatable(sel, { __mode = 'v' })
|
|
|
|
-- remove the reverted history entry
|
|
|
|
if i ~= "previous" then table.remove(data.history[s], i) end
|
2008-09-29 16:49:18 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
--- Return a table with all visible tags
|
|
|
|
-- @param s Screen number.
|
|
|
|
-- @return A table with all selected tags.
|
|
|
|
function selectedlist(s)
|
|
|
|
local screen = s or capi.mouse.screen
|
|
|
|
local tags = capi.screen[screen]:tags()
|
|
|
|
local vtags = {}
|
|
|
|
for i, t in pairs(tags) do
|
|
|
|
if t.selected then
|
|
|
|
vtags[#vtags + 1] = t
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return vtags
|
|
|
|
end
|
|
|
|
|
|
|
|
--- Return only the first visible tag.
|
|
|
|
-- @param s Screen number.
|
|
|
|
function selected(s)
|
|
|
|
return selectedlist(s)[1]
|
|
|
|
end
|
|
|
|
|
|
|
|
--- Set master width factor.
|
|
|
|
-- @param mwfact Master width factor.
|
2008-11-25 17:01:06 +01:00
|
|
|
function setmwfact(mwfact, t)
|
|
|
|
local t = t or selected()
|
2009-01-26 10:37:52 +01:00
|
|
|
if mwfact >= 0 and mwfact <= 1 then
|
|
|
|
setproperty(t, "mwfact", mwfact)
|
|
|
|
end
|
2008-09-29 16:49:18 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
--- Increase master width factor.
|
|
|
|
-- @param add Value to add to master width factor.
|
2008-11-25 17:01:06 +01:00
|
|
|
function incmwfact(add, t)
|
|
|
|
setmwfact(getmwfact(t) + add)
|
|
|
|
end
|
|
|
|
|
|
|
|
--- Get master width factor.
|
|
|
|
-- @param t Optional tag.
|
|
|
|
function getmwfact(t)
|
|
|
|
local t = t or selected()
|
|
|
|
return getproperty(t, "mwfact") or 0.5
|
2008-09-29 16:49:18 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
--- Set the number of master windows.
|
|
|
|
-- @param nmaster The number of master windows.
|
2008-11-25 17:01:06 +01:00
|
|
|
-- @param t Optional tag.
|
|
|
|
function setnmaster(nmaster, t)
|
|
|
|
local t = t or selected()
|
2009-01-26 10:37:52 +01:00
|
|
|
if nmaster >= 0 then
|
|
|
|
setproperty(t, "nmaster", nmaster)
|
|
|
|
end
|
2008-11-25 17:01:06 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
--- Get the number of master windows.
|
|
|
|
-- @param t Optional tag.
|
|
|
|
function getnmaster(t)
|
|
|
|
local t = t or selected()
|
|
|
|
return getproperty(t, "nmaster") or 1
|
2008-09-29 16:49:18 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
--- Increase the number of master windows.
|
|
|
|
-- @param add Value to add to number of master windows.
|
2008-11-25 17:01:06 +01:00
|
|
|
function incnmaster(add, t)
|
|
|
|
setnmaster(getnmaster(t) + add)
|
2008-09-29 16:49:18 +02:00
|
|
|
end
|
|
|
|
|
2009-01-13 16:04:11 +01:00
|
|
|
|
|
|
|
--- Set the tag icon
|
|
|
|
-- @param icon the icon to set, either path or image object
|
|
|
|
-- @param tag the tag
|
|
|
|
function seticon(icon, tag)
|
|
|
|
local tag = tag or selected()
|
|
|
|
setproperty(tag, "icon", icon)
|
|
|
|
end
|
|
|
|
|
|
|
|
--- Get the tag icon
|
|
|
|
-- @param t the tag
|
|
|
|
function geticon(tag)
|
|
|
|
local tag = tag or selected()
|
|
|
|
return getproperty(tag, "icon")
|
|
|
|
end
|
|
|
|
|
2008-09-29 16:49:18 +02:00
|
|
|
--- Set number of column windows.
|
|
|
|
-- @param ncol The number of column.
|
2008-11-25 17:01:06 +01:00
|
|
|
function setncol(ncol, t)
|
|
|
|
local t = t or selected()
|
2009-01-26 10:37:52 +01:00
|
|
|
if ncol >= 1 then
|
|
|
|
setproperty(t, "ncol", ncol)
|
|
|
|
end
|
2008-11-25 17:01:06 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
--- Get number of column windows.
|
|
|
|
-- @param t Optional tag.
|
|
|
|
function getncol(t)
|
|
|
|
local t = t or selected()
|
|
|
|
return getproperty(t, "ncol") or 1
|
2008-09-29 16:49:18 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
--- Increase number of column windows.
|
|
|
|
-- @param add Value to add to number of column windows.
|
2008-11-25 17:01:06 +01:00
|
|
|
function incncol(add, t)
|
|
|
|
setncol(getncol(t) + add)
|
2008-09-29 16:49:18 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
--- View no tag.
|
|
|
|
-- @param Optional screen number.
|
|
|
|
function viewnone(screen)
|
|
|
|
local tags = capi.screen[screen or capi.mouse.screen]:tags()
|
|
|
|
for i, t in pairs(tags) do
|
|
|
|
t.selected = false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-05-30 18:11:07 +02:00
|
|
|
--- View a tag by its taglist index.
|
2008-09-29 16:49:18 +02:00
|
|
|
-- @param i The relative index to see.
|
|
|
|
-- @param screen Optional screen number.
|
|
|
|
function viewidx(i, screen)
|
2009-08-25 13:59:34 +02:00
|
|
|
local screen = screen and screen.index or capi.mouse.screen
|
2009-08-24 08:31:44 +02:00
|
|
|
local tags = capi.screen[screen]:tags()
|
2009-05-30 18:11:07 +02:00
|
|
|
local showntags = {}
|
|
|
|
for k, t in ipairs(tags) do
|
|
|
|
if not getproperty(t, "hide") then
|
|
|
|
table.insert(showntags, t)
|
|
|
|
end
|
|
|
|
end
|
2009-01-17 18:55:03 +01:00
|
|
|
local sel = selected(screen)
|
|
|
|
viewnone(screen)
|
2009-05-30 18:11:07 +02:00
|
|
|
for k, t in ipairs(showntags) do
|
2008-09-29 16:49:18 +02:00
|
|
|
if t == sel then
|
2009-05-30 18:11:07 +02:00
|
|
|
showntags[util.cycle(#showntags, k + i)].selected = true
|
2008-09-29 16:49:18 +02:00
|
|
|
end
|
|
|
|
end
|
2009-08-27 16:03:45 +02:00
|
|
|
capi.screen[screen]:emit_signal("tag::history::update")
|
2008-09-29 16:49:18 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
--- View next tag. This is the same as tag.viewidx(1).
|
2009-08-24 08:31:44 +02:00
|
|
|
-- @param screen The screen number.
|
|
|
|
function viewnext(screen)
|
|
|
|
return viewidx(1, screen)
|
2008-09-29 16:49:18 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
--- View previous tag. This is the same a tag.viewidx(-1).
|
2009-08-24 08:31:44 +02:00
|
|
|
-- @param screen The screen number.
|
|
|
|
function viewprev(screen)
|
|
|
|
return viewidx(-1, screen)
|
2008-09-29 16:49:18 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
--- View only a tag.
|
|
|
|
-- @param t The tag object.
|
|
|
|
function viewonly(t)
|
2009-09-22 16:23:00 +02:00
|
|
|
local tags = capi.screen[t.screen or capi.mouse.screen]:tags()
|
2009-09-22 14:09:56 +02:00
|
|
|
for _, tag in pairs(tags) do
|
|
|
|
tag.selected = (t == tag)
|
|
|
|
end
|
2009-08-27 16:03:45 +02:00
|
|
|
capi.screen[t.screen]:emit_signal("tag::history::update")
|
2008-09-29 16:49:18 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
--- View only a set of tags.
|
|
|
|
-- @param tags A table with tags to view only.
|
|
|
|
-- @param screen Optional screen number of the tags.
|
|
|
|
function viewmore(tags, screen)
|
2009-09-22 15:11:40 +02:00
|
|
|
local screen_tags = capi.screen[screen or capi.mouse.screen]:tags()
|
|
|
|
for _, tag in pairs(screen_tags) do
|
2009-09-28 04:18:57 +02:00
|
|
|
tag.selected = (util.table.hasitem(tags, tag) ~= nil)
|
2008-09-29 16:49:18 +02:00
|
|
|
end
|
2009-08-27 16:03:45 +02:00
|
|
|
capi.screen[screen]:emit_signal("tag::history::update")
|
2008-09-29 16:49:18 +02:00
|
|
|
end
|
|
|
|
|
2009-08-27 17:16:56 +02:00
|
|
|
--- Toggle selection of a tag
|
|
|
|
-- @param tag Tag to be toggled
|
|
|
|
function viewtoggle(t)
|
|
|
|
t.selected = not t.selected
|
|
|
|
capi.screen[t.screen]:emit_signal("tag::history::update")
|
|
|
|
end
|
|
|
|
|
2009-02-24 21:50:46 +01:00
|
|
|
--- Get tag data table.
|
|
|
|
-- @param tag The Tag.
|
|
|
|
-- @return The data table.
|
|
|
|
function getdata(tag)
|
|
|
|
return data.tags[tag]
|
|
|
|
end
|
|
|
|
|
2008-11-25 17:01:06 +01:00
|
|
|
--- Get a tag property.
|
|
|
|
-- @param tag The tag.
|
|
|
|
-- @param prop The property name.
|
|
|
|
-- @return The property.
|
|
|
|
function getproperty(tag, prop)
|
|
|
|
if data.tags[tag] then
|
|
|
|
return data.tags[tag][prop]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
--- Set a tag property.
|
|
|
|
-- This properties are internal to awful. Some are used to draw taglist, or to
|
|
|
|
-- handle layout, etc.
|
|
|
|
-- @param tag The tag.
|
|
|
|
-- @param prop The property name.
|
|
|
|
-- @param value The value.
|
|
|
|
function setproperty(tag, prop, value)
|
2009-04-11 14:04:51 +02:00
|
|
|
if not data.tags[tag] then
|
|
|
|
data.tags[tag] = {}
|
2008-11-25 17:01:06 +01:00
|
|
|
end
|
2009-04-11 14:04:51 +02:00
|
|
|
data.tags[tag][prop] = value
|
2009-08-11 15:27:31 +02:00
|
|
|
tag:emit_signal("property::" .. prop)
|
2008-11-25 17:01:06 +01:00
|
|
|
end
|
|
|
|
|
2009-02-03 12:20:17 +01:00
|
|
|
--- Tag a client with the set of current tags.
|
|
|
|
-- @param c The client to tag.
|
|
|
|
-- @param startup Optional: don't do anything if true.
|
|
|
|
function withcurrent(c, startup)
|
|
|
|
if startup ~= true and c.sticky == false then
|
|
|
|
if #c:tags() == 0 then
|
2009-09-08 16:41:23 +02:00
|
|
|
c:tags(selectedlist(c.screen))
|
2009-02-03 12:20:17 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-08-18 16:44:03 +02:00
|
|
|
local function attached_add_signal_screen(screen, sig, func)
|
|
|
|
capi.screen[screen]:add_signal("tag::attach", function (s, tag)
|
|
|
|
tag:add_signal(sig, func)
|
|
|
|
end)
|
|
|
|
capi.screen[screen]:add_signal("tag::detach", function (s, tag)
|
|
|
|
tag:remove_signal(sig, func)
|
|
|
|
end)
|
|
|
|
for _, tag in ipairs(capi.screen[screen]:tags()) do
|
|
|
|
tag:add_signal(sig, func)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
--- Add a signal to all attached tag and all tag that will be attached in the
|
|
|
|
-- future. When a tag is detach from the screen, its signal is removed.
|
|
|
|
-- @param screen The screen concerned, or all if nil.
|
|
|
|
function attached_add_signal(screen, ...)
|
|
|
|
if screen then
|
|
|
|
attached_add_signal_screen(screen, ...)
|
|
|
|
else
|
|
|
|
for screen = 1, capi.screen.count() do
|
|
|
|
attached_add_signal_screen(screen, ...)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-08-11 15:27:31 +02:00
|
|
|
-- Register standards signals
|
2009-09-08 16:41:23 +02:00
|
|
|
capi.client.add_signal("manage", function(c, startup)
|
2009-09-22 16:09:44 +02:00
|
|
|
-- If we are not managing this application at startup,
|
|
|
|
-- move it to the screen where the mouse is.
|
|
|
|
-- We only do it for "normal" windows (i.e. no dock, etc).
|
|
|
|
if not startup
|
|
|
|
and c.type ~= "desktop"
|
|
|
|
and c.type ~= "dock"
|
|
|
|
and c.type ~= "splash" then
|
2009-09-22 11:57:40 +02:00
|
|
|
if c.transient_for then
|
|
|
|
c.screen = c.transient_for.screen
|
|
|
|
if not c.sticky then
|
|
|
|
c:tags(c.transient_for:tags())
|
|
|
|
end
|
|
|
|
else
|
|
|
|
c.screen = capi.mouse.screen
|
|
|
|
end
|
|
|
|
end
|
2009-09-08 16:41:23 +02:00
|
|
|
withcurrent(c, startup)
|
2009-08-24 16:32:19 +02:00
|
|
|
c:add_signal("property::screen", withcurrent)
|
|
|
|
end)
|
2008-09-29 16:49:18 +02:00
|
|
|
|
2009-08-27 16:03:45 +02:00
|
|
|
for s = 1, capi.screen.count() do
|
|
|
|
capi.screen[s]:add_signal("tag::history::update", history.update)
|
|
|
|
end
|
|
|
|
|
2009-08-21 15:50:01 +02:00
|
|
|
setmetatable(_M, { __call = function (_, ...) return new(...) end })
|
|
|
|
|
2008-09-29 16:49:18 +02:00
|
|
|
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|