2016-12-09 07:11:23 +01:00
|
|
|
# pylint: disable=C0111,R0903
|
|
|
|
|
2016-12-10 19:30:25 +01:00
|
|
|
"""Displays the current date and time.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
* datetime.format: strftime()-compatible formatting string
|
|
|
|
* date.format : alias for datetime.format
|
|
|
|
* time.format : alias for datetime.format
|
|
|
|
"""
|
2016-12-09 07:11:23 +01:00
|
|
|
|
|
|
|
from __future__ import absolute_import
|
|
|
|
import datetime
|
|
|
|
import bumblebee.engine
|
|
|
|
|
2016-12-11 07:18:06 +01:00
|
|
|
ALIASES = [ "date", "time" ]
|
|
|
|
|
2016-12-09 07:11:23 +01:00
|
|
|
def default_format(module):
|
|
|
|
default = "%x %X"
|
|
|
|
if module == "date":
|
|
|
|
default = "%x"
|
|
|
|
if module == "time":
|
|
|
|
default = "%X"
|
|
|
|
return default
|
|
|
|
|
|
|
|
class Module(bumblebee.engine.Module):
|
2016-12-09 08:23:53 +01:00
|
|
|
def __init__(self, engine, config):
|
|
|
|
super(Module, self).__init__(engine, config,
|
2016-12-09 07:11:23 +01:00
|
|
|
bumblebee.output.Widget(full_text=self.get_time)
|
|
|
|
)
|
2016-12-11 07:18:06 +01:00
|
|
|
self._fmt = self.parameter("format", default_format(self.name))
|
2016-12-09 07:11:23 +01:00
|
|
|
|
2016-12-11 11:37:24 +01:00
|
|
|
def get_time(self, widget):
|
2016-12-09 07:11:23 +01:00
|
|
|
return datetime.datetime.now().strftime(self._fmt)
|
|
|
|
|
|
|
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|