awesome/lib/wibox/widget/textclock.lua

68 lines
2.2 KiB
Lua
Raw Normal View History

---------------------------------------------------------------------------
--- Text clock widget.
--
-- @author Julien Danjou <julien@danjou.info>
-- @copyright 2009 Julien Danjou
-- @classmod wibox.widget.textclock
---------------------------------------------------------------------------
local setmetatable = setmetatable
local os = os
local textbox = require("wibox.widget.textbox")
local timer = require("gears.timer")
local glib = require("lgi").GLib
local DateTime = glib.DateTime
local TimeZone = glib.TimeZone
local textclock = { mt = {} }
--- Force a textclock to update now.
function textclock:force_update()
self._timer:emit_signal("timeout")
end
--- This lowers the timeout so that it occurs "correctly". For example, a timeout
-- of 60 is rounded so that it occurs the next time the clock reads ":00 seconds".
local function calc_timeout(real_timeout)
return real_timeout - os.time() % real_timeout
end
--- Create a textclock widget. It draws the time it is in a textbox.
--
-- @tparam[opt=" %a %b %d, %H:%M "] string format The time format.
-- @tparam[opt=60] number timeout How often update the time (in seconds).
-- @tparam[opt=local timezone] string timezone The timezone to use,
-- e.g. "Z" for UTC, "±hh:mm" or "Europe/Amsterdam". See
-- https://developer.gnome.org/glib/stable/glib-GTimeZone.html#g-time-zone-new.
-- @treturn table A textbox widget.
-- @function wibox.widget.textclock
function textclock.new(format, timeout, timezone)
format = format or " %a %b %d, %H:%M "
timeout = timeout or 60
timezone = timezone and TimeZone.new(timezone) or TimeZone.new_local()
local w = textbox()
w.force_update = textclock.force_update
2016-05-26 23:41:23 +02:00
function w._private.textclock_update_cb()
w:set_markup(DateTime.new_now(timezone):format(format))
w._timer.timeout = calc_timeout(timeout)
w._timer:again()
return true -- Continue the timer
end
w._timer = timer.weak_start_new(timeout, w._private.textclock_update_cb)
w:force_update()
return w
end
function textclock.mt:__call(...)
return textclock.new(...)
end
2016-05-26 23:41:23 +02:00
--@DOC_widget_COMMON@
--@DOC_object_COMMON@
return setmetatable(textclock, textclock.mt)
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80