Source code for libqtile.widget.widgetbox

# Copyright (c) 2020 elParaguayo
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
from libqtile import bar
from libqtile.log_utils import logger
from libqtile.widget import Systray, base


[docs]class WidgetBox(base._Widget): """A widget to declutter your bar. WidgetBox is a widget that hides widgets by default but shows them when the box is opened. Widgets that are hidden will still update etc. as if they were on the main bar. Button clicks are passed to widgets when they are visible so callbacks will work. Widgets in the box also remain accessible via command interfaces. Widgets can only be added to the box via the configuration file. The widget is configured by adding widgets to the "widgets" parameter as follows:: widget.WidgetBox(widgets=[ widget.TextBox(text="This widget is in the box"), widget.Memory() ] ), """ orientations = base.ORIENTATION_HORIZONTAL defaults = [ ( "font", "sans", "Text font" ), ( "fontsize", None, "Font pixel size. Calculated if None." ), ( "fontshadow", None, "font shadow color, default is None(no shadow)" ), ( "foreground", "#ffffff", "Foreground colour." ), ( "close_button_location", "left", "Location of close button when box open ('left' or 'right')" ), ( "text_closed", "[<]", "Text when box is closed" ), ( "text_open", "[>]", "Text when box is open" ), ] def __init__(self, widgets: list = None, **config): base._Widget.__init__(self, bar.CALCULATED, **config) self.add_defaults(WidgetBox.defaults) self.box_is_open = False self.widgets = widgets if widgets is not None else [] self.add_callbacks({"Button1": self.cmd_toggle}) self.close_button_location: str if self.close_button_location not in ["left", "right"]: val = self.close_button_location msg = "Invalid value for 'close_button_location': {}".format(val) logger.warning(msg) self.close_button_location = "left" def _configure(self, qtile, bar): base._Widget._configure(self, qtile, bar) self.layout = self.drawer.textlayout( self.text_closed, self.foreground, self.font, self.fontsize, self.fontshadow, markup=False, ) for idx, w in enumerate(self.widgets): if w.configured: w = w.create_mirror() self.widgets[idx] = w self.qtile.register_widget(w) w._configure(self.qtile, self.bar) # In case the widget is mirrored, we need to draw it once so the # mirror can copy the surface but draw it off screen w.offsetx = self.bar.width self.qtile.call_soon(w.draw) # Disable drawing of the widget's contents for w in self.widgets: w.drawer.disable() def calculate_length(self): return self.layout.width def set_box_label(self): self.layout.text = (self.text_open if self.box_is_open else self.text_closed) def toggle_widgets(self): for widget in self.widgets: try: self.bar.widgets.remove(widget) # Override drawer.drawer with a no-op widget.drawer.disable() # Systray widget needs some additional steps to hide as the icons # are separate _Window instances. # Systray unhides icons when it draws so we only need to hide them. if isinstance(widget, Systray): for icon in widget.icons.values(): icon.hide() except ValueError: continue index = self.bar.widgets.index(self) if self.close_button_location == "left": index += 1 if self.box_is_open: # Need to reverse list as widgets get added in front of eachother. for widget in self.widgets[::-1]: # enable drawing again widget.drawer.enable() self.bar.widgets.insert(index, widget) def draw(self): self.drawer.clear(self.background or self.bar.background) self.layout.draw(0, int(self.bar.height / 2.0 - self.layout.height / 2.0) + 1) self.drawer.draw(offsetx=self.offsetx, offsety=self.offsety, width=self.width) def cmd_toggle(self): """Toggle box state""" self.box_is_open = not self.box_is_open self.toggle_widgets() self.set_box_label() self.bar.draw()