Updated docs to use the new docstring for fonts that are not yet released to pypi, but are on GitHub.

This commit is contained in:
PySimpleGUI 2021-08-11 13:07:52 -04:00
parent 607efc0595
commit 82adab524e
4 changed files with 1932 additions and 1928 deletions

View File

@ -86,7 +86,7 @@ Parameter Descriptions:
| (str, str) | highlight_colors | colors to use when button has focus (has focus, does not have focus). None will use colors based on theme. Only used by Linux and only for non-TTK button | | (str, str) | highlight_colors | colors to use when button has focus (has focus, does not have focus). None will use colors based on theme. Only used by Linux and only for non-TTK button |
| (str, str) or str | mouseover_colors | Important difference between Linux & Windows! Linux - Colors when mouse moved over button. Windows - colors when button is pressed. The default is to switch the text and background colors (an inverse effect) | | (str, str) or str | mouseover_colors | Important difference between Linux & Windows! Linux - Colors when mouse moved over button. Windows - colors when button is pressed. The default is to switch the text and background colors (an inverse effect) |
| bool | use_ttk_buttons | True = use ttk buttons. False = do not use ttk buttons. None (Default) = use ttk buttons only if on a Mac and not with button images | | bool | use_ttk_buttons | True = use ttk buttons. False = do not use ttk buttons. None (Default) = use ttk buttons only if on a Mac and not with button images |
| str or (str, int) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | bind_return_key | If True the return key will cause this button to be pressed | | bool | bind_return_key | If True the return key will cause this button to be pressed |
| bool | focus | if True, initial focus will be put on this button | | bool | focus | if True, initial focus will be put on this button |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element (left/right, top/bottom) or ((left, right), (top, bottom)) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element (left/right, top/bottom) or ((left, right), (top, bottom)) |
@ -492,8 +492,8 @@ Parameter Descriptions:
| str | background_color | color of the background | | str | background_color | color of the background |
| str | text_color | element's text color. Can be in #RRGGBB format or a color name "black" | | str | text_color | element's text color. Can be in #RRGGBB format or a color name "black" |
| str | disabled_text_color | color to use for text when item is disabled. Can be in #RRGGBB format or a color name "black" | | str | disabled_text_color | color to use for text when item is disabled. Can be in #RRGGBB format or a color name "black" |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| str or Tuple[str, int] | item_font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike, for the menu items | | (str or (str, int[, str]) or None) | item_font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike, for the menu items |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element (left/right, top/bottom) or ((left, right), (top, bottom)) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element (left/right, top/bottom) or ((left, right), (top, bottom)) |
| bool | key | Used with window.find_element and with return values to uniquely identify this element to uniquely identify this element :param expand_x: If True the element will automatically expand in the X direction to fill available space | | bool | key | Used with window.find_element and with return values to uniquely identify this element to uniquely identify this element :param expand_x: If True the element will automatically expand in the X direction to fill available space |
| bool | expand_y | If True the element will automatically expand in the Y direction to fill available space | | bool | expand_y | If True the element will automatically expand in the Y direction to fill available space |
@ -1108,7 +1108,7 @@ Parameter Descriptions:
| (int, int) or (None, None) | size | (width, height) width = characters-wide, height = rows-high | | (int, int) or (None, None) | size | (width, height) width = characters-wide, height = rows-high |
| (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used | | (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used |
| bool | auto_size_text | if True will size the element to match the length of the text | | bool | auto_size_text | if True will size the element to match the length of the text |
| str or (str, int) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| str | background_color | color of background | | str | background_color | color of background |
| str | text_color | color of the text | | str | text_color | color of the text |
| str | checkbox_color | color of background of the box that has the check mark in it. The checkmark is the same color as the text | | str | checkbox_color | color of background of the box that has the check mark in it. The checkmark is the same color as the text |
@ -1862,7 +1862,7 @@ Parameter Descriptions:
| bool | expand_x | If True the element will automatically expand in the X direction to fill available space | | bool | expand_x | If True the element will automatically expand in the X direction to fill available space |
| bool) :param tooltip: text that will appear when mouse hovers over this element | expand_y | If True the element will automatically expand in the Y direction to fill available space | | bool) :param tooltip: text that will appear when mouse hovers over this element | expand_y | If True the element will automatically expand in the Y direction to fill available space |
| bool | readonly | make element readonly (user can't change). True means user cannot change | | bool | readonly | make element readonly (user can't change). True means user cannot change |
| str or (str, int) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | visible | set visibility state of the element | | bool | visible | set visibility state of the element |
| Any | metadata | User metadata that can be set to ANYTHING | | Any | metadata | User metadata that can be set to ANYTHING |
@ -2087,7 +2087,7 @@ Parameter Descriptions:
| int | set_to_index | change selection to a particular choice starting with index = 0 | | int | set_to_index | change selection to a particular choice starting with index = 0 |
| bool | disabled | disable or enable state of the element | | bool | disabled | disable or enable state of the element |
| bool | readonly | if True make element readonly (user cannot change any choices). Enables the element if either choice are made. | | bool | readonly | if True make element readonly (user cannot change any choices). Enables the element if either choice are made. |
| str or (str, int) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | visible | control visibility of element | | bool | visible | control visibility of element |
| (int, int) | size | width, height. Width = characters-wide, height = NOTE it's the number of entries to show in the list | | (int, int) | size | width, height. Width = characters-wide, height = NOTE it's the number of entries to show in the list |
@ -2173,7 +2173,7 @@ Parameter Descriptions:
| int | set_to_index | change selection to a particular choice starting with index = 0 | | int | set_to_index | change selection to a particular choice starting with index = 0 |
| bool | disabled | disable or enable state of the element | | bool | disabled | disable or enable state of the element |
| bool | readonly | if True make element readonly (user cannot change any choices). Enables the element if either choice are made. | | bool | readonly | if True make element readonly (user cannot change any choices). Enables the element if either choice are made. |
| str or (str, int) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | visible | control visibility of element | | bool | visible | control visibility of element |
| (int, int) | size | width, height. Width = characters-wide, height = NOTE it's the number of entries to show in the list | | (int, int) | size | width, height. Width = characters-wide, height = NOTE it's the number of entries to show in the list |
@ -2219,7 +2219,7 @@ Parameter Descriptions:
| enum | relief | relief style. Values are same as other elements with reliefs. Choices include RELIEF_RAISED RELIEF_SUNKEN RELIEF_FLAT RELIEF_RIDGE RELIEF_GROOVE RELIEF_SOLID | | enum | relief | relief style. Values are same as other elements with reliefs. Choices include RELIEF_RAISED RELIEF_SUNKEN RELIEF_FLAT RELIEF_RIDGE RELIEF_GROOVE RELIEF_SOLID |
| (int, int) | size | (width, height) DO NOT use this. Instead, place your layout in a Column element with the size set on the Column element. Set pad=(0,0) on your Column | | (int, int) | size | (width, height) DO NOT use this. Instead, place your layout in a Column element with the size set on the Column element. Set pad=(0,0) on your Column |
| (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used | | (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element (left/right, top/bottom) or ((left, right), (top, bottom)) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element (left/right, top/bottom) or ((left, right), (top, bottom)) |
| int | border_width | width of border around element in pixels | | int | border_width | width of border around element in pixels |
| str or int or tuple or object | key | Value that uniquely identifies this element from all other elements. Used when Finding an element or in return values. Must be unique to the window | | str or int or tuple or object | key | Value that uniquely identifies this element from all other elements. Used when Finding an element or in return values. Must be unique to the window |
@ -2895,7 +2895,7 @@ Parameter Descriptions:
| Any | text | text to display | | Any | text | text to display |
| (int, int) or Tuple[float, float] | location | location to place first letter | | (int, int) or Tuple[float, float] | location | location to place first letter |
| str | color | text color | | str | color | text color |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| float | angle | Angle 0 to 360 to draw the text. Zero represents horizontal text | | float | angle | Angle 0 to 360 to draw the text. Zero represents horizontal text |
| enum | text_location | "anchor" location for the text. Values start with TEXT_LOCATION_ | | enum | text_location | "anchor" location for the text. Values start with TEXT_LOCATION_ |
| int or None | **RETURN** | id returned from tkinter that you'll need if you want to manipulate the text | int or None | **RETURN** | id returned from tkinter that you'll need if you want to manipulate the text
@ -3420,7 +3420,7 @@ Parameter Descriptions:
| Any | text | text to display | | Any | text | text to display |
| (int, int) or Tuple[float, float] | location | location to place first letter | | (int, int) or Tuple[float, float] | location | location to place first letter |
| str | color | text color | | str | color | text color |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| float | angle | Angle 0 to 360 to draw the text. Zero represents horizontal text | | float | angle | Angle 0 to 360 to draw the text. Zero represents horizontal text |
| enum | text_location | "anchor" location for the text. Values start with TEXT_LOCATION_ | | enum | text_location | "anchor" location for the text. Values start with TEXT_LOCATION_ |
| int or None | **RETURN** | id returned from tkinter that you'll need if you want to manipulate the text | int or None | **RETURN** | id returned from tkinter that you'll need if you want to manipulate the text
@ -4227,7 +4227,7 @@ Parameter Descriptions:
| str | justification | justification for data display. Valid choices - left, right, center | | str | justification | justification for data display. Valid choices - left, right, center |
| str | background_color | color of background in one of the color formats | | str | background_color | color of background in one of the color formats |
| str | text_color | color of the text | | str | text_color | color of the text |
| str or (str, int) | font | specifies the font family, size. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| str | tooltip | text, that will appear when mouse hovers over the element | | str | tooltip | text, that will appear when mouse hovers over the element |
| int | border_width | width of border around element in pixels | | int | border_width | width of border around element in pixels |
| bool | change_submits | * DEPRICATED DO NOT USE. Use `enable_events` instead | | bool | change_submits | * DEPRICATED DO NOT USE. Use `enable_events` instead |
@ -4613,7 +4613,7 @@ Parameter Descriptions:
| (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used | | (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used |
| bool | disabled | set disable state for element | | bool | disabled | set disable state for element |
| bool | auto_size_text | True if element should be the same size as the contents | | bool | auto_size_text | True if element should be the same size as the contents |
| str or (str, int) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_scrollbar | Controls if a scrollbar should be shown. If True, no scrollbar will be shown | | bool | no_scrollbar | Controls if a scrollbar should be shown. If True, no scrollbar will be shown |
| str | background_color | color of background | | str | background_color | color of background |
| str | text_color | color of the text | | str | text_color | color of the text |
@ -5044,7 +5044,7 @@ Parameter Descriptions:
| (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used | | (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used |
| bool | tearoff | if True, then can tear the menu off from the window ans use as a floating window. Very cool effect | | bool | tearoff | if True, then can tear the menu off from the window ans use as a floating window. Very cool effect |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element (left/right, top/bottom) or ((left, right), (top, bottom)) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element (left/right, top/bottom) or ((left, right), (top, bottom)) |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| str or int or tuple or object | key | Value that uniquely identifies this element from all other elements. Used when Finding an element or in return values. Must be unique to the window | | str or int or tuple or object | key | Value that uniquely identifies this element from all other elements. Used when Finding an element or in return values. Must be unique to the window |
| str or int or tuple or object | k | Same as the Key. You can use either k or key. Which ever is set will be used. | | str or int or tuple or object | k | Same as the Key. You can use either k or key. Which ever is set will be used. |
| bool | visible | set visibility state of the element | | bool | visible | set visibility state of the element |
@ -5341,8 +5341,8 @@ Parameter Descriptions:
|--|--|--| |--|--|--|
| List[List[Tuple[str, List[str]]] | menu_definition | The Menu definition specified using lists (docs explain the format) | | List[List[Tuple[str, List[str]]] | menu_definition | The Menu definition specified using lists (docs explain the format) |
| str | disabled_text_color | color to use for text when item is disabled. Can be in #RRGGBB format or a color name "black" | | str | disabled_text_color | color to use for text when item is disabled. Can be in #RRGGBB format or a color name "black" |
| str or Tuple[str, int] | bar_font | specifies the font family, size to be used for the chars in the bar itself | | (str or (str, int[, str]) or None) | bar_font | specifies the font family, size to be used for the chars in the bar itself |
| str or Tuple[str, int] | font | specifies the font family, size to be used for the menu items | | (str or (str, int[, str]) or None) | font | specifies the font family, size to be used for the menu items |
| bool | tearoff | if True, then can tear the menu off from the window ans use as a floating window. Very cool effect | | bool | tearoff | if True, then can tear the menu off from the window ans use as a floating window. Very cool effect |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element (left/right, top/bottom) or ((left, right), (top, bottom)) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element (left/right, top/bottom) or ((left, right), (top, bottom)) |
| str | background_color | color to use for background of the menus that are displayed after making a section. Can be in #RRGGBB format or a color name "black". Defaults to the color of the bar text | | str | background_color | color to use for background of the menus that are displayed after making a section. Can be in #RRGGBB format or a color name "black". Defaults to the color of the bar text |
@ -5390,6 +5390,7 @@ Multiline(default_text = "",
no_scrollbar = False, no_scrollbar = False,
expand_x = False, expand_x = False,
expand_y = False, expand_y = False,
rstrip = True,
right_click_menu = None, right_click_menu = None,
visible = True, visible = True,
metadata = None) metadata = None)
@ -5421,13 +5422,14 @@ Parameter Descriptions:
| bool | reroute_cprint | If True your cprint calls will output to this element. It's the same as you calling cprint_set_output_destination | | bool | reroute_cprint | If True your cprint calls will output to this element. It's the same as you calling cprint_set_output_destination |
| bool | echo_stdout_stderr | If True then output to stdout and stderr will be output to this element AND also to the normal console location | | bool | echo_stdout_stderr | If True then output to stdout and stderr will be output to this element AND also to the normal console location |
| bool | focus | if True initial focus will go to this element | | bool | focus | if True initial focus will go to this element |
| str or (str, int) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element (left/right, top/bottom) or ((left, right), (top, bottom)) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element (left/right, top/bottom) or ((left, right), (top, bottom)) |
| str | tooltip | text, that will appear when mouse hovers over the element | | str | tooltip | text, that will appear when mouse hovers over the element |
| str | justification | text justification. left, right, center. Can use single characters l, r, c. | | str | justification | text justification. left, right, center. Can use single characters l, r, c. |
| bool | no_scrollbar | If False then a scrollbar will be shown (the default) | | bool | no_scrollbar | If False then a scrollbar will be shown (the default) |
| bool | expand_x | If True the element will automatically expand in the X direction to fill available space | | bool | expand_x | If True the element will automatically expand in the X direction to fill available space |
| bool | expand_y | If True the element will automatically expand in the Y direction to fill available space | | bool | expand_y | If True the element will automatically expand in the Y direction to fill available space |
| bool | rstrip | If True the value returned in will have whitespace stripped from the right side |
| List[List[ List[str] or str ]] | right_click_menu | A list of lists of Menu items to show when this element is right clicked. See user docs for exact format. | | List[List[ List[str] or str ]] | right_click_menu | A list of lists of Menu items to show when this element is right clicked. See user docs for exact format. |
| bool | visible | set visibility state of the element | | bool | visible | set visibility state of the element |
| Any | metadata | User metadata that can be set to ANYTHING | | Any | metadata | User metadata that can be set to ANYTHING |
@ -5573,7 +5575,7 @@ Parameter Descriptions:
| str | text_color | The color of the text | | str | text_color | The color of the text |
| str | background_color | The background color of the line | | str | background_color | The background color of the line |
| str | justification | text justification. left, right, center. Can use single characters l, r, c. Sets only for this value, not entire element | | str | justification | text justification. left, right, center. Can use single characters l, r, c. Sets only for this value, not entire element |
| str or (str, int) or (str, int, str) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike for the args being printed | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike for the args being printed |
| str or str, str | colors | Either a tuple or a string that has both the text and background colors. Or just the text color | | str or str, str | colors | Either a tuple or a string that has both the text and background colors. Or just the text color |
| str | t | Color of the text | | str | t | Color of the text |
| str | b | The background color of the line | | str | b | The background color of the line |
@ -5747,7 +5749,7 @@ Parameter Descriptions:
| str | value | new text to display | | str | value | new text to display |
| bool | disabled | disable or enable state of the element | | bool | disabled | disable or enable state of the element |
| bool | append | if True then new value will be added onto the end of the current value. if False then contents will be replaced. | | bool | append | if True then new value will be added onto the end of the current value. if False then contents will be replaced. |
| str or (str, int) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike for the entire element | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike for the entire element |
| str | text_color | color of the text | | str | text_color | color of the text |
| str | background_color | color of background | | str | background_color | color of background |
| str | text_color_for_value | color of the new text being added (the value paramter) | | str | text_color_for_value | color of the new text being added (the value paramter) |
@ -5837,7 +5839,7 @@ Parameter Descriptions:
| str | value | new text to display | | str | value | new text to display |
| bool | disabled | disable or enable state of the element | | bool | disabled | disable or enable state of the element |
| bool | append | if True then new value will be added onto the end of the current value. if False then contents will be replaced. | | bool | append | if True then new value will be added onto the end of the current value. if False then contents will be replaced. |
| str or (str, int) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike for the entire element | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike for the entire element |
| str | text_color | color of the text | | str | text_color | color of the text |
| str | background_color | color of background | | str | background_color | color of background |
| str | text_color_for_value | color of the new text being added (the value paramter) | | str | text_color_for_value | color of the new text being added (the value paramter) |
@ -6221,7 +6223,7 @@ Parameter Descriptions:
| str | text_color | color of the text | | str | text_color | color of the text |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element (left/right, top/bottom) or ((left, right), (top, bottom)) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element (left/right, top/bottom) or ((left, right), (top, bottom)) |
| bool | echo_stdout_stderr | If True then output to stdout will be output to this element AND also to the normal console location | | bool | echo_stdout_stderr | If True then output to stdout will be output to this element AND also to the normal console location |
| str or (str, int) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| str | tooltip | text, that will appear when mouse hovers over the element | | str | tooltip | text, that will appear when mouse hovers over the element |
| str or int or tuple or object | key | Used with window.find_element and with return values to uniquely identify this element to uniquely identify this element | | str or int or tuple or object | key | Used with window.find_element and with return values to uniquely identify this element to uniquely identify this element |
| str or int or tuple or object | k | Same as the Key. You can use either k or key. Which ever is set will be used. | | str or int or tuple or object | k | Same as the Key. You can use either k or key. Which ever is set will be used. |
@ -7208,7 +7210,7 @@ Parameter Descriptions:
| str | background_color | color of background | | str | background_color | color of background |
| str | text_color | color of the text | | str | text_color | color of the text |
| str | circle_color | color of background of the circle that has the dot selection indicator in it | | str | circle_color | color of background of the circle that has the dot selection indicator in it |
| str or (str, int) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| str or int or tuple or object | key | Used with window.find_element and with return values to uniquely identify this element | | str or int or tuple or object | key | Used with window.find_element and with return values to uniquely identify this element |
| str or int or tuple or object | k | Same as the Key. You can use either k or key. Which ever is set will be used. | | str or int or tuple or object | k | Same as the Key. You can use either k or key. Which ever is set will be used. |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element (left/right, top/bottom) or ((left, right), (top, bottom)) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element (left/right, top/bottom) or ((left, right), (top, bottom)) |
@ -7805,7 +7807,7 @@ Parameter Descriptions:
| bool | disabled | set disable state for element | | bool | disabled | set disable state for element |
| (int, int) | size | (w=characters-wide, h=rows-high) | | (int, int) | size | (w=characters-wide, h=rows-high) |
| (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used | | (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| str | background_color | color of slider's background | | str | background_color | color of slider's background |
| str | text_color | color of the slider's text | | str | text_color | color of the slider's text |
| str | trough_color | color of the slider's trough | | str | trough_color | color of the slider's trough |
@ -8128,7 +8130,7 @@ Parameter Descriptions:
| (int, int) or (None, None) | size | (width, height) width = characters-wide, height = rows-high | | (int, int) or (None, None) | size | (width, height) width = characters-wide, height = rows-high |
| (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used | | (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used |
| bool | auto_size_text | if True will size the element to match the length of the text | | bool | auto_size_text | if True will size the element to match the length of the text |
| str or (str, int) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| str | background_color | color of background | | str | background_color | color of background |
| str | text_color | color of the text | | str | text_color | color of the text |
| str or int or tuple or object | key | Used with window.find_element and with return values to uniquely identify this element | | str or int or tuple or object | key | Used with window.find_element and with return values to uniquely identify this element |
@ -8482,7 +8484,7 @@ Parameter Descriptions:
| bool | click_submits | DO NOT USE. Only listed for backwards compat - Use enable_events instead | | bool | click_submits | DO NOT USE. Only listed for backwards compat - Use enable_events instead |
| bool | enable_events | Turns on the element specific events. StatusBar events occur when the bar is clicked | | bool | enable_events | Turns on the element specific events. StatusBar events occur when the bar is clicked |
| enum | relief | relief style. Values are same as progress meter relief values. Can be a constant or a string: `RELIEF_RAISED RELIEF_SUNKEN RELIEF_FLAT RELIEF_RIDGE RELIEF_GROOVE RELIEF_SOLID` | | enum | relief | relief style. Values are same as progress meter relief values. Can be a constant or a string: `RELIEF_RAISED RELIEF_SUNKEN RELIEF_FLAT RELIEF_RIDGE RELIEF_GROOVE RELIEF_SOLID` |
| str or (str, int) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| str | text_color | color of the text | | str | text_color | color of the text |
| str | background_color | color of background | | str | background_color | color of background |
| str | justification | how string should be aligned within space provided by size. Valid choices = `left`, `right`, `center` | | str | justification | how string should be aligned within space provided by size. Valid choices = `left`, `right`, `center` |
@ -8698,7 +8700,7 @@ Parameter Descriptions:
| str | value | new text to show | | str | value | new text to show |
| str | background_color | color of background | | str | background_color | color of background |
| str | text_color | color of the text | | str | text_color | color of the text |
| str or (str, int) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | visible | set visibility state of the element | | bool | visible | set visibility state of the element |
### visible ### visible
@ -8764,7 +8766,7 @@ Parameter Descriptions:
| str | value | new text to show | | str | value | new text to show |
| str | background_color | color of background | | str | background_color | color of background |
| str | text_color | color of the text | | str | text_color | color of the text |
| str or (str, int) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | visible | set visibility state of the element | | bool | visible | set visibility state of the element |
--------- ---------
@ -8802,7 +8804,7 @@ Parameter Descriptions:
| List[List[Element]] | layout | The element layout that will be shown in the tab | | List[List[Element]] | layout | The element layout that will be shown in the tab |
| str | title_color | color of the tab text (note not currently working on tkinter) | | str | title_color | color of the tab text (note not currently working on tkinter) |
| str | background_color | color of background of the entire layout | | str | background_color | color of background of the entire layout |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element (left/right, top/bottom) or ((left, right), (top, bottom)) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element (left/right, top/bottom) or ((left, right), (top, bottom)) |
| bool | disabled | If True button will be created disabled | | bool | disabled | If True button will be created disabled |
| int | border_width | width of border around element in pixels | | int | border_width | width of border around element in pixels |
@ -9196,7 +9198,7 @@ Parameter Descriptions:
| str | selected_title_color | color of tab text when it is selected | | str | selected_title_color | color of tab text when it is selected |
| str | selected_background_color | color of tab when it is selected | | str | selected_background_color | color of tab when it is selected |
| str | background_color | color of background area that tabs are located on | | str | background_color | color of background area that tabs are located on |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | change_submits | * DEPRICATED DO NOT USE. Use `enable_events` instead | | bool | change_submits | * DEPRICATED DO NOT USE. Use `enable_events` instead |
| bool | enable_events | If True then switching tabs will generate an Event | | bool | enable_events | If True then switching tabs will generate an Event |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element (left/right, top/bottom) or ((left, right), (top, bottom)) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element (left/right, top/bottom) or ((left, right), (top, bottom)) |
@ -9585,7 +9587,7 @@ Parameter Descriptions:
| bool | display_row_numbers | if True, the first column of the table will be the row # | | bool | display_row_numbers | if True, the first column of the table will be the row # |
| int | num_rows | The number of rows of the table to display at a time | | int | num_rows | The number of rows of the table to display at a time |
| int | row_height | height of a single row in pixels | | int | row_height | height of a single row in pixels |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| str | justification | 'left', 'right', 'center' are valid choices | | str | justification | 'left', 'right', 'center' are valid choices |
| str | text_color | color of the text | | str | text_color | color of the text |
| str | background_color | color of background | | str | background_color | color of background |
@ -9593,7 +9595,7 @@ Parameter Descriptions:
| str or (str, str) | selected_row_colors | Sets the text color and background color for a selected row. Same format as button colors - tuple ('red', 'yellow') or string 'red on yellow'. Defaults to theme's button color | | str or (str, str) | selected_row_colors | Sets the text color and background color for a selected row. Same format as button colors - tuple ('red', 'yellow') or string 'red on yellow'. Defaults to theme's button color |
| str | header_text_color | sets the text color for the header | | str | header_text_color | sets the text color for the header |
| str | header_background_color | sets the background color for the header | | str | header_background_color | sets the background color for the header |
| str or Tuple[str, int] | header_font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | header_font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| List[Tuple[int, str] or Tuple[Int, str, str]] | row_colors | list of tuples of (row, background color) OR (row, foreground color, background color). Sets the colors of listed rows to the color(s) provided (note the optional foreground color) | | List[Tuple[int, str] or Tuple[Int, str, str]] | row_colors | list of tuples of (row, background color) OR (row, foreground color, background color). Sets the colors of listed rows to the color(s) provided (note the optional foreground color) |
| bool | vertical_scroll_only | if True only the vertical scrollbar will be visible | | bool | vertical_scroll_only | if True only the vertical scrollbar will be visible |
| bool | hide_vertical_scroll | if True vertical scrollbar will be hidden | | bool | hide_vertical_scroll | if True vertical scrollbar will be hidden |
@ -9952,7 +9954,7 @@ Parameter Descriptions:
| bool | click_submits | DO NOT USE. Only listed for backwards compat - Use enable_events instead | | bool | click_submits | DO NOT USE. Only listed for backwards compat - Use enable_events instead |
| bool | enable_events | Turns on the element specific events. Text events happen when the text is clicked | | bool | enable_events | Turns on the element specific events. Text events happen when the text is clicked |
| (str/enum) | relief | relief style around the text. Values are same as progress meter relief values. Should be a constant that is defined at starting with "RELIEF_" - `RELIEF_RAISED, RELIEF_SUNKEN, RELIEF_FLAT, RELIEF_RIDGE, RELIEF_GROOVE, RELIEF_SOLID` | | (str/enum) | relief | relief style around the text. Values are same as progress meter relief values. Should be a constant that is defined at starting with "RELIEF_" - `RELIEF_RAISED, RELIEF_SUNKEN, RELIEF_FLAT, RELIEF_RIDGE, RELIEF_GROOVE, RELIEF_SOLID` |
| (str or (str, int) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| str | text_color | color of the text | | str | text_color | color of the text |
| str | background_color | color of background | | str | background_color | color of background |
| int | border_width | number of pixels for the border (if using a relief) | | int | border_width | number of pixels for the border (if using a relief) |
@ -10163,7 +10165,7 @@ Parameter Descriptions:
| str | value | new text to show | | str | value | new text to show |
| str | background_color | color of background | | str | background_color | color of background |
| str | text_color | color of the text | | str | text_color | color of the text |
| str or (str, int) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | visible | set visibility state of the element | | bool | visible | set visibility state of the element |
### visible ### visible
@ -10239,7 +10241,7 @@ Parameter Descriptions:
| str | value | new text to show | | str | value | new text to show |
| str | background_color | color of background | | str | background_color | color of background |
| str | text_color | color of the text | | str | text_color | color of the text |
| str or (str, int) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | visible | set visibility state of the element | | bool | visible | set visibility state of the element |
--------- ---------
@ -10284,7 +10286,7 @@ Parameter Descriptions:
| str | title | The "title" to show in the titlebar | | str | title | The "title" to show in the titlebar |
| str or None | text_color | Text color for titlebar | | str or None | text_color | Text color for titlebar |
| str or None | background_color | Background color for titlebar | | str or None | background_color | Background color for titlebar |
| str or None | font | Font to be used for the text and the symbols | | (str or (str, int[, str]) or None) | font | Font to be used for the text and the symbols |
| str or int or tuple or object or None | key | Identifies an Element. Should be UNIQUE to this window. | | str or int or tuple or object or None | key | Identifies an Element. Should be UNIQUE to this window. |
| str or int or tuple or object or None | k | Exactly the same as key. Choose one of them to use | | str or int or tuple or object or None | k | Exactly the same as key. Choose one of them to use |
| Column | **RETURN** | A single Column element that has eveything in 1 element | Column | **RETURN** | A single Column element that has eveything in 1 element
@ -10346,14 +10348,14 @@ Parameter Descriptions:
| bool | show_expanded | if True then the tree will be initially shown with all nodes completely expanded | | bool | show_expanded | if True then the tree will be initially shown with all nodes completely expanded |
| bool | change_submits | DO NOT USE. Only listed for backwards compat - Use enable_events instead | | bool | change_submits | DO NOT USE. Only listed for backwards compat - Use enable_events instead |
| bool | enable_events | Turns on the element specific events. Tree events happen when row is clicked | | bool | enable_events | Turns on the element specific events. Tree events happen when row is clicked |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| str | justification | 'left', 'right', 'center' are valid choices | | str | justification | 'left', 'right', 'center' are valid choices |
| str | text_color | color of the text | | str | text_color | color of the text |
| str | background_color | color of background | | str | background_color | color of background |
| str or (str, str) | selected_row_colors | Sets the text color and background color for a selected row. Same format as button colors - tuple ('red', 'yellow') or string 'red on yellow'. Defaults to theme's button color | | str or (str, str) | selected_row_colors | Sets the text color and background color for a selected row. Same format as button colors - tuple ('red', 'yellow') or string 'red on yellow'. Defaults to theme's button color |
| str | header_text_color | sets the text color for the header | | str | header_text_color | sets the text color for the header |
| str | header_background_color | sets the background color for the header | | str | header_background_color | sets the background color for the header |
| str or Tuple[str, int] | header_font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | header_font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| int | num_rows | The number of rows of the table to display at a time | | int | num_rows | The number of rows of the table to display at a time |
| int | row_height | height of a single row in pixels | | int | row_height | height of a single row in pixels |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element (left/right, top/bottom) or ((left, right), (top, bottom)) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element (left/right, top/bottom) or ((left, right), (top, bottom)) |
@ -11283,7 +11285,7 @@ Parameter Descriptions:
| (int, int or (int, int),(int,int)) | element_padding | Default amount of padding to put around elements in window (left/right, top/bottom) or ((left, right), (top, bottom)) | | (int, int or (int, int),(int,int)) | element_padding | Default amount of padding to put around elements in window (left/right, top/bottom) or ((left, right), (top, bottom)) |
| (int, int) | margins | (left/right, top/bottom) Amount of pixels to leave inside the window's frame around the edges before your elements are shown. | | (int, int) | margins | (left/right, top/bottom) Amount of pixels to leave inside the window's frame around the edges before your elements are shown. |
| (str, str) or str | button_color | Default button colors for all buttons in the window | | (str, str) or str | button_color | Default button colors for all buttons in the window |
| str or Tuple[str, int] or None | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| (str, str) | progress_bar_color | (bar color, background color) Sets the default colors for all progress bars in the window | | (str, str) | progress_bar_color | (bar color, background color) Sets the default colors for all progress bars in the window |
| str | background_color | color of background | | str | background_color | color of background |
| int | border_depth | Default border depth (width) for all elements in the window | | int | border_depth | Default border depth (width) for all elements in the window |
@ -11308,7 +11310,7 @@ Parameter Descriptions:
| str | right_click_menu_text_color | Text color for right click menus | | str | right_click_menu_text_color | Text color for right click menus |
| str | right_click_menu_disabled_text_color | Text color for disabled right click menu items | | str | right_click_menu_disabled_text_color | Text color for disabled right click menu items |
| (str, str) or str or Tuple(int, int) or (None, None) | right_click_menu_selected_colors | Text AND background colors for a selected item. Can be a Tuple OR a color string. simplified-button-color-string "foreground on background". Can be a single color if want to set only the background. Normally a tuple, but can be a simplified-dual-color-string "foreground on background". Can be a single color if want to set only the background. | | (str, str) or str or Tuple(int, int) or (None, None) | right_click_menu_selected_colors | Text AND background colors for a selected item. Can be a Tuple OR a color string. simplified-button-color-string "foreground on background". Can be a single color if want to set only the background. Normally a tuple, but can be a simplified-dual-color-string "foreground on background". Can be a single color if want to set only the background. |
| str or Tuple[str, int] | right_click_menu_font | Font for right click menus | | (str or (str, int[, str]) or None) | right_click_menu_font | Font for right click menus |
| bool | right_click_menu_tearoff | If True then all right click menus can be torn off | | bool | right_click_menu_tearoff | If True then all right click menus can be torn off |
| bool | finalize | If True then the Finalize method will be called. Use this rather than chaining .Finalize for cleaner code | | bool | finalize | If True then the Finalize method will be called. Use this rather than chaining .Finalize for cleaner code |
| str | element_justification | All elements in the Window itself will have this justification 'left', 'right', 'center' are valid values | | str | element_justification | All elements in the Window itself will have this justification 'left', 'right', 'center' are valid values |
@ -11318,7 +11320,7 @@ Parameter Descriptions:
| bool | enable_close_attempted_event | If True then the window will not close when "X" clicked. Instead an event WINDOW_CLOSE_ATTEMPTED_EVENT if returned from window.read | | bool | enable_close_attempted_event | If True then the window will not close when "X" clicked. Instead an event WINDOW_CLOSE_ATTEMPTED_EVENT if returned from window.read |
| (str or None) | titlebar_background_color | If custom titlebar indicated by use_custom_titlebar, then use this as background color | | (str or None) | titlebar_background_color | If custom titlebar indicated by use_custom_titlebar, then use this as background color |
| (str or None) | titlebar_text_color | If custom titlebar indicated by use_custom_titlebar, then use this as text color | | (str or None) | titlebar_text_color | If custom titlebar indicated by use_custom_titlebar, then use this as text color |
| (str or Tuple[str, int] or None) | titlebar_font | If custom titlebar indicated by use_custom_titlebar, then use this as title font | | (str or (str, int[, str]) or None) | titlebar_font | If custom titlebar indicated by use_custom_titlebar, then use this as title font |
| (bytes or str) | titlebar_icon | If custom titlebar indicated by use_custom_titlebar, then use this as the icon (file or base64 bytes) | | (bytes or str) | titlebar_icon | If custom titlebar indicated by use_custom_titlebar, then use this as the icon (file or base64 bytes) |
| bool | use_custom_titlebar | If True, then a custom titlebar will be used instead of the normal titlebar | | bool | use_custom_titlebar | If True, then a custom titlebar will be used instead of the normal titlebar |
| Any | metadata | User metadata that can be set to ANYTHING | | Any | metadata | User metadata that can be set to ANYTHING |
@ -12853,7 +12855,7 @@ Parameter Descriptions:
| bool | auto_size_button | True if button size is determined by button text | | bool | auto_size_button | True if button size is determined by button text |
| (str, str) or str | button_color | button color (foreground, background) | | (str, str) or str | button_color | button color (foreground, background) |
| bool | disabled | set disable state for element (Default = False) | | bool | disabled | set disable state for element (Default = False) |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event | | bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event |
| bool | focus | if focus should be set to this | | bool | focus | if focus should be set to this |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) |
@ -12897,7 +12899,7 @@ Parameter Descriptions:
| (str, str) or str | button_color | button color (foreground, background) | | (str, str) or str | button_color | button color (foreground, background) |
| bool | disabled | set disable state for element (Default = False) | | bool | disabled | set disable state for element (Default = False) |
| str | tooltip | text, that will appear when mouse hovers over the element | | str | tooltip | text, that will appear when mouse hovers over the element |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event | | bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event |
| | focus | if focus should be set to this | | | focus | if focus should be set to this |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) |
@ -12946,7 +12948,7 @@ Parameter Descriptions:
| bool | auto_size_button | True if button size is determined by button text | | bool | auto_size_button | True if button size is determined by button text |
| (str, str) or str | button_color | button color (foreground, background) | | (str, str) or str | button_color | button color (foreground, background) |
| bool | disabled | set disable state for element (Default = False) | | bool | disabled | set disable state for element (Default = False) |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | bind_return_key | If True, then the return key will cause a the Listbox to generate an event | | bool | bind_return_key | If True, then the return key will cause a the Listbox to generate an event |
| bool | focus | Determines if initial focus should go to this element. | | bool | focus | Determines if initial focus should go to this element. |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) |
@ -12982,7 +12984,7 @@ Parameter Descriptions:
| bool | auto_size_button | True if button size is determined by button text | | bool | auto_size_button | True if button size is determined by button text |
| (str, str) or str | button_color | button color (foreground, background) | | (str, str) or str | button_color | button color (foreground, background) |
| bool | disabled | set disable state for element (Default = False) | | bool | disabled | set disable state for element (Default = False) |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| str | tooltip | text, that will appear when mouse hovers over the element | | str | tooltip | text, that will appear when mouse hovers over the element |
| bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event | | bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event |
| | focus | if focus should be set to this | | | focus | if focus should be set to this |
@ -13029,7 +13031,7 @@ Parameter Descriptions:
| (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used | | (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used |
| bool | auto_size_button | True if button size is determined by button text | | bool | auto_size_button | True if button size is determined by button text |
| (str, str) or str | button_color | button color (foreground, background) | | (str, str) or str | button_color | button color (foreground, background) |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | disabled | set disable state for element (Default = False) | | bool | disabled | set disable state for element (Default = False) |
| bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event | | bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event |
| bool | focus | if focus should be set to this | | bool | focus | if focus should be set to this |
@ -13067,7 +13069,7 @@ Parameter Descriptions:
| (str, str) or str | button_color | button color (foreground, background) | | (str, str) or str | button_color | button color (foreground, background) |
| bool | disabled | set disable state for element (Default = False) | | bool | disabled | set disable state for element (Default = False) |
| str | tooltip | text, that will appear when mouse hovers over the element | | str | tooltip | text, that will appear when mouse hovers over the element |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event | | bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event |
| | focus | if focus should be set to this | | | focus | if focus should be set to this |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) |
@ -13111,7 +13113,7 @@ Parameter Descriptions:
| (str, str) or str | button_color | button color (foreground, background) | | (str, str) or str | button_color | button color (foreground, background) |
| bool | change_submits | If True, pressing Enter key submits window (Default = False) | | bool | change_submits | If True, pressing Enter key submits window (Default = False) |
| bool | enable_events | Turns on the element specific events.(Default = False) | | bool | enable_events | Turns on the element specific events.(Default = False) |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | disabled | set disable state for element (Default = False) | | bool | disabled | set disable state for element (Default = False) |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) |
| str or int or tuple or object | key | key for uniquely identify this element (for window.find_element) | | str or int or tuple or object | key | key for uniquely identify this element (for window.find_element) |
@ -13157,7 +13159,7 @@ Parameter Descriptions:
| (str, str) or str | button_color | button color (foreground, background) | | (str, str) or str | button_color | button color (foreground, background) |
| bool | change_submits | If True, pressing Enter key submits window (Default = False) | | bool | change_submits | If True, pressing Enter key submits window (Default = False) |
| bool | enable_events | Turns on the element specific events.(Default = False) | | bool | enable_events | Turns on the element specific events.(Default = False) |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) |
| str or int or tuple or object | key | key for uniquely identify this element (for window.find_element) | | str or int or tuple or object | key | key for uniquely identify this element (for window.find_element) |
| str or int or tuple or object | k | Same as the Key. You can use either k or key. Which ever is set will be used. | | str or int or tuple or object | k | Same as the Key. You can use either k or key. Which ever is set will be used. |
@ -13203,7 +13205,7 @@ Parameter Descriptions:
| (str, str) or str | button_color | button color (foreground, background) | | (str, str) or str | button_color | button color (foreground, background) |
| bool | change_submits | If True, pressing Enter key submits window (Default = False) | | bool | change_submits | If True, pressing Enter key submits window (Default = False) |
| bool | enable_events | Turns on the element specific events.(Default = False) | | bool | enable_events | Turns on the element specific events.(Default = False) |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) |
| str or int or tuple or object | key | key for uniquely identify this element (for window.find_element) | | str or int or tuple or object | key | key for uniquely identify this element (for window.find_element) |
| str or int or tuple or object | k | Same as the Key. You can use either k or key. Which ever is set will be used. | | str or int or tuple or object | k | Same as the Key. You can use either k or key. Which ever is set will be used. |
@ -13245,7 +13247,7 @@ Parameter Descriptions:
| bool | disabled | set disable state for element (Default = False) | | bool | disabled | set disable state for element (Default = False) |
| bool | change_submits | If True, pressing Enter key submits window (Default = False) | | bool | change_submits | If True, pressing Enter key submits window (Default = False) |
| bool | enable_events | Turns on the element specific events.(Default = False) | | bool | enable_events | Turns on the element specific events.(Default = False) |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element |
| str or int or tuple or object | key | Used with window.find_element and with return values to uniquely identify this element | | str or int or tuple or object | key | Used with window.find_element and with return values to uniquely identify this element |
| str or int or tuple or object | k | Same as the Key. You can use either k or key. Which ever is set will be used. | | str or int or tuple or object | k | Same as the Key. You can use either k or key. Which ever is set will be used. |
@ -13279,7 +13281,7 @@ Parameter Descriptions:
| bool | auto_size_button | True if button size is determined by button text | | bool | auto_size_button | True if button size is determined by button text |
| (str, str) or str | button_color | button color (foreground, background) | | (str, str) or str | button_color | button color (foreground, background) |
| bool | disabled | set disable state for element (Default = False) | | bool | disabled | set disable state for element (Default = False) |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| str | tooltip | text, that will appear when mouse hovers over the element | | str | tooltip | text, that will appear when mouse hovers over the element |
| bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event | | bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event |
| | focus | if focus should be set to this | | | focus | if focus should be set to this |
@ -13317,7 +13319,7 @@ Parameter Descriptions:
| (str, str) or str | button_color | button color (foreground, background) | | (str, str) or str | button_color | button color (foreground, background) |
| bool | disabled | set disable state for element (Default = False) | | bool | disabled | set disable state for element (Default = False) |
| str | tooltip | text, that will appear when mouse hovers over the element | | str | tooltip | text, that will appear when mouse hovers over the element |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event | | bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event |
| | focus | if focus should be set to this | | | focus | if focus should be set to this |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) |
@ -13355,7 +13357,7 @@ Parameter Descriptions:
| bool | disabled | set disable state for element (Default = False) | | bool | disabled | set disable state for element (Default = False) |
| bool | bind_return_key | (Default = True) If True, then the return key will cause a the Listbox to generate an event | | bool | bind_return_key | (Default = True) If True, then the return key will cause a the Listbox to generate an event |
| str | tooltip | text, that will appear when mouse hovers over the element | | str | tooltip | text, that will appear when mouse hovers over the element |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| idk_yetReally | focus | if focus should be set to this | | idk_yetReally | focus | if focus should be set to this |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) |
| str or int or tuple or object | key | key for uniquely identify this element (for window.find_element) | | str or int or tuple or object | key | key for uniquely identify this element (for window.find_element) |
@ -13420,7 +13422,7 @@ Parameter Descriptions:
| bool | disabled | set disable state for element (Default = False) | | bool | disabled | set disable state for element (Default = False) |
| bool | bind_return_key | (Default = True) If True, then the return key will cause a the Listbox to generate an event | | bool | bind_return_key | (Default = True) If True, then the return key will cause a the Listbox to generate an event |
| str | tooltip | text, that will appear when mouse hovers over the element | | str | tooltip | text, that will appear when mouse hovers over the element |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| idk_yetReally | focus | if focus should be set to this | | idk_yetReally | focus | if focus should be set to this |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) |
| str or int or tuple or object | key | key for uniquely identify this element (for window.find_element) | | str or int or tuple or object | key | key for uniquely identify this element (for window.find_element) |
@ -13457,7 +13459,7 @@ Parameter Descriptions:
| bool | disabled | set disable state for element (Default = False) | | bool | disabled | set disable state for element (Default = False) |
| bool | bind_return_key | (Default = True) If True, then the return key will cause a the Listbox to generate an event | | bool | bind_return_key | (Default = True) If True, then the return key will cause a the Listbox to generate an event |
| str | tooltip | text, that will appear when mouse hovers over the element | | str | tooltip | text, that will appear when mouse hovers over the element |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| idk_yetReally | focus | if focus should be set to this | | idk_yetReally | focus | if focus should be set to this |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) |
| str or int or tuple or object | key | key for uniquely identify this element (for window.find_element) | | str or int or tuple or object | key | key for uniquely identify this element (for window.find_element) |
@ -13493,7 +13495,7 @@ Parameter Descriptions:
| (str, str) or str | button_color | button color (foreground, background) | | (str, str) or str | button_color | button color (foreground, background) |
| bool | disabled | set disable state for element (Default = False) | | bool | disabled | set disable state for element (Default = False) |
| str | tooltip | text, that will appear when mouse hovers over the element | | str | tooltip | text, that will appear when mouse hovers over the element |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event | | bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event |
| | focus | if focus should be set to this | | | focus | if focus should be set to this |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) |
@ -13538,7 +13540,7 @@ Parameter Descriptions:
| (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used | | (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used |
| bool | auto_size_button | True if button size is determined by button text | | bool | auto_size_button | True if button size is determined by button text |
| (str, str) or str | button_color | button color (foreground, background) | | (str, str) or str | button_color | button color (foreground, background) |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | disabled | set disable state for element (Default = False) | | bool | disabled | set disable state for element (Default = False) |
| bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event | | bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event |
| bool | focus | if focus should be set to this | | bool | focus | if focus should be set to this |
@ -13578,7 +13580,7 @@ Parameter Descriptions:
| bool | bind_return_key | (Default = True) If True, then the return key will cause a the Listbox to generate an event | | bool | bind_return_key | (Default = True) If True, then the return key will cause a the Listbox to generate an event |
| bool | disabled | set disable state for element (Default = False) | | bool | disabled | set disable state for element (Default = False) |
| str | tooltip | text, that will appear when mouse hovers over the element | | str | tooltip | text, that will appear when mouse hovers over the element |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| idk_yetReally | focus | if focus should be set to this | | idk_yetReally | focus | if focus should be set to this |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) |
| str or int or tuple or object | key | key for uniquely identify this element (for window.find_element) | | str or int or tuple or object | key | key for uniquely identify this element (for window.find_element) |
@ -13624,7 +13626,7 @@ Parameter Descriptions:
| (str, str) or str | button_color | button color (foreground, background) | | (str, str) or str | button_color | button color (foreground, background) |
| bool | change_submits | If True, pressing Enter key submits window (Default = False) | | bool | change_submits | If True, pressing Enter key submits window (Default = False) |
| bool | enable_events | Turns on the element specific events.(Default = False) | | bool | enable_events | Turns on the element specific events.(Default = False) |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) |
| str or int or tuple or object | key | key for uniquely identify this element (for window.find_element) | | str or int or tuple or object | key | key for uniquely identify this element (for window.find_element) |
| str or int or tuple or object | k | Same as the Key. You can use either k or key. Which ever is set will be used. | | str or int or tuple or object | k | Same as the Key. You can use either k or key. Which ever is set will be used. |
@ -13660,7 +13662,7 @@ Parameter Descriptions:
| bool | disabled | set disable state for element (Default = False) | | bool | disabled | set disable state for element (Default = False) |
| bool | bind_return_key | (Default = True) If True, then the return key will cause a the Listbox to generate an event | | bool | bind_return_key | (Default = True) If True, then the return key will cause a the Listbox to generate an event |
| str | tooltip | text, that will appear when mouse hovers over the element | | str | tooltip | text, that will appear when mouse hovers over the element |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| idk_yetReally | focus | if focus should be set to this | | idk_yetReally | focus | if focus should be set to this |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) |
| str or int or tuple or object | key | key for uniquely identify this element (for window.find_element) | | str or int or tuple or object | key | key for uniquely identify this element (for window.find_element) |
@ -13696,7 +13698,7 @@ Parameter Descriptions:
| (str, str) or str | button_color | button color (foreground, background) | | (str, str) or str | button_color | button color (foreground, background) |
| bool | disabled | set disable state for element (Default = False) | | bool | disabled | set disable state for element (Default = False) |
| str | tooltip | text, that will appear when mouse hovers over the element | | str | tooltip | text, that will appear when mouse hovers over the element |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | bind_return_key | (Default = True) If True, then the return key will cause a the Listbox to generate an event | | bool | bind_return_key | (Default = True) If True, then the return key will cause a the Listbox to generate an event |
| | focus | if focus should be set to this | | | focus | if focus should be set to this |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) |
@ -13746,7 +13748,7 @@ Parameter Descriptions:
| (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used | | (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used |
| bool | auto_size_button | True if button size is determined by button text | | bool | auto_size_button | True if button size is determined by button text |
| (str, str) or str | button_color | button color (foreground, background) | | (str, str) or str | button_color | button color (foreground, background) |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event | | bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event |
| bool | disabled | set disable state for element (Default = False) | | bool | disabled | set disable state for element (Default = False) |
| idk_yetReally | focus | if focus should be set to this | | idk_yetReally | focus | if focus should be set to this |
@ -13793,7 +13795,7 @@ Parameter Descriptions:
| (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used | | (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used |
| bool | auto_size_button | True if button size is determined by button text | | bool | auto_size_button | True if button size is determined by button text |
| (str, str) or str | button_color | button color (foreground, background) | | (str, str) or str | button_color | button color (foreground, background) |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event | | bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event |
| bool | disabled | set disable state for element (Default = False) | | bool | disabled | set disable state for element (Default = False) |
| idk_yetReally | focus | if focus should be set to this | | idk_yetReally | focus | if focus should be set to this |
@ -13840,7 +13842,7 @@ Parameter Descriptions:
| (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used | | (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used |
| bool | auto_size_button | True if button size is determined by button text | | bool | auto_size_button | True if button size is determined by button text |
| (str, str) or str | button_color | button color (foreground, background) | | (str, str) or str | button_color | button color (foreground, background) |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event | | bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event |
| bool | disabled | set disable state for element (Default = False) | | bool | disabled | set disable state for element (Default = False) |
| idk_yetReally | focus | if focus should be set to this | | idk_yetReally | focus | if focus should be set to this |
@ -13886,7 +13888,7 @@ Parameter Descriptions:
| (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used | | (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used |
| bool | auto_size_button | True if button size is determined by button text | | bool | auto_size_button | True if button size is determined by button text |
| (str, str) or str | button_color | button color (foreground, background) | | (str, str) or str | button_color | button color (foreground, background) |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event | | bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event |
| bool | disabled | set disable state for element (Default = False) | | bool | disabled | set disable state for element (Default = False) |
| idk_yetReally | focus | if focus should be set to this | | idk_yetReally | focus | if focus should be set to this |
@ -13937,7 +13939,7 @@ Parameter Descriptions:
| str | end | end character | | str | end | end character |
| str | sep | separator character | | str | sep | separator character |
| (int, int) | location | Location of upper left corner of the window | | (int, int) | location | Location of upper left corner of the window |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | no_button | don't show button | | bool | no_button | don't show button |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
@ -13997,7 +13999,7 @@ Parameter Descriptions:
| str | end | end character | | str | end | end character |
| str | sep | separator character | | str | sep | separator character |
| (int, int) | location | Location of upper left corner of the window | | (int, int) | location | Location of upper left corner of the window |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | no_button | don't show button | | bool | no_button | don't show button |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
@ -14051,7 +14053,7 @@ Parameter Descriptions:
| str | end | end character | | str | end | end character |
| str | sep | separator character | | str | sep | separator character |
| (int, int) | location | Location of upper left corner of the window | | (int, int) | location | Location of upper left corner of the window |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | no_button | don't show button | | bool | no_button | don't show button |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
@ -14111,7 +14113,7 @@ Parameter Descriptions:
| str | end | end character | | str | end | end character |
| str | sep | separator character | | str | sep | separator character |
| (int, int) | location | Location of upper left corner of the window | | (int, int) | location | Location of upper left corner of the window |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | no_button | don't show button | | bool | no_button | don't show button |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
@ -14171,7 +14173,7 @@ Parameter Descriptions:
| str | end | end character | | str | end | end character |
| str | sep | separator character | | str | sep | separator character |
| (int, int) | location | Location of upper left corner of the window | | (int, int) | location | Location of upper left corner of the window |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | no_button | don't show button | | bool | no_button | don't show button |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
@ -14244,7 +14246,7 @@ Parameter Descriptions:
|--|--|--| |--|--|--|
| Any | *args | stuff to output | | Any | *args | stuff to output |
| str | text_color | Color of the text | | str | text_color | Color of the text |
| str or (str, int) or (str, int, str) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike for the value being updated | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike for the value being updated |
| str | background_color | The background color of the line | | str | background_color | The background color of the line |
| str or str, str | colors | Either a tuple or a string that has both the text and background colors "text on background" or just the text color | | str or str, str | colors | Either a tuple or a string that has both the text and background colors "text on background" or just the text color |
| str | t | Color of the text | | str | t | Color of the text |
@ -14507,7 +14509,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -14552,7 +14554,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -14597,7 +14599,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -14691,7 +14693,7 @@ Parameter Descriptions:
| str | background_color | background color of the entire window | | str | background_color | background color of the entire window |
| str | text_color | color of the text | | str | text_color | color of the text |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -14741,7 +14743,7 @@ Parameter Descriptions:
| str | background_color | color of background | | str | background_color | color of background |
| str | text_color | color of the text | | str | text_color | color of the text |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -14787,7 +14789,7 @@ Parameter Descriptions:
| str | background_color | background color of the entire window | | str | background_color | background color of the entire window |
| str | text_color | color of the message text | | str | text_color | color of the message text |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True can click and drag anywhere in the window to move the window | | bool | grab_anywhere | If True can click and drag anywhere in the window to move the window |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -14852,7 +14854,7 @@ Parameter Descriptions:
| bool | non_blocking | If True then will immediately return from the function without waiting for the user's input. (Default = False) | | bool | non_blocking | If True then will immediately return from the function without waiting for the user's input. (Default = False) |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True, than can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True, than can grab anywhere to move the window (Default = False) |
| (int, int) | location | Location of upper left corner of the window | | (int, int) | location | Location of upper left corner of the window |
@ -14897,7 +14899,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
| (int, int) | location | Location of upper left corner of the window | | (int, int) | location | Location of upper left corner of the window |
@ -14943,7 +14945,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| (int, int) | location | Location of upper left corner of the window | | (int, int) | location | Location of upper left corner of the window |
@ -15016,7 +15018,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -15061,7 +15063,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -15108,7 +15110,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -15156,7 +15158,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| (int, int) | location | Location of upper left corner of the window | | (int, int) | location | Location of upper left corner of the window |
@ -15207,7 +15209,7 @@ Parameter Descriptions:
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True, than can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True, than can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| str or bytes | image | Image to include at the top of the popup window | | str or bytes | image | Image to include at the top of the popup window |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| bool | modal | If True then makes the popup will behave like a Modal window... all other windows are non-operational until this one is closed. Default = True | | bool | modal | If True then makes the popup will behave like a Modal window... all other windows are non-operational until this one is closed. Default = True |
@ -15250,7 +15252,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -15304,7 +15306,7 @@ Parameter Descriptions:
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True, than can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True, than can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| str or bytes | image | Image to include at the top of the popup window | | str or bytes | image | Image to include at the top of the popup window |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| bool | modal | If True then makes the popup will behave like a Modal window... all other windows are non-operational until this one is closed. Default = True | | bool | modal | If True then makes the popup will behave like a Modal window... all other windows are non-operational until this one is closed. Default = True |
@ -15354,7 +15356,7 @@ Parameter Descriptions:
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True, than can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True, than can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| str or bytes | image | Image to include at the top of the popup window | | str or bytes | image | Image to include at the top of the popup window |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| bool | modal | If True then makes the popup will behave like a Modal window... all other windows are non-operational until this one is closed. Default = True | | bool | modal | If True then makes the popup will behave like a Modal window... all other windows are non-operational until this one is closed. Default = True |
@ -15498,7 +15500,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
| (int, int) | location | Location of upper left corner of the window | | (int, int) | location | Location of upper left corner of the window |
@ -15544,7 +15546,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -15589,7 +15591,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -15634,7 +15636,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -15689,7 +15691,7 @@ Parameter Descriptions:
| str | background_color | background color of the entire window | | str | background_color | background color of the entire window |
| str | text_color | color of the text | | str | text_color | color of the text |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -15739,7 +15741,7 @@ Parameter Descriptions:
| str | background_color | color of background | | str | background_color | color of background |
| str | text_color | color of the text | | str | text_color | color of the text |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -15785,7 +15787,7 @@ Parameter Descriptions:
| str | background_color | background color of the entire window | | str | background_color | background color of the entire window |
| str | text_color | color of the message text | | str | text_color | color of the message text |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True can click and drag anywhere in the window to move the window | | bool | grab_anywhere | If True can click and drag anywhere in the window to move the window |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -15831,7 +15833,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
| (int, int) | location | Location of upper left corner of the window | | (int, int) | location | Location of upper left corner of the window |
@ -15873,7 +15875,7 @@ Parameter Descriptions:
| bool | non_blocking | If True then will immediately return from the function without waiting for the user's input. (Default = False) | | bool | non_blocking | If True then will immediately return from the function without waiting for the user's input. (Default = False) |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True, than can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True, than can grab anywhere to move the window (Default = False) |
| (int, int) | location | Location of upper left corner of the window | | (int, int) | location | Location of upper left corner of the window |
@ -15918,7 +15920,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
| (int, int) | location | Location of upper left corner of the window | | (int, int) | location | Location of upper left corner of the window |
@ -15963,7 +15965,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
| (int, int) | location | Location of upper left corner of the window | | (int, int) | location | Location of upper left corner of the window |
@ -16009,7 +16011,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| (int, int) | location | Location of upper left corner of the window | | (int, int) | location | Location of upper left corner of the window |
@ -16053,7 +16055,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -16098,7 +16100,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -16145,7 +16147,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -16193,7 +16195,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| (int, int) | location | Location of upper left corner of the window | | (int, int) | location | Location of upper left corner of the window |
@ -16244,7 +16246,7 @@ Parameter Descriptions:
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True, than can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True, than can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| str or bytes | image | Image to include at the top of the popup window | | str or bytes | image | Image to include at the top of the popup window |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| bool | modal | If True then makes the popup will behave like a Modal window... all other windows are non-operational until this one is closed. Default = True | | bool | modal | If True then makes the popup will behave like a Modal window... all other windows are non-operational until this one is closed. Default = True |
@ -16289,7 +16291,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -16334,7 +16336,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -17281,7 +17283,7 @@ Parameter Descriptions:
| (int, int or (int, int),(int,int)) | element_padding | Default amount of padding to put around elements in window (left/right, top/bottom) or ((left, right), (top, bottom)) | | (int, int or (int, int),(int,int)) | element_padding | Default amount of padding to put around elements in window (left/right, top/bottom) or ((left, right), (top, bottom)) |
| bool | auto_size_text | True if the Widget should be shrunk to exactly fit the number of chars to show | | bool | auto_size_text | True if the Widget should be shrunk to exactly fit the number of chars to show |
| bool | auto_size_buttons | True if Buttons in this Window should be sized to exactly fit the text on this. | | bool | auto_size_buttons | True if Buttons in this Window should be sized to exactly fit the text on this. |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| int | border_width | width of border around element | | int | border_width | width of border around element |
| int | slider_border_width | Width of the border around sliders | | int | slider_border_width | Width of the border around sliders |
| str | slider_relief | Type of relief to use for sliders | | str | slider_relief | Type of relief to use for sliders |
@ -17317,7 +17319,7 @@ Parameter Descriptions:
| bool | use_custom_titlebar | If True then a custom titlebar is used instead of the normal system titlebar | | bool | use_custom_titlebar | If True then a custom titlebar is used instead of the normal system titlebar |
| str or None | titlebar_background_color | If custom titlebar indicated by use_custom_titlebar, then use this as background color | | str or None | titlebar_background_color | If custom titlebar indicated by use_custom_titlebar, then use this as background color |
| str or None | titlebar_text_color | If custom titlebar indicated by use_custom_titlebar, then use this as text color | | str or None | titlebar_text_color | If custom titlebar indicated by use_custom_titlebar, then use this as text color |
| str or Tuple[str, int] or None | titlebar_font | If custom titlebar indicated by use_custom_titlebar, then use this as title font | | (str or (str, int[, str]) or None) or None | titlebar_font | If custom titlebar indicated by use_custom_titlebar, then use this as title font |
| bytes or str | titlebar_icon | If custom titlebar indicated by use_custom_titlebar, then use this as the icon (file or base64 bytes) | | bytes or str | titlebar_icon | If custom titlebar indicated by use_custom_titlebar, then use this as the icon (file or base64 bytes) |
| str | user_settings_path | default path for user_settings API calls. Expanded with os.path.expanduser so can contain ~ to represent user | | str | user_settings_path | default path for user_settings API calls. Expanded with os.path.expanduser so can contain ~ to represent user |
| str | pysimplegui_settings_path | default path for the global PySimpleGUI user_settings | | str | pysimplegui_settings_path | default path for the global PySimpleGUI user_settings |
@ -17403,7 +17405,7 @@ Parameter Descriptions:
| (int, int or (int, int),(int,int)) | element_padding | Default amount of padding to put around elements in window (left/right, top/bottom) or ((left, right), (top, bottom)) | | (int, int or (int, int),(int,int)) | element_padding | Default amount of padding to put around elements in window (left/right, top/bottom) or ((left, right), (top, bottom)) |
| bool | auto_size_text | True if the Widget should be shrunk to exactly fit the number of chars to show | | bool | auto_size_text | True if the Widget should be shrunk to exactly fit the number of chars to show |
| bool | auto_size_buttons | True if Buttons in this Window should be sized to exactly fit the text on this. | | bool | auto_size_buttons | True if Buttons in this Window should be sized to exactly fit the text on this. |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| int | border_width | width of border around element | | int | border_width | width of border around element |
| int | slider_border_width | Width of the border around sliders | | int | slider_border_width | Width of the border around sliders |
| str | slider_relief | Type of relief to use for sliders | | str | slider_relief | Type of relief to use for sliders |
@ -17439,7 +17441,7 @@ Parameter Descriptions:
| bool | use_custom_titlebar | If True then a custom titlebar is used instead of the normal system titlebar | | bool | use_custom_titlebar | If True then a custom titlebar is used instead of the normal system titlebar |
| str or None | titlebar_background_color | If custom titlebar indicated by use_custom_titlebar, then use this as background color | | str or None | titlebar_background_color | If custom titlebar indicated by use_custom_titlebar, then use this as background color |
| str or None | titlebar_text_color | If custom titlebar indicated by use_custom_titlebar, then use this as text color | | str or None | titlebar_text_color | If custom titlebar indicated by use_custom_titlebar, then use this as text color |
| str or Tuple[str, int] or None | titlebar_font | If custom titlebar indicated by use_custom_titlebar, then use this as title font | | (str or (str, int[, str]) or None) or None | titlebar_font | If custom titlebar indicated by use_custom_titlebar, then use this as title font |
| bytes or str | titlebar_icon | If custom titlebar indicated by use_custom_titlebar, then use this as the icon (file or base64 bytes) | | bytes or str | titlebar_icon | If custom titlebar indicated by use_custom_titlebar, then use this as the icon (file or base64 bytes) |
| str | user_settings_path | default path for user_settings API calls. Expanded with os.path.expanduser so can contain ~ to represent user | | str | user_settings_path | default path for user_settings API calls. Expanded with os.path.expanduser so can contain ~ to represent user |
| str | pysimplegui_settings_path | default path for the global PySimpleGUI user_settings | | str | pysimplegui_settings_path | default path for the global PySimpleGUI user_settings |

View File

@ -1545,7 +1545,7 @@ Parameter Descriptions:
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True, than can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True, than can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| str or bytes | image | Image to include at the top of the popup window | | str or bytes | image | Image to include at the top of the popup window |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| bool | modal | If True then makes the popup will behave like a Modal window... all other windows are non-operational until this one is closed. Default = True | | bool | modal | If True then makes the popup will behave like a Modal window... all other windows are non-operational until this one is closed. Default = True |
@ -1610,7 +1610,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| (int, int) | location | Location of upper left corner of the window | | (int, int) | location | Location of upper left corner of the window |
@ -1673,7 +1673,7 @@ Parameter Descriptions:
| str | background_color | background color of the entire window | | str | background_color | background color of the entire window |
| str | text_color | color of the message text | | str | text_color | color of the message text |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True can click and drag anywhere in the window to move the window | | bool | grab_anywhere | If True can click and drag anywhere in the window to move the window |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -1742,7 +1742,7 @@ Parameter Descriptions:
| str | background_color | background color of the entire window | | str | background_color | background color of the entire window |
| str | text_color | color of the text | | str | text_color | color of the text |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -1815,7 +1815,7 @@ Parameter Descriptions:
| str | background_color | color of background | | str | background_color | color of background |
| str | text_color | color of the text | | str | text_color | color of the text |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |

View File

@ -86,7 +86,7 @@ Parameter Descriptions:
| (str, str) | highlight_colors | colors to use when button has focus (has focus, does not have focus). None will use colors based on theme. Only used by Linux and only for non-TTK button | | (str, str) | highlight_colors | colors to use when button has focus (has focus, does not have focus). None will use colors based on theme. Only used by Linux and only for non-TTK button |
| (str, str) or str | mouseover_colors | Important difference between Linux & Windows! Linux - Colors when mouse moved over button. Windows - colors when button is pressed. The default is to switch the text and background colors (an inverse effect) | | (str, str) or str | mouseover_colors | Important difference between Linux & Windows! Linux - Colors when mouse moved over button. Windows - colors when button is pressed. The default is to switch the text and background colors (an inverse effect) |
| bool | use_ttk_buttons | True = use ttk buttons. False = do not use ttk buttons. None (Default) = use ttk buttons only if on a Mac and not with button images | | bool | use_ttk_buttons | True = use ttk buttons. False = do not use ttk buttons. None (Default) = use ttk buttons only if on a Mac and not with button images |
| str or (str, int) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | bind_return_key | If True the return key will cause this button to be pressed | | bool | bind_return_key | If True the return key will cause this button to be pressed |
| bool | focus | if True, initial focus will be put on this button | | bool | focus | if True, initial focus will be put on this button |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element (left/right, top/bottom) or ((left, right), (top, bottom)) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element (left/right, top/bottom) or ((left, right), (top, bottom)) |
@ -492,8 +492,8 @@ Parameter Descriptions:
| str | background_color | color of the background | | str | background_color | color of the background |
| str | text_color | element's text color. Can be in #RRGGBB format or a color name "black" | | str | text_color | element's text color. Can be in #RRGGBB format or a color name "black" |
| str | disabled_text_color | color to use for text when item is disabled. Can be in #RRGGBB format or a color name "black" | | str | disabled_text_color | color to use for text when item is disabled. Can be in #RRGGBB format or a color name "black" |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| str or Tuple[str, int] | item_font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike, for the menu items | | (str or (str, int[, str]) or None) | item_font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike, for the menu items |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element (left/right, top/bottom) or ((left, right), (top, bottom)) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element (left/right, top/bottom) or ((left, right), (top, bottom)) |
| bool | key | Used with window.find_element and with return values to uniquely identify this element to uniquely identify this element :param expand_x: If True the element will automatically expand in the X direction to fill available space | | bool | key | Used with window.find_element and with return values to uniquely identify this element to uniquely identify this element :param expand_x: If True the element will automatically expand in the X direction to fill available space |
| bool | expand_y | If True the element will automatically expand in the Y direction to fill available space | | bool | expand_y | If True the element will automatically expand in the Y direction to fill available space |
@ -1108,7 +1108,7 @@ Parameter Descriptions:
| (int, int) or (None, None) | size | (width, height) width = characters-wide, height = rows-high | | (int, int) or (None, None) | size | (width, height) width = characters-wide, height = rows-high |
| (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used | | (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used |
| bool | auto_size_text | if True will size the element to match the length of the text | | bool | auto_size_text | if True will size the element to match the length of the text |
| str or (str, int) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| str | background_color | color of background | | str | background_color | color of background |
| str | text_color | color of the text | | str | text_color | color of the text |
| str | checkbox_color | color of background of the box that has the check mark in it. The checkmark is the same color as the text | | str | checkbox_color | color of background of the box that has the check mark in it. The checkmark is the same color as the text |
@ -1862,7 +1862,7 @@ Parameter Descriptions:
| bool | expand_x | If True the element will automatically expand in the X direction to fill available space | | bool | expand_x | If True the element will automatically expand in the X direction to fill available space |
| bool) :param tooltip: text that will appear when mouse hovers over this element | expand_y | If True the element will automatically expand in the Y direction to fill available space | | bool) :param tooltip: text that will appear when mouse hovers over this element | expand_y | If True the element will automatically expand in the Y direction to fill available space |
| bool | readonly | make element readonly (user can't change). True means user cannot change | | bool | readonly | make element readonly (user can't change). True means user cannot change |
| str or (str, int) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | visible | set visibility state of the element | | bool | visible | set visibility state of the element |
| Any | metadata | User metadata that can be set to ANYTHING | | Any | metadata | User metadata that can be set to ANYTHING |
@ -2087,7 +2087,7 @@ Parameter Descriptions:
| int | set_to_index | change selection to a particular choice starting with index = 0 | | int | set_to_index | change selection to a particular choice starting with index = 0 |
| bool | disabled | disable or enable state of the element | | bool | disabled | disable or enable state of the element |
| bool | readonly | if True make element readonly (user cannot change any choices). Enables the element if either choice are made. | | bool | readonly | if True make element readonly (user cannot change any choices). Enables the element if either choice are made. |
| str or (str, int) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | visible | control visibility of element | | bool | visible | control visibility of element |
| (int, int) | size | width, height. Width = characters-wide, height = NOTE it's the number of entries to show in the list | | (int, int) | size | width, height. Width = characters-wide, height = NOTE it's the number of entries to show in the list |
@ -2173,7 +2173,7 @@ Parameter Descriptions:
| int | set_to_index | change selection to a particular choice starting with index = 0 | | int | set_to_index | change selection to a particular choice starting with index = 0 |
| bool | disabled | disable or enable state of the element | | bool | disabled | disable or enable state of the element |
| bool | readonly | if True make element readonly (user cannot change any choices). Enables the element if either choice are made. | | bool | readonly | if True make element readonly (user cannot change any choices). Enables the element if either choice are made. |
| str or (str, int) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | visible | control visibility of element | | bool | visible | control visibility of element |
| (int, int) | size | width, height. Width = characters-wide, height = NOTE it's the number of entries to show in the list | | (int, int) | size | width, height. Width = characters-wide, height = NOTE it's the number of entries to show in the list |
@ -2219,7 +2219,7 @@ Parameter Descriptions:
| enum | relief | relief style. Values are same as other elements with reliefs. Choices include RELIEF_RAISED RELIEF_SUNKEN RELIEF_FLAT RELIEF_RIDGE RELIEF_GROOVE RELIEF_SOLID | | enum | relief | relief style. Values are same as other elements with reliefs. Choices include RELIEF_RAISED RELIEF_SUNKEN RELIEF_FLAT RELIEF_RIDGE RELIEF_GROOVE RELIEF_SOLID |
| (int, int) | size | (width, height) DO NOT use this. Instead, place your layout in a Column element with the size set on the Column element. Set pad=(0,0) on your Column | | (int, int) | size | (width, height) DO NOT use this. Instead, place your layout in a Column element with the size set on the Column element. Set pad=(0,0) on your Column |
| (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used | | (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element (left/right, top/bottom) or ((left, right), (top, bottom)) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element (left/right, top/bottom) or ((left, right), (top, bottom)) |
| int | border_width | width of border around element in pixels | | int | border_width | width of border around element in pixels |
| str or int or tuple or object | key | Value that uniquely identifies this element from all other elements. Used when Finding an element or in return values. Must be unique to the window | | str or int or tuple or object | key | Value that uniquely identifies this element from all other elements. Used when Finding an element or in return values. Must be unique to the window |
@ -2895,7 +2895,7 @@ Parameter Descriptions:
| Any | text | text to display | | Any | text | text to display |
| (int, int) or Tuple[float, float] | location | location to place first letter | | (int, int) or Tuple[float, float] | location | location to place first letter |
| str | color | text color | | str | color | text color |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| float | angle | Angle 0 to 360 to draw the text. Zero represents horizontal text | | float | angle | Angle 0 to 360 to draw the text. Zero represents horizontal text |
| enum | text_location | "anchor" location for the text. Values start with TEXT_LOCATION_ | | enum | text_location | "anchor" location for the text. Values start with TEXT_LOCATION_ |
| int or None | **RETURN** | id returned from tkinter that you'll need if you want to manipulate the text | int or None | **RETURN** | id returned from tkinter that you'll need if you want to manipulate the text
@ -3420,7 +3420,7 @@ Parameter Descriptions:
| Any | text | text to display | | Any | text | text to display |
| (int, int) or Tuple[float, float] | location | location to place first letter | | (int, int) or Tuple[float, float] | location | location to place first letter |
| str | color | text color | | str | color | text color |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| float | angle | Angle 0 to 360 to draw the text. Zero represents horizontal text | | float | angle | Angle 0 to 360 to draw the text. Zero represents horizontal text |
| enum | text_location | "anchor" location for the text. Values start with TEXT_LOCATION_ | | enum | text_location | "anchor" location for the text. Values start with TEXT_LOCATION_ |
| int or None | **RETURN** | id returned from tkinter that you'll need if you want to manipulate the text | int or None | **RETURN** | id returned from tkinter that you'll need if you want to manipulate the text
@ -4227,7 +4227,7 @@ Parameter Descriptions:
| str | justification | justification for data display. Valid choices - left, right, center | | str | justification | justification for data display. Valid choices - left, right, center |
| str | background_color | color of background in one of the color formats | | str | background_color | color of background in one of the color formats |
| str | text_color | color of the text | | str | text_color | color of the text |
| str or (str, int) | font | specifies the font family, size. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| str | tooltip | text, that will appear when mouse hovers over the element | | str | tooltip | text, that will appear when mouse hovers over the element |
| int | border_width | width of border around element in pixels | | int | border_width | width of border around element in pixels |
| bool | change_submits | * DEPRICATED DO NOT USE. Use `enable_events` instead | | bool | change_submits | * DEPRICATED DO NOT USE. Use `enable_events` instead |
@ -4613,7 +4613,7 @@ Parameter Descriptions:
| (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used | | (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used |
| bool | disabled | set disable state for element | | bool | disabled | set disable state for element |
| bool | auto_size_text | True if element should be the same size as the contents | | bool | auto_size_text | True if element should be the same size as the contents |
| str or (str, int) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_scrollbar | Controls if a scrollbar should be shown. If True, no scrollbar will be shown | | bool | no_scrollbar | Controls if a scrollbar should be shown. If True, no scrollbar will be shown |
| str | background_color | color of background | | str | background_color | color of background |
| str | text_color | color of the text | | str | text_color | color of the text |
@ -5044,7 +5044,7 @@ Parameter Descriptions:
| (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used | | (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used |
| bool | tearoff | if True, then can tear the menu off from the window ans use as a floating window. Very cool effect | | bool | tearoff | if True, then can tear the menu off from the window ans use as a floating window. Very cool effect |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element (left/right, top/bottom) or ((left, right), (top, bottom)) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element (left/right, top/bottom) or ((left, right), (top, bottom)) |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| str or int or tuple or object | key | Value that uniquely identifies this element from all other elements. Used when Finding an element or in return values. Must be unique to the window | | str or int or tuple or object | key | Value that uniquely identifies this element from all other elements. Used when Finding an element or in return values. Must be unique to the window |
| str or int or tuple or object | k | Same as the Key. You can use either k or key. Which ever is set will be used. | | str or int or tuple or object | k | Same as the Key. You can use either k or key. Which ever is set will be used. |
| bool | visible | set visibility state of the element | | bool | visible | set visibility state of the element |
@ -5341,8 +5341,8 @@ Parameter Descriptions:
|--|--|--| |--|--|--|
| List[List[Tuple[str, List[str]]] | menu_definition | The Menu definition specified using lists (docs explain the format) | | List[List[Tuple[str, List[str]]] | menu_definition | The Menu definition specified using lists (docs explain the format) |
| str | disabled_text_color | color to use for text when item is disabled. Can be in #RRGGBB format or a color name "black" | | str | disabled_text_color | color to use for text when item is disabled. Can be in #RRGGBB format or a color name "black" |
| str or Tuple[str, int] | bar_font | specifies the font family, size to be used for the chars in the bar itself | | (str or (str, int[, str]) or None) | bar_font | specifies the font family, size to be used for the chars in the bar itself |
| str or Tuple[str, int] | font | specifies the font family, size to be used for the menu items | | (str or (str, int[, str]) or None) | font | specifies the font family, size to be used for the menu items |
| bool | tearoff | if True, then can tear the menu off from the window ans use as a floating window. Very cool effect | | bool | tearoff | if True, then can tear the menu off from the window ans use as a floating window. Very cool effect |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element (left/right, top/bottom) or ((left, right), (top, bottom)) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element (left/right, top/bottom) or ((left, right), (top, bottom)) |
| str | background_color | color to use for background of the menus that are displayed after making a section. Can be in #RRGGBB format or a color name "black". Defaults to the color of the bar text | | str | background_color | color to use for background of the menus that are displayed after making a section. Can be in #RRGGBB format or a color name "black". Defaults to the color of the bar text |
@ -5390,6 +5390,7 @@ Multiline(default_text = "",
no_scrollbar = False, no_scrollbar = False,
expand_x = False, expand_x = False,
expand_y = False, expand_y = False,
rstrip = True,
right_click_menu = None, right_click_menu = None,
visible = True, visible = True,
metadata = None) metadata = None)
@ -5421,13 +5422,14 @@ Parameter Descriptions:
| bool | reroute_cprint | If True your cprint calls will output to this element. It's the same as you calling cprint_set_output_destination | | bool | reroute_cprint | If True your cprint calls will output to this element. It's the same as you calling cprint_set_output_destination |
| bool | echo_stdout_stderr | If True then output to stdout and stderr will be output to this element AND also to the normal console location | | bool | echo_stdout_stderr | If True then output to stdout and stderr will be output to this element AND also to the normal console location |
| bool | focus | if True initial focus will go to this element | | bool | focus | if True initial focus will go to this element |
| str or (str, int) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element (left/right, top/bottom) or ((left, right), (top, bottom)) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element (left/right, top/bottom) or ((left, right), (top, bottom)) |
| str | tooltip | text, that will appear when mouse hovers over the element | | str | tooltip | text, that will appear when mouse hovers over the element |
| str | justification | text justification. left, right, center. Can use single characters l, r, c. | | str | justification | text justification. left, right, center. Can use single characters l, r, c. |
| bool | no_scrollbar | If False then a scrollbar will be shown (the default) | | bool | no_scrollbar | If False then a scrollbar will be shown (the default) |
| bool | expand_x | If True the element will automatically expand in the X direction to fill available space | | bool | expand_x | If True the element will automatically expand in the X direction to fill available space |
| bool | expand_y | If True the element will automatically expand in the Y direction to fill available space | | bool | expand_y | If True the element will automatically expand in the Y direction to fill available space |
| bool | rstrip | If True the value returned in will have whitespace stripped from the right side |
| List[List[ List[str] or str ]] | right_click_menu | A list of lists of Menu items to show when this element is right clicked. See user docs for exact format. | | List[List[ List[str] or str ]] | right_click_menu | A list of lists of Menu items to show when this element is right clicked. See user docs for exact format. |
| bool | visible | set visibility state of the element | | bool | visible | set visibility state of the element |
| Any | metadata | User metadata that can be set to ANYTHING | | Any | metadata | User metadata that can be set to ANYTHING |
@ -5573,7 +5575,7 @@ Parameter Descriptions:
| str | text_color | The color of the text | | str | text_color | The color of the text |
| str | background_color | The background color of the line | | str | background_color | The background color of the line |
| str | justification | text justification. left, right, center. Can use single characters l, r, c. Sets only for this value, not entire element | | str | justification | text justification. left, right, center. Can use single characters l, r, c. Sets only for this value, not entire element |
| str or (str, int) or (str, int, str) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike for the args being printed | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike for the args being printed |
| str or str, str | colors | Either a tuple or a string that has both the text and background colors. Or just the text color | | str or str, str | colors | Either a tuple or a string that has both the text and background colors. Or just the text color |
| str | t | Color of the text | | str | t | Color of the text |
| str | b | The background color of the line | | str | b | The background color of the line |
@ -5747,7 +5749,7 @@ Parameter Descriptions:
| str | value | new text to display | | str | value | new text to display |
| bool | disabled | disable or enable state of the element | | bool | disabled | disable or enable state of the element |
| bool | append | if True then new value will be added onto the end of the current value. if False then contents will be replaced. | | bool | append | if True then new value will be added onto the end of the current value. if False then contents will be replaced. |
| str or (str, int) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike for the entire element | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike for the entire element |
| str | text_color | color of the text | | str | text_color | color of the text |
| str | background_color | color of background | | str | background_color | color of background |
| str | text_color_for_value | color of the new text being added (the value paramter) | | str | text_color_for_value | color of the new text being added (the value paramter) |
@ -5837,7 +5839,7 @@ Parameter Descriptions:
| str | value | new text to display | | str | value | new text to display |
| bool | disabled | disable or enable state of the element | | bool | disabled | disable or enable state of the element |
| bool | append | if True then new value will be added onto the end of the current value. if False then contents will be replaced. | | bool | append | if True then new value will be added onto the end of the current value. if False then contents will be replaced. |
| str or (str, int) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike for the entire element | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike for the entire element |
| str | text_color | color of the text | | str | text_color | color of the text |
| str | background_color | color of background | | str | background_color | color of background |
| str | text_color_for_value | color of the new text being added (the value paramter) | | str | text_color_for_value | color of the new text being added (the value paramter) |
@ -6221,7 +6223,7 @@ Parameter Descriptions:
| str | text_color | color of the text | | str | text_color | color of the text |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element (left/right, top/bottom) or ((left, right), (top, bottom)) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element (left/right, top/bottom) or ((left, right), (top, bottom)) |
| bool | echo_stdout_stderr | If True then output to stdout will be output to this element AND also to the normal console location | | bool | echo_stdout_stderr | If True then output to stdout will be output to this element AND also to the normal console location |
| str or (str, int) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| str | tooltip | text, that will appear when mouse hovers over the element | | str | tooltip | text, that will appear when mouse hovers over the element |
| str or int or tuple or object | key | Used with window.find_element and with return values to uniquely identify this element to uniquely identify this element | | str or int or tuple or object | key | Used with window.find_element and with return values to uniquely identify this element to uniquely identify this element |
| str or int or tuple or object | k | Same as the Key. You can use either k or key. Which ever is set will be used. | | str or int or tuple or object | k | Same as the Key. You can use either k or key. Which ever is set will be used. |
@ -7208,7 +7210,7 @@ Parameter Descriptions:
| str | background_color | color of background | | str | background_color | color of background |
| str | text_color | color of the text | | str | text_color | color of the text |
| str | circle_color | color of background of the circle that has the dot selection indicator in it | | str | circle_color | color of background of the circle that has the dot selection indicator in it |
| str or (str, int) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| str or int or tuple or object | key | Used with window.find_element and with return values to uniquely identify this element | | str or int or tuple or object | key | Used with window.find_element and with return values to uniquely identify this element |
| str or int or tuple or object | k | Same as the Key. You can use either k or key. Which ever is set will be used. | | str or int or tuple or object | k | Same as the Key. You can use either k or key. Which ever is set will be used. |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element (left/right, top/bottom) or ((left, right), (top, bottom)) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element (left/right, top/bottom) or ((left, right), (top, bottom)) |
@ -7805,7 +7807,7 @@ Parameter Descriptions:
| bool | disabled | set disable state for element | | bool | disabled | set disable state for element |
| (int, int) | size | (w=characters-wide, h=rows-high) | | (int, int) | size | (w=characters-wide, h=rows-high) |
| (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used | | (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| str | background_color | color of slider's background | | str | background_color | color of slider's background |
| str | text_color | color of the slider's text | | str | text_color | color of the slider's text |
| str | trough_color | color of the slider's trough | | str | trough_color | color of the slider's trough |
@ -8128,7 +8130,7 @@ Parameter Descriptions:
| (int, int) or (None, None) | size | (width, height) width = characters-wide, height = rows-high | | (int, int) or (None, None) | size | (width, height) width = characters-wide, height = rows-high |
| (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used | | (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used |
| bool | auto_size_text | if True will size the element to match the length of the text | | bool | auto_size_text | if True will size the element to match the length of the text |
| str or (str, int) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| str | background_color | color of background | | str | background_color | color of background |
| str | text_color | color of the text | | str | text_color | color of the text |
| str or int or tuple or object | key | Used with window.find_element and with return values to uniquely identify this element | | str or int or tuple or object | key | Used with window.find_element and with return values to uniquely identify this element |
@ -8482,7 +8484,7 @@ Parameter Descriptions:
| bool | click_submits | DO NOT USE. Only listed for backwards compat - Use enable_events instead | | bool | click_submits | DO NOT USE. Only listed for backwards compat - Use enable_events instead |
| bool | enable_events | Turns on the element specific events. StatusBar events occur when the bar is clicked | | bool | enable_events | Turns on the element specific events. StatusBar events occur when the bar is clicked |
| enum | relief | relief style. Values are same as progress meter relief values. Can be a constant or a string: `RELIEF_RAISED RELIEF_SUNKEN RELIEF_FLAT RELIEF_RIDGE RELIEF_GROOVE RELIEF_SOLID` | | enum | relief | relief style. Values are same as progress meter relief values. Can be a constant or a string: `RELIEF_RAISED RELIEF_SUNKEN RELIEF_FLAT RELIEF_RIDGE RELIEF_GROOVE RELIEF_SOLID` |
| str or (str, int) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| str | text_color | color of the text | | str | text_color | color of the text |
| str | background_color | color of background | | str | background_color | color of background |
| str | justification | how string should be aligned within space provided by size. Valid choices = `left`, `right`, `center` | | str | justification | how string should be aligned within space provided by size. Valid choices = `left`, `right`, `center` |
@ -8698,7 +8700,7 @@ Parameter Descriptions:
| str | value | new text to show | | str | value | new text to show |
| str | background_color | color of background | | str | background_color | color of background |
| str | text_color | color of the text | | str | text_color | color of the text |
| str or (str, int) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | visible | set visibility state of the element | | bool | visible | set visibility state of the element |
### visible ### visible
@ -8764,7 +8766,7 @@ Parameter Descriptions:
| str | value | new text to show | | str | value | new text to show |
| str | background_color | color of background | | str | background_color | color of background |
| str | text_color | color of the text | | str | text_color | color of the text |
| str or (str, int) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | visible | set visibility state of the element | | bool | visible | set visibility state of the element |
--------- ---------
@ -8802,7 +8804,7 @@ Parameter Descriptions:
| List[List[Element]] | layout | The element layout that will be shown in the tab | | List[List[Element]] | layout | The element layout that will be shown in the tab |
| str | title_color | color of the tab text (note not currently working on tkinter) | | str | title_color | color of the tab text (note not currently working on tkinter) |
| str | background_color | color of background of the entire layout | | str | background_color | color of background of the entire layout |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element (left/right, top/bottom) or ((left, right), (top, bottom)) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element (left/right, top/bottom) or ((left, right), (top, bottom)) |
| bool | disabled | If True button will be created disabled | | bool | disabled | If True button will be created disabled |
| int | border_width | width of border around element in pixels | | int | border_width | width of border around element in pixels |
@ -9196,7 +9198,7 @@ Parameter Descriptions:
| str | selected_title_color | color of tab text when it is selected | | str | selected_title_color | color of tab text when it is selected |
| str | selected_background_color | color of tab when it is selected | | str | selected_background_color | color of tab when it is selected |
| str | background_color | color of background area that tabs are located on | | str | background_color | color of background area that tabs are located on |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | change_submits | * DEPRICATED DO NOT USE. Use `enable_events` instead | | bool | change_submits | * DEPRICATED DO NOT USE. Use `enable_events` instead |
| bool | enable_events | If True then switching tabs will generate an Event | | bool | enable_events | If True then switching tabs will generate an Event |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element (left/right, top/bottom) or ((left, right), (top, bottom)) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element (left/right, top/bottom) or ((left, right), (top, bottom)) |
@ -9585,7 +9587,7 @@ Parameter Descriptions:
| bool | display_row_numbers | if True, the first column of the table will be the row # | | bool | display_row_numbers | if True, the first column of the table will be the row # |
| int | num_rows | The number of rows of the table to display at a time | | int | num_rows | The number of rows of the table to display at a time |
| int | row_height | height of a single row in pixels | | int | row_height | height of a single row in pixels |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| str | justification | 'left', 'right', 'center' are valid choices | | str | justification | 'left', 'right', 'center' are valid choices |
| str | text_color | color of the text | | str | text_color | color of the text |
| str | background_color | color of background | | str | background_color | color of background |
@ -9593,7 +9595,7 @@ Parameter Descriptions:
| str or (str, str) | selected_row_colors | Sets the text color and background color for a selected row. Same format as button colors - tuple ('red', 'yellow') or string 'red on yellow'. Defaults to theme's button color | | str or (str, str) | selected_row_colors | Sets the text color and background color for a selected row. Same format as button colors - tuple ('red', 'yellow') or string 'red on yellow'. Defaults to theme's button color |
| str | header_text_color | sets the text color for the header | | str | header_text_color | sets the text color for the header |
| str | header_background_color | sets the background color for the header | | str | header_background_color | sets the background color for the header |
| str or Tuple[str, int] | header_font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | header_font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| List[Tuple[int, str] or Tuple[Int, str, str]] | row_colors | list of tuples of (row, background color) OR (row, foreground color, background color). Sets the colors of listed rows to the color(s) provided (note the optional foreground color) | | List[Tuple[int, str] or Tuple[Int, str, str]] | row_colors | list of tuples of (row, background color) OR (row, foreground color, background color). Sets the colors of listed rows to the color(s) provided (note the optional foreground color) |
| bool | vertical_scroll_only | if True only the vertical scrollbar will be visible | | bool | vertical_scroll_only | if True only the vertical scrollbar will be visible |
| bool | hide_vertical_scroll | if True vertical scrollbar will be hidden | | bool | hide_vertical_scroll | if True vertical scrollbar will be hidden |
@ -9952,7 +9954,7 @@ Parameter Descriptions:
| bool | click_submits | DO NOT USE. Only listed for backwards compat - Use enable_events instead | | bool | click_submits | DO NOT USE. Only listed for backwards compat - Use enable_events instead |
| bool | enable_events | Turns on the element specific events. Text events happen when the text is clicked | | bool | enable_events | Turns on the element specific events. Text events happen when the text is clicked |
| (str/enum) | relief | relief style around the text. Values are same as progress meter relief values. Should be a constant that is defined at starting with "RELIEF_" - `RELIEF_RAISED, RELIEF_SUNKEN, RELIEF_FLAT, RELIEF_RIDGE, RELIEF_GROOVE, RELIEF_SOLID` | | (str/enum) | relief | relief style around the text. Values are same as progress meter relief values. Should be a constant that is defined at starting with "RELIEF_" - `RELIEF_RAISED, RELIEF_SUNKEN, RELIEF_FLAT, RELIEF_RIDGE, RELIEF_GROOVE, RELIEF_SOLID` |
| (str or (str, int) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| str | text_color | color of the text | | str | text_color | color of the text |
| str | background_color | color of background | | str | background_color | color of background |
| int | border_width | number of pixels for the border (if using a relief) | | int | border_width | number of pixels for the border (if using a relief) |
@ -10163,7 +10165,7 @@ Parameter Descriptions:
| str | value | new text to show | | str | value | new text to show |
| str | background_color | color of background | | str | background_color | color of background |
| str | text_color | color of the text | | str | text_color | color of the text |
| str or (str, int) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | visible | set visibility state of the element | | bool | visible | set visibility state of the element |
### visible ### visible
@ -10239,7 +10241,7 @@ Parameter Descriptions:
| str | value | new text to show | | str | value | new text to show |
| str | background_color | color of background | | str | background_color | color of background |
| str | text_color | color of the text | | str | text_color | color of the text |
| str or (str, int) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | visible | set visibility state of the element | | bool | visible | set visibility state of the element |
--------- ---------
@ -10284,7 +10286,7 @@ Parameter Descriptions:
| str | title | The "title" to show in the titlebar | | str | title | The "title" to show in the titlebar |
| str or None | text_color | Text color for titlebar | | str or None | text_color | Text color for titlebar |
| str or None | background_color | Background color for titlebar | | str or None | background_color | Background color for titlebar |
| str or None | font | Font to be used for the text and the symbols | | (str or (str, int[, str]) or None) | font | Font to be used for the text and the symbols |
| str or int or tuple or object or None | key | Identifies an Element. Should be UNIQUE to this window. | | str or int or tuple or object or None | key | Identifies an Element. Should be UNIQUE to this window. |
| str or int or tuple or object or None | k | Exactly the same as key. Choose one of them to use | | str or int or tuple or object or None | k | Exactly the same as key. Choose one of them to use |
| Column | **RETURN** | A single Column element that has eveything in 1 element | Column | **RETURN** | A single Column element that has eveything in 1 element
@ -10346,14 +10348,14 @@ Parameter Descriptions:
| bool | show_expanded | if True then the tree will be initially shown with all nodes completely expanded | | bool | show_expanded | if True then the tree will be initially shown with all nodes completely expanded |
| bool | change_submits | DO NOT USE. Only listed for backwards compat - Use enable_events instead | | bool | change_submits | DO NOT USE. Only listed for backwards compat - Use enable_events instead |
| bool | enable_events | Turns on the element specific events. Tree events happen when row is clicked | | bool | enable_events | Turns on the element specific events. Tree events happen when row is clicked |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| str | justification | 'left', 'right', 'center' are valid choices | | str | justification | 'left', 'right', 'center' are valid choices |
| str | text_color | color of the text | | str | text_color | color of the text |
| str | background_color | color of background | | str | background_color | color of background |
| str or (str, str) | selected_row_colors | Sets the text color and background color for a selected row. Same format as button colors - tuple ('red', 'yellow') or string 'red on yellow'. Defaults to theme's button color | | str or (str, str) | selected_row_colors | Sets the text color and background color for a selected row. Same format as button colors - tuple ('red', 'yellow') or string 'red on yellow'. Defaults to theme's button color |
| str | header_text_color | sets the text color for the header | | str | header_text_color | sets the text color for the header |
| str | header_background_color | sets the background color for the header | | str | header_background_color | sets the background color for the header |
| str or Tuple[str, int] | header_font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | header_font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| int | num_rows | The number of rows of the table to display at a time | | int | num_rows | The number of rows of the table to display at a time |
| int | row_height | height of a single row in pixels | | int | row_height | height of a single row in pixels |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element (left/right, top/bottom) or ((left, right), (top, bottom)) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element (left/right, top/bottom) or ((left, right), (top, bottom)) |
@ -11283,7 +11285,7 @@ Parameter Descriptions:
| (int, int or (int, int),(int,int)) | element_padding | Default amount of padding to put around elements in window (left/right, top/bottom) or ((left, right), (top, bottom)) | | (int, int or (int, int),(int,int)) | element_padding | Default amount of padding to put around elements in window (left/right, top/bottom) or ((left, right), (top, bottom)) |
| (int, int) | margins | (left/right, top/bottom) Amount of pixels to leave inside the window's frame around the edges before your elements are shown. | | (int, int) | margins | (left/right, top/bottom) Amount of pixels to leave inside the window's frame around the edges before your elements are shown. |
| (str, str) or str | button_color | Default button colors for all buttons in the window | | (str, str) or str | button_color | Default button colors for all buttons in the window |
| str or Tuple[str, int] or None | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| (str, str) | progress_bar_color | (bar color, background color) Sets the default colors for all progress bars in the window | | (str, str) | progress_bar_color | (bar color, background color) Sets the default colors for all progress bars in the window |
| str | background_color | color of background | | str | background_color | color of background |
| int | border_depth | Default border depth (width) for all elements in the window | | int | border_depth | Default border depth (width) for all elements in the window |
@ -11308,7 +11310,7 @@ Parameter Descriptions:
| str | right_click_menu_text_color | Text color for right click menus | | str | right_click_menu_text_color | Text color for right click menus |
| str | right_click_menu_disabled_text_color | Text color for disabled right click menu items | | str | right_click_menu_disabled_text_color | Text color for disabled right click menu items |
| (str, str) or str or Tuple(int, int) or (None, None) | right_click_menu_selected_colors | Text AND background colors for a selected item. Can be a Tuple OR a color string. simplified-button-color-string "foreground on background". Can be a single color if want to set only the background. Normally a tuple, but can be a simplified-dual-color-string "foreground on background". Can be a single color if want to set only the background. | | (str, str) or str or Tuple(int, int) or (None, None) | right_click_menu_selected_colors | Text AND background colors for a selected item. Can be a Tuple OR a color string. simplified-button-color-string "foreground on background". Can be a single color if want to set only the background. Normally a tuple, but can be a simplified-dual-color-string "foreground on background". Can be a single color if want to set only the background. |
| str or Tuple[str, int] | right_click_menu_font | Font for right click menus | | (str or (str, int[, str]) or None) | right_click_menu_font | Font for right click menus |
| bool | right_click_menu_tearoff | If True then all right click menus can be torn off | | bool | right_click_menu_tearoff | If True then all right click menus can be torn off |
| bool | finalize | If True then the Finalize method will be called. Use this rather than chaining .Finalize for cleaner code | | bool | finalize | If True then the Finalize method will be called. Use this rather than chaining .Finalize for cleaner code |
| str | element_justification | All elements in the Window itself will have this justification 'left', 'right', 'center' are valid values | | str | element_justification | All elements in the Window itself will have this justification 'left', 'right', 'center' are valid values |
@ -11318,7 +11320,7 @@ Parameter Descriptions:
| bool | enable_close_attempted_event | If True then the window will not close when "X" clicked. Instead an event WINDOW_CLOSE_ATTEMPTED_EVENT if returned from window.read | | bool | enable_close_attempted_event | If True then the window will not close when "X" clicked. Instead an event WINDOW_CLOSE_ATTEMPTED_EVENT if returned from window.read |
| (str or None) | titlebar_background_color | If custom titlebar indicated by use_custom_titlebar, then use this as background color | | (str or None) | titlebar_background_color | If custom titlebar indicated by use_custom_titlebar, then use this as background color |
| (str or None) | titlebar_text_color | If custom titlebar indicated by use_custom_titlebar, then use this as text color | | (str or None) | titlebar_text_color | If custom titlebar indicated by use_custom_titlebar, then use this as text color |
| (str or Tuple[str, int] or None) | titlebar_font | If custom titlebar indicated by use_custom_titlebar, then use this as title font | | (str or (str, int[, str]) or None) | titlebar_font | If custom titlebar indicated by use_custom_titlebar, then use this as title font |
| (bytes or str) | titlebar_icon | If custom titlebar indicated by use_custom_titlebar, then use this as the icon (file or base64 bytes) | | (bytes or str) | titlebar_icon | If custom titlebar indicated by use_custom_titlebar, then use this as the icon (file or base64 bytes) |
| bool | use_custom_titlebar | If True, then a custom titlebar will be used instead of the normal titlebar | | bool | use_custom_titlebar | If True, then a custom titlebar will be used instead of the normal titlebar |
| Any | metadata | User metadata that can be set to ANYTHING | | Any | metadata | User metadata that can be set to ANYTHING |
@ -12853,7 +12855,7 @@ Parameter Descriptions:
| bool | auto_size_button | True if button size is determined by button text | | bool | auto_size_button | True if button size is determined by button text |
| (str, str) or str | button_color | button color (foreground, background) | | (str, str) or str | button_color | button color (foreground, background) |
| bool | disabled | set disable state for element (Default = False) | | bool | disabled | set disable state for element (Default = False) |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event | | bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event |
| bool | focus | if focus should be set to this | | bool | focus | if focus should be set to this |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) |
@ -12897,7 +12899,7 @@ Parameter Descriptions:
| (str, str) or str | button_color | button color (foreground, background) | | (str, str) or str | button_color | button color (foreground, background) |
| bool | disabled | set disable state for element (Default = False) | | bool | disabled | set disable state for element (Default = False) |
| str | tooltip | text, that will appear when mouse hovers over the element | | str | tooltip | text, that will appear when mouse hovers over the element |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event | | bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event |
| | focus | if focus should be set to this | | | focus | if focus should be set to this |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) |
@ -12946,7 +12948,7 @@ Parameter Descriptions:
| bool | auto_size_button | True if button size is determined by button text | | bool | auto_size_button | True if button size is determined by button text |
| (str, str) or str | button_color | button color (foreground, background) | | (str, str) or str | button_color | button color (foreground, background) |
| bool | disabled | set disable state for element (Default = False) | | bool | disabled | set disable state for element (Default = False) |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | bind_return_key | If True, then the return key will cause a the Listbox to generate an event | | bool | bind_return_key | If True, then the return key will cause a the Listbox to generate an event |
| bool | focus | Determines if initial focus should go to this element. | | bool | focus | Determines if initial focus should go to this element. |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) |
@ -12982,7 +12984,7 @@ Parameter Descriptions:
| bool | auto_size_button | True if button size is determined by button text | | bool | auto_size_button | True if button size is determined by button text |
| (str, str) or str | button_color | button color (foreground, background) | | (str, str) or str | button_color | button color (foreground, background) |
| bool | disabled | set disable state for element (Default = False) | | bool | disabled | set disable state for element (Default = False) |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| str | tooltip | text, that will appear when mouse hovers over the element | | str | tooltip | text, that will appear when mouse hovers over the element |
| bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event | | bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event |
| | focus | if focus should be set to this | | | focus | if focus should be set to this |
@ -13029,7 +13031,7 @@ Parameter Descriptions:
| (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used | | (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used |
| bool | auto_size_button | True if button size is determined by button text | | bool | auto_size_button | True if button size is determined by button text |
| (str, str) or str | button_color | button color (foreground, background) | | (str, str) or str | button_color | button color (foreground, background) |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | disabled | set disable state for element (Default = False) | | bool | disabled | set disable state for element (Default = False) |
| bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event | | bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event |
| bool | focus | if focus should be set to this | | bool | focus | if focus should be set to this |
@ -13067,7 +13069,7 @@ Parameter Descriptions:
| (str, str) or str | button_color | button color (foreground, background) | | (str, str) or str | button_color | button color (foreground, background) |
| bool | disabled | set disable state for element (Default = False) | | bool | disabled | set disable state for element (Default = False) |
| str | tooltip | text, that will appear when mouse hovers over the element | | str | tooltip | text, that will appear when mouse hovers over the element |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event | | bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event |
| | focus | if focus should be set to this | | | focus | if focus should be set to this |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) |
@ -13111,7 +13113,7 @@ Parameter Descriptions:
| (str, str) or str | button_color | button color (foreground, background) | | (str, str) or str | button_color | button color (foreground, background) |
| bool | change_submits | If True, pressing Enter key submits window (Default = False) | | bool | change_submits | If True, pressing Enter key submits window (Default = False) |
| bool | enable_events | Turns on the element specific events.(Default = False) | | bool | enable_events | Turns on the element specific events.(Default = False) |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | disabled | set disable state for element (Default = False) | | bool | disabled | set disable state for element (Default = False) |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) |
| str or int or tuple or object | key | key for uniquely identify this element (for window.find_element) | | str or int or tuple or object | key | key for uniquely identify this element (for window.find_element) |
@ -13157,7 +13159,7 @@ Parameter Descriptions:
| (str, str) or str | button_color | button color (foreground, background) | | (str, str) or str | button_color | button color (foreground, background) |
| bool | change_submits | If True, pressing Enter key submits window (Default = False) | | bool | change_submits | If True, pressing Enter key submits window (Default = False) |
| bool | enable_events | Turns on the element specific events.(Default = False) | | bool | enable_events | Turns on the element specific events.(Default = False) |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) |
| str or int or tuple or object | key | key for uniquely identify this element (for window.find_element) | | str or int or tuple or object | key | key for uniquely identify this element (for window.find_element) |
| str or int or tuple or object | k | Same as the Key. You can use either k or key. Which ever is set will be used. | | str or int or tuple or object | k | Same as the Key. You can use either k or key. Which ever is set will be used. |
@ -13203,7 +13205,7 @@ Parameter Descriptions:
| (str, str) or str | button_color | button color (foreground, background) | | (str, str) or str | button_color | button color (foreground, background) |
| bool | change_submits | If True, pressing Enter key submits window (Default = False) | | bool | change_submits | If True, pressing Enter key submits window (Default = False) |
| bool | enable_events | Turns on the element specific events.(Default = False) | | bool | enable_events | Turns on the element specific events.(Default = False) |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) |
| str or int or tuple or object | key | key for uniquely identify this element (for window.find_element) | | str or int or tuple or object | key | key for uniquely identify this element (for window.find_element) |
| str or int or tuple or object | k | Same as the Key. You can use either k or key. Which ever is set will be used. | | str or int or tuple or object | k | Same as the Key. You can use either k or key. Which ever is set will be used. |
@ -13245,7 +13247,7 @@ Parameter Descriptions:
| bool | disabled | set disable state for element (Default = False) | | bool | disabled | set disable state for element (Default = False) |
| bool | change_submits | If True, pressing Enter key submits window (Default = False) | | bool | change_submits | If True, pressing Enter key submits window (Default = False) |
| bool | enable_events | Turns on the element specific events.(Default = False) | | bool | enable_events | Turns on the element specific events.(Default = False) |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element |
| str or int or tuple or object | key | Used with window.find_element and with return values to uniquely identify this element | | str or int or tuple or object | key | Used with window.find_element and with return values to uniquely identify this element |
| str or int or tuple or object | k | Same as the Key. You can use either k or key. Which ever is set will be used. | | str or int or tuple or object | k | Same as the Key. You can use either k or key. Which ever is set will be used. |
@ -13279,7 +13281,7 @@ Parameter Descriptions:
| bool | auto_size_button | True if button size is determined by button text | | bool | auto_size_button | True if button size is determined by button text |
| (str, str) or str | button_color | button color (foreground, background) | | (str, str) or str | button_color | button color (foreground, background) |
| bool | disabled | set disable state for element (Default = False) | | bool | disabled | set disable state for element (Default = False) |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| str | tooltip | text, that will appear when mouse hovers over the element | | str | tooltip | text, that will appear when mouse hovers over the element |
| bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event | | bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event |
| | focus | if focus should be set to this | | | focus | if focus should be set to this |
@ -13317,7 +13319,7 @@ Parameter Descriptions:
| (str, str) or str | button_color | button color (foreground, background) | | (str, str) or str | button_color | button color (foreground, background) |
| bool | disabled | set disable state for element (Default = False) | | bool | disabled | set disable state for element (Default = False) |
| str | tooltip | text, that will appear when mouse hovers over the element | | str | tooltip | text, that will appear when mouse hovers over the element |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event | | bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event |
| | focus | if focus should be set to this | | | focus | if focus should be set to this |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) |
@ -13355,7 +13357,7 @@ Parameter Descriptions:
| bool | disabled | set disable state for element (Default = False) | | bool | disabled | set disable state for element (Default = False) |
| bool | bind_return_key | (Default = True) If True, then the return key will cause a the Listbox to generate an event | | bool | bind_return_key | (Default = True) If True, then the return key will cause a the Listbox to generate an event |
| str | tooltip | text, that will appear when mouse hovers over the element | | str | tooltip | text, that will appear when mouse hovers over the element |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| idk_yetReally | focus | if focus should be set to this | | idk_yetReally | focus | if focus should be set to this |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) |
| str or int or tuple or object | key | key for uniquely identify this element (for window.find_element) | | str or int or tuple or object | key | key for uniquely identify this element (for window.find_element) |
@ -13420,7 +13422,7 @@ Parameter Descriptions:
| bool | disabled | set disable state for element (Default = False) | | bool | disabled | set disable state for element (Default = False) |
| bool | bind_return_key | (Default = True) If True, then the return key will cause a the Listbox to generate an event | | bool | bind_return_key | (Default = True) If True, then the return key will cause a the Listbox to generate an event |
| str | tooltip | text, that will appear when mouse hovers over the element | | str | tooltip | text, that will appear when mouse hovers over the element |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| idk_yetReally | focus | if focus should be set to this | | idk_yetReally | focus | if focus should be set to this |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) |
| str or int or tuple or object | key | key for uniquely identify this element (for window.find_element) | | str or int or tuple or object | key | key for uniquely identify this element (for window.find_element) |
@ -13457,7 +13459,7 @@ Parameter Descriptions:
| bool | disabled | set disable state for element (Default = False) | | bool | disabled | set disable state for element (Default = False) |
| bool | bind_return_key | (Default = True) If True, then the return key will cause a the Listbox to generate an event | | bool | bind_return_key | (Default = True) If True, then the return key will cause a the Listbox to generate an event |
| str | tooltip | text, that will appear when mouse hovers over the element | | str | tooltip | text, that will appear when mouse hovers over the element |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| idk_yetReally | focus | if focus should be set to this | | idk_yetReally | focus | if focus should be set to this |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) |
| str or int or tuple or object | key | key for uniquely identify this element (for window.find_element) | | str or int or tuple or object | key | key for uniquely identify this element (for window.find_element) |
@ -13493,7 +13495,7 @@ Parameter Descriptions:
| (str, str) or str | button_color | button color (foreground, background) | | (str, str) or str | button_color | button color (foreground, background) |
| bool | disabled | set disable state for element (Default = False) | | bool | disabled | set disable state for element (Default = False) |
| str | tooltip | text, that will appear when mouse hovers over the element | | str | tooltip | text, that will appear when mouse hovers over the element |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event | | bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event |
| | focus | if focus should be set to this | | | focus | if focus should be set to this |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) |
@ -13538,7 +13540,7 @@ Parameter Descriptions:
| (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used | | (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used |
| bool | auto_size_button | True if button size is determined by button text | | bool | auto_size_button | True if button size is determined by button text |
| (str, str) or str | button_color | button color (foreground, background) | | (str, str) or str | button_color | button color (foreground, background) |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | disabled | set disable state for element (Default = False) | | bool | disabled | set disable state for element (Default = False) |
| bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event | | bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event |
| bool | focus | if focus should be set to this | | bool | focus | if focus should be set to this |
@ -13578,7 +13580,7 @@ Parameter Descriptions:
| bool | bind_return_key | (Default = True) If True, then the return key will cause a the Listbox to generate an event | | bool | bind_return_key | (Default = True) If True, then the return key will cause a the Listbox to generate an event |
| bool | disabled | set disable state for element (Default = False) | | bool | disabled | set disable state for element (Default = False) |
| str | tooltip | text, that will appear when mouse hovers over the element | | str | tooltip | text, that will appear when mouse hovers over the element |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| idk_yetReally | focus | if focus should be set to this | | idk_yetReally | focus | if focus should be set to this |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) |
| str or int or tuple or object | key | key for uniquely identify this element (for window.find_element) | | str or int or tuple or object | key | key for uniquely identify this element (for window.find_element) |
@ -13624,7 +13626,7 @@ Parameter Descriptions:
| (str, str) or str | button_color | button color (foreground, background) | | (str, str) or str | button_color | button color (foreground, background) |
| bool | change_submits | If True, pressing Enter key submits window (Default = False) | | bool | change_submits | If True, pressing Enter key submits window (Default = False) |
| bool | enable_events | Turns on the element specific events.(Default = False) | | bool | enable_events | Turns on the element specific events.(Default = False) |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) |
| str or int or tuple or object | key | key for uniquely identify this element (for window.find_element) | | str or int or tuple or object | key | key for uniquely identify this element (for window.find_element) |
| str or int or tuple or object | k | Same as the Key. You can use either k or key. Which ever is set will be used. | | str or int or tuple or object | k | Same as the Key. You can use either k or key. Which ever is set will be used. |
@ -13660,7 +13662,7 @@ Parameter Descriptions:
| bool | disabled | set disable state for element (Default = False) | | bool | disabled | set disable state for element (Default = False) |
| bool | bind_return_key | (Default = True) If True, then the return key will cause a the Listbox to generate an event | | bool | bind_return_key | (Default = True) If True, then the return key will cause a the Listbox to generate an event |
| str | tooltip | text, that will appear when mouse hovers over the element | | str | tooltip | text, that will appear when mouse hovers over the element |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| idk_yetReally | focus | if focus should be set to this | | idk_yetReally | focus | if focus should be set to this |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) |
| str or int or tuple or object | key | key for uniquely identify this element (for window.find_element) | | str or int or tuple or object | key | key for uniquely identify this element (for window.find_element) |
@ -13696,7 +13698,7 @@ Parameter Descriptions:
| (str, str) or str | button_color | button color (foreground, background) | | (str, str) or str | button_color | button color (foreground, background) |
| bool | disabled | set disable state for element (Default = False) | | bool | disabled | set disable state for element (Default = False) |
| str | tooltip | text, that will appear when mouse hovers over the element | | str | tooltip | text, that will appear when mouse hovers over the element |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | bind_return_key | (Default = True) If True, then the return key will cause a the Listbox to generate an event | | bool | bind_return_key | (Default = True) If True, then the return key will cause a the Listbox to generate an event |
| | focus | if focus should be set to this | | | focus | if focus should be set to this |
| (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) | | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) | pad | Amount of padding to put around element in pixels (left/right, top/bottom) |
@ -13746,7 +13748,7 @@ Parameter Descriptions:
| (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used | | (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used |
| bool | auto_size_button | True if button size is determined by button text | | bool | auto_size_button | True if button size is determined by button text |
| (str, str) or str | button_color | button color (foreground, background) | | (str, str) or str | button_color | button color (foreground, background) |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event | | bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event |
| bool | disabled | set disable state for element (Default = False) | | bool | disabled | set disable state for element (Default = False) |
| idk_yetReally | focus | if focus should be set to this | | idk_yetReally | focus | if focus should be set to this |
@ -13793,7 +13795,7 @@ Parameter Descriptions:
| (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used | | (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used |
| bool | auto_size_button | True if button size is determined by button text | | bool | auto_size_button | True if button size is determined by button text |
| (str, str) or str | button_color | button color (foreground, background) | | (str, str) or str | button_color | button color (foreground, background) |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event | | bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event |
| bool | disabled | set disable state for element (Default = False) | | bool | disabled | set disable state for element (Default = False) |
| idk_yetReally | focus | if focus should be set to this | | idk_yetReally | focus | if focus should be set to this |
@ -13840,7 +13842,7 @@ Parameter Descriptions:
| (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used | | (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used |
| bool | auto_size_button | True if button size is determined by button text | | bool | auto_size_button | True if button size is determined by button text |
| (str, str) or str | button_color | button color (foreground, background) | | (str, str) or str | button_color | button color (foreground, background) |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event | | bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event |
| bool | disabled | set disable state for element (Default = False) | | bool | disabled | set disable state for element (Default = False) |
| idk_yetReally | focus | if focus should be set to this | | idk_yetReally | focus | if focus should be set to this |
@ -13886,7 +13888,7 @@ Parameter Descriptions:
| (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used | | (int, int) or (None, None) | s | Same as size parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, size will be used |
| bool | auto_size_button | True if button size is determined by button text | | bool | auto_size_button | True if button size is determined by button text |
| (str, str) or str | button_color | button color (foreground, background) | | (str, str) or str | button_color | button color (foreground, background) |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event | | bool | bind_return_key | (Default = False) If True, then the return key will cause a the Listbox to generate an event |
| bool | disabled | set disable state for element (Default = False) | | bool | disabled | set disable state for element (Default = False) |
| idk_yetReally | focus | if focus should be set to this | | idk_yetReally | focus | if focus should be set to this |
@ -13937,7 +13939,7 @@ Parameter Descriptions:
| str | end | end character | | str | end | end character |
| str | sep | separator character | | str | sep | separator character |
| (int, int) | location | Location of upper left corner of the window | | (int, int) | location | Location of upper left corner of the window |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | no_button | don't show button | | bool | no_button | don't show button |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
@ -13997,7 +13999,7 @@ Parameter Descriptions:
| str | end | end character | | str | end | end character |
| str | sep | separator character | | str | sep | separator character |
| (int, int) | location | Location of upper left corner of the window | | (int, int) | location | Location of upper left corner of the window |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | no_button | don't show button | | bool | no_button | don't show button |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
@ -14051,7 +14053,7 @@ Parameter Descriptions:
| str | end | end character | | str | end | end character |
| str | sep | separator character | | str | sep | separator character |
| (int, int) | location | Location of upper left corner of the window | | (int, int) | location | Location of upper left corner of the window |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | no_button | don't show button | | bool | no_button | don't show button |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
@ -14111,7 +14113,7 @@ Parameter Descriptions:
| str | end | end character | | str | end | end character |
| str | sep | separator character | | str | sep | separator character |
| (int, int) | location | Location of upper left corner of the window | | (int, int) | location | Location of upper left corner of the window |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | no_button | don't show button | | bool | no_button | don't show button |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
@ -14171,7 +14173,7 @@ Parameter Descriptions:
| str | end | end character | | str | end | end character |
| str | sep | separator character | | str | sep | separator character |
| (int, int) | location | Location of upper left corner of the window | | (int, int) | location | Location of upper left corner of the window |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | no_button | don't show button | | bool | no_button | don't show button |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
@ -14244,7 +14246,7 @@ Parameter Descriptions:
|--|--|--| |--|--|--|
| Any | *args | stuff to output | | Any | *args | stuff to output |
| str | text_color | Color of the text | | str | text_color | Color of the text |
| str or (str, int) or (str, int, str) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike for the value being updated | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike for the value being updated |
| str | background_color | The background color of the line | | str | background_color | The background color of the line |
| str or str, str | colors | Either a tuple or a string that has both the text and background colors "text on background" or just the text color | | str or str, str | colors | Either a tuple or a string that has both the text and background colors "text on background" or just the text color |
| str | t | Color of the text | | str | t | Color of the text |
@ -14507,7 +14509,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -14552,7 +14554,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -14597,7 +14599,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -14691,7 +14693,7 @@ Parameter Descriptions:
| str | background_color | background color of the entire window | | str | background_color | background color of the entire window |
| str | text_color | color of the text | | str | text_color | color of the text |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -14741,7 +14743,7 @@ Parameter Descriptions:
| str | background_color | color of background | | str | background_color | color of background |
| str | text_color | color of the text | | str | text_color | color of the text |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -14787,7 +14789,7 @@ Parameter Descriptions:
| str | background_color | background color of the entire window | | str | background_color | background color of the entire window |
| str | text_color | color of the message text | | str | text_color | color of the message text |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True can click and drag anywhere in the window to move the window | | bool | grab_anywhere | If True can click and drag anywhere in the window to move the window |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -14852,7 +14854,7 @@ Parameter Descriptions:
| bool | non_blocking | If True then will immediately return from the function without waiting for the user's input. (Default = False) | | bool | non_blocking | If True then will immediately return from the function without waiting for the user's input. (Default = False) |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True, than can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True, than can grab anywhere to move the window (Default = False) |
| (int, int) | location | Location of upper left corner of the window | | (int, int) | location | Location of upper left corner of the window |
@ -14897,7 +14899,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
| (int, int) | location | Location of upper left corner of the window | | (int, int) | location | Location of upper left corner of the window |
@ -14943,7 +14945,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| (int, int) | location | Location of upper left corner of the window | | (int, int) | location | Location of upper left corner of the window |
@ -15016,7 +15018,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -15061,7 +15063,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -15108,7 +15110,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -15156,7 +15158,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| (int, int) | location | Location of upper left corner of the window | | (int, int) | location | Location of upper left corner of the window |
@ -15207,7 +15209,7 @@ Parameter Descriptions:
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True, than can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True, than can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| str or bytes | image | Image to include at the top of the popup window | | str or bytes | image | Image to include at the top of the popup window |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| bool | modal | If True then makes the popup will behave like a Modal window... all other windows are non-operational until this one is closed. Default = True | | bool | modal | If True then makes the popup will behave like a Modal window... all other windows are non-operational until this one is closed. Default = True |
@ -15250,7 +15252,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -15304,7 +15306,7 @@ Parameter Descriptions:
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True, than can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True, than can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| str or bytes | image | Image to include at the top of the popup window | | str or bytes | image | Image to include at the top of the popup window |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| bool | modal | If True then makes the popup will behave like a Modal window... all other windows are non-operational until this one is closed. Default = True | | bool | modal | If True then makes the popup will behave like a Modal window... all other windows are non-operational until this one is closed. Default = True |
@ -15354,7 +15356,7 @@ Parameter Descriptions:
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True, than can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True, than can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| str or bytes | image | Image to include at the top of the popup window | | str or bytes | image | Image to include at the top of the popup window |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| bool | modal | If True then makes the popup will behave like a Modal window... all other windows are non-operational until this one is closed. Default = True | | bool | modal | If True then makes the popup will behave like a Modal window... all other windows are non-operational until this one is closed. Default = True |
@ -15498,7 +15500,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
| (int, int) | location | Location of upper left corner of the window | | (int, int) | location | Location of upper left corner of the window |
@ -15544,7 +15546,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -15589,7 +15591,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -15634,7 +15636,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -15689,7 +15691,7 @@ Parameter Descriptions:
| str | background_color | background color of the entire window | | str | background_color | background color of the entire window |
| str | text_color | color of the text | | str | text_color | color of the text |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -15739,7 +15741,7 @@ Parameter Descriptions:
| str | background_color | color of background | | str | background_color | color of background |
| str | text_color | color of the text | | str | text_color | color of the text |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -15785,7 +15787,7 @@ Parameter Descriptions:
| str | background_color | background color of the entire window | | str | background_color | background color of the entire window |
| str | text_color | color of the message text | | str | text_color | color of the message text |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True can click and drag anywhere in the window to move the window | | bool | grab_anywhere | If True can click and drag anywhere in the window to move the window |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -15831,7 +15833,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
| (int, int) | location | Location of upper left corner of the window | | (int, int) | location | Location of upper left corner of the window |
@ -15873,7 +15875,7 @@ Parameter Descriptions:
| bool | non_blocking | If True then will immediately return from the function without waiting for the user's input. (Default = False) | | bool | non_blocking | If True then will immediately return from the function without waiting for the user's input. (Default = False) |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True, than can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True, than can grab anywhere to move the window (Default = False) |
| (int, int) | location | Location of upper left corner of the window | | (int, int) | location | Location of upper left corner of the window |
@ -15918,7 +15920,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
| (int, int) | location | Location of upper left corner of the window | | (int, int) | location | Location of upper left corner of the window |
@ -15963,7 +15965,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
| (int, int) | location | Location of upper left corner of the window | | (int, int) | location | Location of upper left corner of the window |
@ -16009,7 +16011,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| (int, int) | location | Location of upper left corner of the window | | (int, int) | location | Location of upper left corner of the window |
@ -16053,7 +16055,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -16098,7 +16100,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -16145,7 +16147,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -16193,7 +16195,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| (int, int) | location | Location of upper left corner of the window | | (int, int) | location | Location of upper left corner of the window |
@ -16244,7 +16246,7 @@ Parameter Descriptions:
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True, than can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True, than can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| str or bytes | image | Image to include at the top of the popup window | | str or bytes | image | Image to include at the top of the popup window |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| bool | modal | If True then makes the popup will behave like a Modal window... all other windows are non-operational until this one is closed. Default = True | | bool | modal | If True then makes the popup will behave like a Modal window... all other windows are non-operational until this one is closed. Default = True |
@ -16289,7 +16291,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -16334,7 +16336,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -17281,7 +17283,7 @@ Parameter Descriptions:
| (int, int or (int, int),(int,int)) | element_padding | Default amount of padding to put around elements in window (left/right, top/bottom) or ((left, right), (top, bottom)) | | (int, int or (int, int),(int,int)) | element_padding | Default amount of padding to put around elements in window (left/right, top/bottom) or ((left, right), (top, bottom)) |
| bool | auto_size_text | True if the Widget should be shrunk to exactly fit the number of chars to show | | bool | auto_size_text | True if the Widget should be shrunk to exactly fit the number of chars to show |
| bool | auto_size_buttons | True if Buttons in this Window should be sized to exactly fit the text on this. | | bool | auto_size_buttons | True if Buttons in this Window should be sized to exactly fit the text on this. |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| int | border_width | width of border around element | | int | border_width | width of border around element |
| int | slider_border_width | Width of the border around sliders | | int | slider_border_width | Width of the border around sliders |
| str | slider_relief | Type of relief to use for sliders | | str | slider_relief | Type of relief to use for sliders |
@ -17317,7 +17319,7 @@ Parameter Descriptions:
| bool | use_custom_titlebar | If True then a custom titlebar is used instead of the normal system titlebar | | bool | use_custom_titlebar | If True then a custom titlebar is used instead of the normal system titlebar |
| str or None | titlebar_background_color | If custom titlebar indicated by use_custom_titlebar, then use this as background color | | str or None | titlebar_background_color | If custom titlebar indicated by use_custom_titlebar, then use this as background color |
| str or None | titlebar_text_color | If custom titlebar indicated by use_custom_titlebar, then use this as text color | | str or None | titlebar_text_color | If custom titlebar indicated by use_custom_titlebar, then use this as text color |
| str or Tuple[str, int] or None | titlebar_font | If custom titlebar indicated by use_custom_titlebar, then use this as title font | | (str or (str, int[, str]) or None) or None | titlebar_font | If custom titlebar indicated by use_custom_titlebar, then use this as title font |
| bytes or str | titlebar_icon | If custom titlebar indicated by use_custom_titlebar, then use this as the icon (file or base64 bytes) | | bytes or str | titlebar_icon | If custom titlebar indicated by use_custom_titlebar, then use this as the icon (file or base64 bytes) |
| str | user_settings_path | default path for user_settings API calls. Expanded with os.path.expanduser so can contain ~ to represent user | | str | user_settings_path | default path for user_settings API calls. Expanded with os.path.expanduser so can contain ~ to represent user |
| str | pysimplegui_settings_path | default path for the global PySimpleGUI user_settings | | str | pysimplegui_settings_path | default path for the global PySimpleGUI user_settings |
@ -17403,7 +17405,7 @@ Parameter Descriptions:
| (int, int or (int, int),(int,int)) | element_padding | Default amount of padding to put around elements in window (left/right, top/bottom) or ((left, right), (top, bottom)) | | (int, int or (int, int),(int,int)) | element_padding | Default amount of padding to put around elements in window (left/right, top/bottom) or ((left, right), (top, bottom)) |
| bool | auto_size_text | True if the Widget should be shrunk to exactly fit the number of chars to show | | bool | auto_size_text | True if the Widget should be shrunk to exactly fit the number of chars to show |
| bool | auto_size_buttons | True if Buttons in this Window should be sized to exactly fit the text on this. | | bool | auto_size_buttons | True if Buttons in this Window should be sized to exactly fit the text on this. |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| int | border_width | width of border around element | | int | border_width | width of border around element |
| int | slider_border_width | Width of the border around sliders | | int | slider_border_width | Width of the border around sliders |
| str | slider_relief | Type of relief to use for sliders | | str | slider_relief | Type of relief to use for sliders |
@ -17439,7 +17441,7 @@ Parameter Descriptions:
| bool | use_custom_titlebar | If True then a custom titlebar is used instead of the normal system titlebar | | bool | use_custom_titlebar | If True then a custom titlebar is used instead of the normal system titlebar |
| str or None | titlebar_background_color | If custom titlebar indicated by use_custom_titlebar, then use this as background color | | str or None | titlebar_background_color | If custom titlebar indicated by use_custom_titlebar, then use this as background color |
| str or None | titlebar_text_color | If custom titlebar indicated by use_custom_titlebar, then use this as text color | | str or None | titlebar_text_color | If custom titlebar indicated by use_custom_titlebar, then use this as text color |
| str or Tuple[str, int] or None | titlebar_font | If custom titlebar indicated by use_custom_titlebar, then use this as title font | | (str or (str, int[, str]) or None) or None | titlebar_font | If custom titlebar indicated by use_custom_titlebar, then use this as title font |
| bytes or str | titlebar_icon | If custom titlebar indicated by use_custom_titlebar, then use this as the icon (file or base64 bytes) | | bytes or str | titlebar_icon | If custom titlebar indicated by use_custom_titlebar, then use this as the icon (file or base64 bytes) |
| str | user_settings_path | default path for user_settings API calls. Expanded with os.path.expanduser so can contain ~ to represent user | | str | user_settings_path | default path for user_settings API calls. Expanded with os.path.expanduser so can contain ~ to represent user |
| str | pysimplegui_settings_path | default path for the global PySimpleGUI user_settings | | str | pysimplegui_settings_path | default path for the global PySimpleGUI user_settings |

View File

@ -1545,7 +1545,7 @@ Parameter Descriptions:
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True, than can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True, than can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| str or bytes | image | Image to include at the top of the popup window | | str or bytes | image | Image to include at the top of the popup window |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| bool | modal | If True then makes the popup will behave like a Modal window... all other windows are non-operational until this one is closed. Default = True | | bool | modal | If True then makes the popup will behave like a Modal window... all other windows are non-operational until this one is closed. Default = True |
@ -1610,7 +1610,7 @@ Parameter Descriptions:
| bool | non_blocking | if True the call will immediately return rather than waiting on user input | | bool | non_blocking | if True the call will immediately return rather than waiting on user input |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| int | line_width | Width of lines in characters | | int | line_width | Width of lines in characters |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| (int, int) | location | Location of upper left corner of the window | | (int, int) | location | Location of upper left corner of the window |
@ -1673,7 +1673,7 @@ Parameter Descriptions:
| str | background_color | background color of the entire window | | str | background_color | background color of the entire window |
| str | text_color | color of the message text | | str | text_color | color of the message text |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True can click and drag anywhere in the window to move the window | | bool | grab_anywhere | If True can click and drag anywhere in the window to move the window |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -1742,7 +1742,7 @@ Parameter Descriptions:
| str | background_color | background color of the entire window | | str | background_color | background color of the entire window |
| str | text_color | color of the text | | str | text_color | color of the text |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |
@ -1815,7 +1815,7 @@ Parameter Descriptions:
| str | background_color | color of background | | str | background_color | color of background |
| str | text_color | color of the text | | str | text_color | color of the text |
| bytes or str | icon | filename or base64 string to be used for the window's icon | | bytes or str | icon | filename or base64 string to be used for the window's icon |
| str or Tuple[str, int] | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike | | (str or (str, int[, str]) or None) | font | specifies the font family, size, etc. Tuple or Single string format 'name size styles'. Styles: italic * roman bold normal underline overstrike |
| bool | no_titlebar | If True no titlebar will be shown | | bool | no_titlebar | If True no titlebar will be shown |
| bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) | | bool | grab_anywhere | If True: can grab anywhere to move the window (Default = False) |
| bool | keep_on_top | If True the window will remain above all current windows | | bool | keep_on_top | If True the window will remain above all current windows |