2a35905b89
It is now possible to add a list of theme configurations in the "default" section called "cycle". These configuration items will be cycled through module by module. to create "alternate style" effects. This is *only* possible in the "default" configuration part, but any module-specific configurations still take precedence. Also, removed the capability of per-widget themes. That simply complicates things and probably doesn't really bring any benefits.
21 lines
326 B
Python
21 lines
326 B
Python
|
|
class Output(object):
|
|
def __init__(self, theme):
|
|
self._theme = theme
|
|
|
|
def theme(self):
|
|
return self._theme
|
|
|
|
def start(self):
|
|
pass
|
|
|
|
def add(self, obj):
|
|
pass
|
|
|
|
def get(self):
|
|
pass
|
|
|
|
def stop(self):
|
|
pass
|
|
|
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|