Args in a table

This commit is contained in:
DarkCat09 2022-11-01 16:25:59 +04:00
parent 5f268fdf3a
commit 69209f8b70

View file

@ -12,11 +12,13 @@ pip install showdialog
Opens GTK MessageDialog Opens GTK MessageDialog
#### Args #### Args
- title (`str`): Dialog caption |Name|Type|Description|Default value|
- text (`Union[Tuple[Optional[str], bool], Optional[str]]`): Dialog primary text, str or tuple `(text, use_markup)` |:--:|:--:|:----------|:------:|
- sectext (`Union[Tuple[Optional[str], bool], Optional[str]]`, optional): Dialog secondary text, str or tuple. Defaults to `None`. |title|`str`|Dialog caption|*Required*|
- btns (`Gtk.ButtonsType`, optional): Dialog buttons. Defaults to `Gtk.ButtonsType.OK`. |text|`Tuple[Optional[str], bool] | Optional[str]`|Dialog primary text, str or tuple: `(text, use_markup)`|*Required*|
- msgtype (`Gtk.MessageType`, optional): Dialog message type. Defaults to `Gtk.MessageType.INFO`. |sectext|`Tuple[Optional[str], bool] | Optional[str]`, optional|Dialog secondary text, str or tuple|`None`|
|btns|`Gtk.ButtonsType`|Dialog buttons|`Gtk.ButtonsType.OK`|
|msgtype|`Gtk.MessageType`|Dialog message type|`Gtk.MessageType.INFO`|
#### Example: #### Example:
```python ```python