TTkUiLoader๐ถ๏ธ
- class TTkUiLoader[source]๐ถ๏ธ
Bases:
object
Initialize self. See help(type(self)) for accurate signature.
Methods๐ถ๏ธ
- static loadDict(ui, baseWidget: TTkWidget = None, kwargs=None) TTkWidget [source]๐ถ๏ธ
load the dictionary representing the ui definition of the widget
- Parameters:
ui (dictionary generated by ttkDesigner) โ the representation of the widget
baseWidget (
TTkWidget
, optional) โ the custom widget that will be extended with this ui definition, if not defined a newTTkWidget
will be returned,defaults to Nonekwargs (dictionary, optional) โ the custom initialization args,defaults to None
- Returns:
- static loadFile(filePath, baseWidget: TTkWidget = None, kwargs=None) TTkWidget [source]๐ถ๏ธ
load the file generated by ttkDesigner
- Parameters:
- Returns:
- static loadJson(text, baseWidget: TTkWidget = None, kwargs=None) TTkWidget [source]๐ถ๏ธ
load the json representing the ui definition of the widget
- Parameters:
text (json generated by ttkDesigner) โ the representation of the widget in Json format
baseWidget (
TTkWidget
, optional) โ the custom widget that will be extended with this ui definition, if not defined a newTTkWidget
will be returned,defaults to Nonekwargs (dictionary, optional) โ the custom initialization args,defaults to None
- Returns: