All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
4 Licensed under GNU General Public License v2
5 * (c) 2013, Luke Bonham
9 local helpers = require("lain.helpers")
10 local markup = require("lain.util.markup")
11 local awful = require("awful")
12 local naughty = require("naughty")
14 local os = { date = os.date }
15 local string = { format = string.format,
18 local tonumber = tonumber
19 local setmetatable = setmetatable
21 -- Calendar notification
22 -- lain.widget.calendar
23 local calendar = { offset = 0 }
25 function calendar.hide()
26 if not calendar.notification then return end
27 naughty.destroy(calendar.notification)
28 calendar.notification = nil
31 function calendar.show(t_out, inc_offset, scr)
32 local f, offs = nil, inc_offset or 0
34 calendar.notification_preset.screen = scr or (calendar.followtag and awful.screen.focused()) or 1
35 calendar.offset = calendar.offset + offs
37 local current_month = (offs == 0 or calendar.offset == 0)
39 if current_month then -- today highlighted
41 calendar.icon = string.format("%s%s.png", calendar.icons, tonumber(os.date("%d")))
43 else -- no current month showing, no day to highlight
44 local month = tonumber(os.date("%m"))
45 local year = tonumber(os.date("%Y"))
47 month = month + calendar.offset
60 f = string.format("%s %s %s", calendar.cal, month, year)
63 helpers.async(f, function(ws)
64 local fg, bg = calendar.notification_preset.fg, calendar.notification_preset.bg
65 calendar.notification_preset.text = ws:gsub("%c%[%d+[m]?%s?%d+%c%[%d+[m]?",
66 markup.bold(markup.color(bg, fg, os.date("%e")))):gsub("\n*$", "")
68 local widget_focused = true
70 if t_out == 0 and mouse.current_widgets then
71 widget_focused = false
72 for i, widget in ipairs(calendar.attach_to) do
73 for _,v in ipairs(mouse.current_widgets) do
82 if widget_focused then
84 calendar.notification = naughty.notify({
85 preset = calendar.notification_preset,
87 timeout = t_out or calendar.notification_preset.timeout or 5
93 function calendar.hover_on() calendar.show(0) end
94 function calendar.hover_off() calendar.hide() end
95 function calendar.prev() calendar.show(0, -1) end
96 function calendar.next() calendar.show(0, 1) end
98 function calendar.attach(widget)
99 widget:connect_signal("mouse::enter", calendar.hover_on)
100 widget:connect_signal("mouse::leave", calendar.hover_off)
101 widget:buttons(awful.util.table.join(
102 awful.button({}, 1, calendar.prev),
103 awful.button({}, 3, calendar.next),
104 awful.button({}, 2, calendar.hover_on),
105 awful.button({}, 4, calendar.prev),
106 awful.button({}, 5, calendar.next)))
109 local function factory(args)
110 local args = args or {}
111 calendar.cal = args.cal or "/usr/bin/cal"
112 calendar.attach_to = args.attach_to or {}
113 calendar.followtag = args.followtag or false
114 calendar.icons = args.icons or helpers.icons_dir .. "cal/white/"
115 calendar.notification_preset = args.notification_preset
117 if not calendar.notification_preset then
118 calendar.notification_preset = {
119 font = "Monospace 10",
125 for i, widget in ipairs(calendar.attach_to) do calendar.attach(widget) end
128 return setmetatable(calendar, { __call = function(_, ...) return factory(...) end })