| 1234567891011121314151617181920212223242526272829303132 |
- def dialog_message_set_header(text: str, x: int, y: int, h: int, v: int) -> None:
- '''
- Set a header text on the dialog box.
- :param text: The text to set.
- :param x: The x coordinates to use.
- :param y: The y coordinates to use.
- :param h: The horizontal alignment.
- :param v: The vertical alignment.
- '''
- pass
- def dialog_message_set_text(text: str, x: int, y: int, h: int, v: int) -> None:
- '''
- Set a text on the dialog box.
- :param text: The text to set.
- :param x: The x coordinates to use.
- :param y: The y coordinates to use.
- :param h: The horizontal alignment.
- :param v: The vertical alignment.
- '''
- pass
- def dialog_message_set_button(text: str, button: int) -> None:
- '''
- Set the text of a dialog box button.
- :param text: The text to set.
- :param button: The button to use (e.g. :const:`flipperzero._input.INPUT_BUTTON_UP`).
- '''
- pass
|