RegularWindow#

class ignis.widgets.Widget.RegularWindow(namespace: str, **kwargs)#

Bases: Gtk.Window

A standart application window.

Parameters:
  • namespace (str) -- The name of the window, used for accessing it from the CLI and IgnisApp. It must be unique.

  • **kwargs -- Properties to set.

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),
)
gproperty namespace: str#
  • read-only

The name of the window, used for accessing it from the CLI and IgnisApp. It must be unique.