2022-03-15 12:41:21 -03:00

142 lines
4.1 KiB
Python

import gi
import logging
import time
gi.require_version("Gtk", "3.0")
from gi.repository import Gtk
from datetime import datetime
from ks_includes.screen_panel import ScreenPanel
def create_panel(*args):
return ConsolePanel(*args)
COLORS = {
"command": "#bad8ff",
"error": "#ff6975",
"response": "#b8b8b8",
"time": "grey",
"warning": "#c9c9c9"
}
class ConsolePanel(ScreenPanel):
def initialize(self, panel_name):
_ = self.lang.gettext
self.autoscroll = True
gcodes = self._screen._ws.send_method("server.gcode_store", {"count": 100}, self.gcode_response)
o1_lbl = Gtk.Label(_("Auto-scroll"))
o1_lbl.set_halign(Gtk.Align.END)
o1_switch = Gtk.Switch()
o1_switch.set_property("width-request", round(self._gtk.get_font_size()*6))
o1_switch.set_property("height-request", round(self._gtk.get_font_size()*3))
o1_switch.set_active(self.autoscroll)
o1_switch.connect("notify::active", self.set_autoscroll)
options = Gtk.HBox()
options.set_hexpand(True)
options.set_vexpand(False)
options.add(o1_lbl)
options.pack_start(o1_switch, False, 0, 5)
sw = Gtk.ScrolledWindow()
sw.set_hexpand(True)
sw.set_vexpand(True)
tb = Gtk.TextBuffer()
tv = Gtk.TextView()
tv.set_buffer(tb)
tv.set_editable(False)
tv.set_cursor_visible(False)
tv.connect("size-allocate", self._autoscroll)
sw.add(tv)
ebox = Gtk.Box()
ebox.set_hexpand(True)
ebox.set_vexpand(False)
entry = Gtk.Entry()
entry.set_hexpand(True)
entry.set_vexpand(False)
entry.connect("focus-in-event", self._show_keyboard)
entry.connect("focus-out-event", self._remove_keyboard)
entry.connect("activate", self._send_command)
enter = self._gtk.Button(_("Send"))
enter.set_hexpand(False)
enter.connect("clicked", self._send_command)
ebox.add(entry)
ebox.add(enter)
self.labels.update({
"entry": entry,
"sw": sw,
"tb": tb,
"tv": tv
})
content_box = Gtk.VBox()
content_box.pack_start(options, False, 0, 0)
content_box.add(sw)
content_box.pack_end(ebox, False, 0, 0)
self.content.add(content_box)
def add_gcode(self, type, time, message):
if type == "command":
color = COLORS['command']
message = '$ %s' % message
elif message.startswith("!!"):
color = COLORS['error']
elif message.startswith("//"):
color = COLORS['warning']
else:
color = COLORS['response']
message = '<span color="%s">%s</span>' % (color, message)
message = message.replace('\n', '\n ')
self.labels['tb'].insert_markup(
self.labels['tb'].get_end_iter(),
'\n<span color="%s">%s</span> %s' % (COLORS['time'], datetime.fromtimestamp(time).strftime("%H:%M:%S"),
message), -1
)
def gcode_response(self, result, method, params):
if method != "server.gcode_store":
return
for resp in result['result']['gcode_store']:
self.add_gcode(resp['type'], resp['time'], resp['message'])
def process_update(self, action, data):
if action == "notify_gcode_response":
self.add_gcode("response", time.time(), data)
def set_autoscroll(self, *args):
self.autoscroll ^= True
logging.debug(self.autoscroll)
def _autoscroll(self, *args):
if self.autoscroll:
adj = self.labels['sw'].get_vadjustment()
adj.set_value(adj.get_upper() - adj.get_page_size())
def _show_keyboard(self, *args):
self._screen.show_keyboard()
def _remove_keyboard(self, *args):
self._screen.remove_keyboard()
def _send_command(self, *args):
cmd = self.labels['entry'].get_text()
self.labels['entry'].set_text('')
self.add_gcode("command", time.time(), cmd)
self._screen._ws.klippy.gcode_script(cmd)