summaryrefslogtreecommitdiff
path: root/python/astal
diff options
context:
space:
mode:
authorAylur <[email protected]>2024-06-05 13:16:28 +0200
committerAylur <[email protected]>2024-06-05 13:16:28 +0200
commite675e9784a20bb07d33f0feb3724a2a1f072f52b (patch)
treee9593e13571b6ec1fab8462721e61f34eee924ff /python/astal
parentca74fb7ad016f9ceee3756a973baa2d87a8aa1d6 (diff)
more widget subclasses
* levelbar * overlay * scrollable * slider
Diffstat (limited to 'python/astal')
-rw-r--r--python/astal/widget.py27
1 files changed, 20 insertions, 7 deletions
diff --git a/python/astal/widget.py b/python/astal/widget.py
index 7a458bf..8f2285f 100644
--- a/python/astal/widget.py
+++ b/python/astal/widget.py
@@ -56,10 +56,23 @@ def astalify(ctor):
return widget
-Window = astalify(Astal.Window)
-Box = astalify(Astal.Box)
-Button = astalify(Astal.Button)
-CenterBox = astalify(Astal.CenterBox)
-Label = astalify(Gtk.Label)
-Icon = astalify(Astal.Icon)
-EventBox = astalify(Astal.EventBox)
+Box = astalify(Astal.Box),
+Button = astalify(Astal.Button),
+CenterBox = astalify(Astal.CenterBox),
+# TODO: CircularProgress
+DrawingArea = astalify(Gtk.DrawingArea),
+Entry = astalify(Gtk.Entry),
+EventBox = astalify(Astal.EventBox),
+# TODO: Fixed
+# TODO: FlowBox
+Icon = astalify(Astal.Icon),
+Label = astalify(Gtk.Label),
+LevelBar = astalify(Astal.LevelBar),
+# TODO: ListBox
+Overlay = astalify(Astal.Overlay),
+Revealer = astalify(Gtk.Revealer),
+Scrollable = astalify(Astal.Scrollable),
+Slider = astalify(Astal.Slider),
+# TODO: Stack
+Switch = astalify(Gtk.Switch),
+Window = astalify(Astal.Window),