|
@@ -0,0 +1,23 @@
|
|
|
|
|
+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_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
|