Exemplo n.º 1
0
 def startup_id(self) -> str | None:
     return str_or_none(self._ptr.startup_id)
Exemplo n.º 2
0
 def display_name(self) -> str | None:
     return str_or_none(self._ptr.display_name)
Exemplo n.º 3
0
 def wm_instance(self) -> str | None:
     return str_or_none(self._ptr.wm_instance)
Exemplo n.º 4
0
 def role(self) -> str | None:
     return str_or_none(self._ptr.role)
Exemplo n.º 5
0
 def title(self) -> str | None:
     return str_or_none(self._ptr.title)
Exemplo n.º 6
0
 def wm_class(self) -> str | None:
     # `self._ptr.class` is invalid syntax but this works.
     return str_or_none(getattr(self._ptr, "class"))
Exemplo n.º 7
0
 def title(self) -> str | None:
     """The title of the toplevel object"""
     return str_or_none(self._ptr.title)
Exemplo n.º 8
0
 def app_id(self) -> str | None:
     """The app id of the toplevel object"""
     return str_or_none(self._ptr.app_id)
Exemplo n.º 9
0
 def serial(self) -> str | None:
     return str_or_none(self._ptr.serial)
Exemplo n.º 10
0
 def model(self) -> str | None:
     return str_or_none(self._ptr.model)
Exemplo n.º 11
0
 def make(self) -> str | None:
     return str_or_none(self._ptr.make)
Exemplo n.º 12
0
 def description(self) -> str | None:
     """The description of the output"""
     return str_or_none(self._ptr.description)
Exemplo n.º 13
0
 def name(self) -> str | None:
     """The name of the output"""
     return str_or_none(self._ptr.name)