RegularWindow#

class ignis.widgets.Widget.RegularWindow(*args: Any, **kwargs: Any)#

Bases: Gtk.Window.

A standart application window.

Properties:
  • namespace (str, required, read-only): The name of the window, used for accessing it from the CLI and ignisApp. It must be unique.

Widget.RegularWindow(
    child=Widget.Label(label="this is regular window"),
    title="This is title",
    namespace='some-regular-window',
    titlebar=Widget.HeaderBar(show_title_buttons=True),
)