101 lines
3.3 KiB
Python
101 lines
3.3 KiB
Python
import gi
|
|
import logging
|
|
|
|
gi.require_version("Gtk", "3.0")
|
|
from gi.repository import Gtk, Gdk, GLib, Pango
|
|
|
|
from ks_includes.KlippyGcodes import KlippyGcodes
|
|
from ks_includes.screen_panel import ScreenPanel
|
|
|
|
def create_panel(*args):
|
|
return PowerPanel(*args)
|
|
|
|
class PowerPanel(ScreenPanel):
|
|
def initialize(self, panel_name):
|
|
_ = self.lang.gettext
|
|
self.devices = {}
|
|
|
|
# Create a scroll window for the power devices
|
|
scroll = Gtk.ScrolledWindow()
|
|
scroll.set_property("overlay-scrolling", False)
|
|
scroll.set_vexpand(True)
|
|
|
|
# Create a grid for all devices
|
|
self.labels['devices'] = Gtk.Grid()
|
|
scroll.add(self.labels['devices'])
|
|
|
|
# Create a box to contain all of the above
|
|
box = Gtk.Box(orientation=Gtk.Orientation.VERTICAL, spacing=0)
|
|
box.set_vexpand(True)
|
|
box.pack_start(scroll, True, True, 0)
|
|
|
|
self.load_power_devices()
|
|
|
|
self.content.add(box)
|
|
|
|
def add_device(self, device):
|
|
frame = Gtk.Frame()
|
|
frame.set_property("shadow-type", Gtk.ShadowType.NONE)
|
|
frame.get_style_context().add_class("frame-item")
|
|
|
|
name = Gtk.Label()
|
|
name.set_markup("<big><b>%s</b></big>" % (device))
|
|
name.set_hexpand(True)
|
|
name.set_vexpand(True)
|
|
name.set_halign(Gtk.Align.START)
|
|
name.set_valign(Gtk.Align.CENTER)
|
|
name.set_line_wrap(True)
|
|
name.set_line_wrap_mode(Pango.WrapMode.WORD_CHAR)
|
|
|
|
switch = Gtk.Switch()
|
|
switch.set_hexpand(False)
|
|
switch.set_active(True if self._screen.printer.get_power_device_status(device) == "on" else False)
|
|
switch.connect("notify::active", self.on_switch, device)
|
|
switch.set_property("width-request", round(self._gtk.get_image_width()*2.5))
|
|
switch.set_property("height-request", round(self._gtk.get_image_height()*1.25))
|
|
|
|
labels = Gtk.Box(orientation=Gtk.Orientation.VERTICAL)
|
|
labels.add(name)
|
|
|
|
dev = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL, spacing=5)
|
|
dev.set_hexpand(True)
|
|
dev.set_vexpand(False)
|
|
dev.add(labels)
|
|
dev.add(switch)
|
|
frame.add(dev)
|
|
|
|
self.devices[device] = {
|
|
"row": frame,
|
|
"switch": switch
|
|
}
|
|
|
|
devices = sorted(self.devices)
|
|
pos = devices.index(device)
|
|
|
|
self.labels['devices'].insert_row(pos)
|
|
self.labels['devices'].attach(self.devices[device]['row'], 0, pos, 1, 1)
|
|
self.labels['devices'].show_all()
|
|
|
|
def load_power_devices(self):
|
|
devices = self._screen.printer.get_power_devices()
|
|
for x in devices:
|
|
self.add_device(x)
|
|
|
|
def on_switch(self, switch, gparam, device):
|
|
logging.debug("Power toggled %s" % device)
|
|
if switch.get_active():
|
|
self._screen._ws.klippy.power_device_on(device)
|
|
else:
|
|
self._screen._ws.klippy.power_device_off(device)
|
|
|
|
def process_update(self, action, data):
|
|
if action != "notify_power_changed":
|
|
return
|
|
|
|
if data['device'] not in self.devices:
|
|
return
|
|
device = data['device']
|
|
self.devices[device]['switch'].disconnect_by_func(self.on_switch)
|
|
self.devices[device]['switch'].set_active(True if data['status'] == "on" else False)
|
|
self.devices[device]['switch'].connect("notify::active", self.on_switch, device)
|