12 lines
420 B
Python
12 lines
420 B
Python
from gi.repository import Gtk, Adw, GObject, GLib
|
|
|
|
@Gtk.Template(resource_path="/gay/valhrafnaz/VoidManifest/ui/settings.ui")
|
|
class SettingsPage(Gtk.Box):
|
|
__gtype_name__ = "SettingsPage"
|
|
|
|
def __init__(self, *, parent: Adw.ViewStack):
|
|
super().__init__()
|
|
parent.add_titled(self, "settings", "Settings")
|
|
wrapper = parent.get_page(self)
|
|
wrapper.set_icon_name("settings-symbolic")
|