* Initial UI scaling commit * temperature: updates to styling * screen: fix dialog creation * bed_level: scale images * job_status: updates to scaling
21 lines
486 B
Python
21 lines
486 B
Python
import gi
|
|
import logging
|
|
|
|
gi.require_version("Gtk", "3.0")
|
|
from gi.repository import Gtk, Gdk, GLib
|
|
|
|
from ks_includes.KlippyGcodes import KlippyGcodes
|
|
from ks_includes.screen_panel import ScreenPanel
|
|
|
|
logger = logging.getLogger("KlipperScreen.ExamplePanel")
|
|
|
|
def create_panel(*args):
|
|
return ExamplePanel(*args)
|
|
|
|
class ExamplePanel(ScreenPanel):
|
|
def initialize(self, panel_name):
|
|
_ = self.lang.gettext
|
|
# Create gtk items here
|
|
|
|
self.content.add(Gtk.Box())
|