Added __call__ method to Elements. WOW! Removed many of the __del__ methods. Hope it doesn't BREAK BADLY!
This commit is contained in:
parent
a1743c84c7
commit
593a64225c
281
PySimpleGUI.py
281
PySimpleGUI.py
|
@ -1,5 +1,5 @@
|
||||||
#!/usr/bin/python3
|
#!/usr/bin/python3
|
||||||
version = __version__ = "4.2.0.8 Unreleased"
|
version = __version__ = "4.2.0.9 Unreleased"
|
||||||
|
|
||||||
|
|
||||||
# 888888ba .d88888b oo dP .88888. dP dP dP
|
# 888888ba .d88888b oo dP .88888. dP dP dP
|
||||||
|
@ -752,24 +752,10 @@ class Element():
|
||||||
print('Was unable to set focus. The Widget passed in was perhaps not present in this element? Check your elements .Widget property')
|
print('Was unable to set focus. The Widget passed in was perhaps not present in this element? Check your elements .Widget property')
|
||||||
|
|
||||||
|
|
||||||
def __del__(self):
|
def __call__(self, *args, **kwargs):
|
||||||
""" """
|
'''Change the position of the entity.'''
|
||||||
try:
|
print('IN CALL!')
|
||||||
self.TKStringVar.__del__()
|
return self.Update(*args, **kwargs)
|
||||||
except:
|
|
||||||
pass
|
|
||||||
try:
|
|
||||||
self.TKIntVar.__del__()
|
|
||||||
except:
|
|
||||||
pass
|
|
||||||
try:
|
|
||||||
self.TKText.__del__()
|
|
||||||
except:
|
|
||||||
pass
|
|
||||||
try:
|
|
||||||
self.TKEntry.__del__()
|
|
||||||
except:
|
|
||||||
pass
|
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------- #
|
# ---------------------------------------------------------------------- #
|
||||||
|
@ -870,10 +856,6 @@ class InputText(Element):
|
||||||
except:
|
except:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def __del__(self):
|
|
||||||
""" """
|
|
||||||
super().__del__()
|
|
||||||
|
|
||||||
|
|
||||||
# ------------------------- INPUT TEXT Element lazy functions ------------------------- #
|
# ------------------------- INPUT TEXT Element lazy functions ------------------------- #
|
||||||
In = InputText
|
In = InputText
|
||||||
|
@ -970,6 +952,12 @@ class Combo(Element):
|
||||||
self.TKCombo.pack()
|
self.TKCombo.pack()
|
||||||
|
|
||||||
def Get(self):
|
def Get(self):
|
||||||
|
"""
|
||||||
|
Returns the current (right now) value of the Combo. DO NOT USE THIS AS THE NORMAL WAY OF READING A COMBO!
|
||||||
|
You should be using values from your call to window.Read instead. Know what you're doing if you use it.
|
||||||
|
|
||||||
|
:return: Union[Any, None] Returns the value of what is currently chosen
|
||||||
|
"""
|
||||||
try:
|
try:
|
||||||
if self.TKCombo.current() == -1: # if the current value was not in the original list
|
if self.TKCombo.current() == -1: # if the current value was not in the original list
|
||||||
value = self.TKCombo.get() # then get the value typed in by user
|
value = self.TKCombo.get() # then get the value typed in by user
|
||||||
|
@ -979,13 +967,6 @@ class Combo(Element):
|
||||||
value = None # only would happen if user closes window
|
value = None # only would happen if user closes window
|
||||||
return value
|
return value
|
||||||
|
|
||||||
def __del__(self):
|
|
||||||
""" """
|
|
||||||
try:
|
|
||||||
self.TKCombo.__del__()
|
|
||||||
except:
|
|
||||||
pass
|
|
||||||
super().__del__()
|
|
||||||
|
|
||||||
|
|
||||||
# ------------------------- INPUT COMBO Element lazy functions ------------------------- #
|
# ------------------------- INPUT COMBO Element lazy functions ------------------------- #
|
||||||
|
@ -1065,13 +1046,7 @@ class OptionMenu(Element):
|
||||||
elif visible is True:
|
elif visible is True:
|
||||||
self.TKOptionMenu.pack()
|
self.TKOptionMenu.pack()
|
||||||
|
|
||||||
def __del__(self):
|
|
||||||
""" """
|
|
||||||
try:
|
|
||||||
self.TKOptionMenu.__del__()
|
|
||||||
except:
|
|
||||||
pass
|
|
||||||
super().__del__()
|
|
||||||
|
|
||||||
|
|
||||||
# ------------------------- OPTION MENU Element lazy functions ------------------------- #
|
# ------------------------- OPTION MENU Element lazy functions ------------------------- #
|
||||||
|
@ -1225,13 +1200,7 @@ class Listbox(Element):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
def __del__(self):
|
|
||||||
""" """
|
|
||||||
try:
|
|
||||||
self.TKListBox.__del__()
|
|
||||||
except:
|
|
||||||
pass
|
|
||||||
super().__del__()
|
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------- #
|
# ---------------------------------------------------------------------- #
|
||||||
|
@ -1317,13 +1286,7 @@ class Radio(Element):
|
||||||
return self.TKIntVar.get() == self.EncodedRadioValue
|
return self.TKIntVar.get() == self.EncodedRadioValue
|
||||||
|
|
||||||
|
|
||||||
def __del__(self):
|
|
||||||
""" """
|
|
||||||
try:
|
|
||||||
self.TKRadio.__del__()
|
|
||||||
except:
|
|
||||||
pass
|
|
||||||
super().__del__()
|
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------- #
|
# ---------------------------------------------------------------------- #
|
||||||
|
@ -1400,9 +1363,7 @@ class Checkbox(Element):
|
||||||
elif visible is True:
|
elif visible is True:
|
||||||
self.TKCheckbutton.pack()
|
self.TKCheckbutton.pack()
|
||||||
|
|
||||||
def __del__(self):
|
|
||||||
""" """
|
|
||||||
super().__del__()
|
|
||||||
|
|
||||||
|
|
||||||
# ------------------------- CHECKBOX Element lazy functions ------------------------- #
|
# ------------------------- CHECKBOX Element lazy functions ------------------------- #
|
||||||
|
@ -1508,13 +1469,6 @@ class Spin(Element):
|
||||||
"""
|
"""
|
||||||
return self.TKStringVar.get()
|
return self.TKStringVar.get()
|
||||||
|
|
||||||
def __del__(self):
|
|
||||||
""" """
|
|
||||||
try:
|
|
||||||
self.TKSpinBox.__del__()
|
|
||||||
except:
|
|
||||||
pass
|
|
||||||
super().__del__()
|
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------- #
|
# ---------------------------------------------------------------------- #
|
||||||
|
@ -1639,9 +1593,7 @@ class Multiline(Element):
|
||||||
except:
|
except:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def __del__(self):
|
|
||||||
""" """
|
|
||||||
super().__del__()
|
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------- #
|
# ---------------------------------------------------------------------- #
|
||||||
|
@ -1715,9 +1667,9 @@ class Text(Element):
|
||||||
elif visible is True:
|
elif visible is True:
|
||||||
self.TKText.pack()
|
self.TKText.pack()
|
||||||
|
|
||||||
def __del__(self):
|
|
||||||
""" """
|
|
||||||
super().__del__()
|
|
||||||
|
|
||||||
|
|
||||||
# ------------------------- Text Element lazy functions ------------------------- #
|
# ------------------------- Text Element lazy functions ------------------------- #
|
||||||
|
@ -1795,10 +1747,6 @@ class StatusBar(Element):
|
||||||
self.TKText.pack()
|
self.TKText.pack()
|
||||||
|
|
||||||
|
|
||||||
def __del__(self):
|
|
||||||
""" """
|
|
||||||
super().__del__()
|
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------- #
|
# ---------------------------------------------------------------------- #
|
||||||
# TKProgressBar #
|
# TKProgressBar #
|
||||||
|
@ -1878,13 +1826,6 @@ class TKProgressBar():
|
||||||
return False
|
return False
|
||||||
return True
|
return True
|
||||||
|
|
||||||
def __del__(self):
|
|
||||||
""" """
|
|
||||||
try:
|
|
||||||
self.TKProgressBarForReal.__del__()
|
|
||||||
except:
|
|
||||||
pass
|
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------- #
|
# ---------------------------------------------------------------------- #
|
||||||
# TKOutput #
|
# TKOutput #
|
||||||
|
@ -2017,13 +1958,6 @@ class Output(Element):
|
||||||
elif visible is True:
|
elif visible is True:
|
||||||
self._TKOut.frame.pack()
|
self._TKOut.frame.pack()
|
||||||
|
|
||||||
def __del__(self):
|
|
||||||
""" """
|
|
||||||
try:
|
|
||||||
self._TKOut.__del__()
|
|
||||||
except:
|
|
||||||
pass
|
|
||||||
super().__del__()
|
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------- #
|
# ---------------------------------------------------------------------- #
|
||||||
|
@ -2349,14 +2283,6 @@ class Button(Element):
|
||||||
except:
|
except:
|
||||||
print('Exception clicking button')
|
print('Exception clicking button')
|
||||||
|
|
||||||
def __del__(self):
|
|
||||||
""" """
|
|
||||||
try:
|
|
||||||
self.TKButton.__del__()
|
|
||||||
except:
|
|
||||||
pass
|
|
||||||
super().__del__()
|
|
||||||
|
|
||||||
|
|
||||||
# ------------------------- Button lazy functions ------------------------- #
|
# ------------------------- Button lazy functions ------------------------- #
|
||||||
B = Button
|
B = Button
|
||||||
|
@ -2451,13 +2377,7 @@ class ButtonMenu(Element):
|
||||||
elif visible is True:
|
elif visible is True:
|
||||||
self.TKButtonMenu.pack()
|
self.TKButtonMenu.pack()
|
||||||
|
|
||||||
def __del__(self):
|
|
||||||
""" """
|
|
||||||
try:
|
|
||||||
self.TKButtonMenu.__del__()
|
|
||||||
except:
|
|
||||||
pass
|
|
||||||
super().__del__()
|
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------- #
|
# ---------------------------------------------------------------------- #
|
||||||
|
@ -2529,13 +2449,7 @@ class ProgressBar(Element):
|
||||||
elif visible is True:
|
elif visible is True:
|
||||||
self.TKProgressBar.TKProgressBarForReal.pack()
|
self.TKProgressBar.TKProgressBarForReal.pack()
|
||||||
|
|
||||||
def __del__(self):
|
|
||||||
""" """
|
|
||||||
try:
|
|
||||||
self.TKProgressBar.__del__()
|
|
||||||
except:
|
|
||||||
pass
|
|
||||||
super().__del__()
|
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------- #
|
# ---------------------------------------------------------------------- #
|
||||||
|
@ -2658,9 +2572,7 @@ class Image(Element):
|
||||||
except:
|
except:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def __del__(self):
|
|
||||||
""" """
|
|
||||||
super().__del__()
|
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------- #
|
# ---------------------------------------------------------------------- #
|
||||||
|
@ -2699,9 +2611,7 @@ class Canvas(Element):
|
||||||
print('*** form = sg.Window("My Form").Layout(layout).Finalize() ***')
|
print('*** form = sg.Window("My Form").Layout(layout).Finalize() ***')
|
||||||
return self._TKCanvas
|
return self._TKCanvas
|
||||||
|
|
||||||
def __del__(self):
|
|
||||||
""" """
|
|
||||||
super().__del__()
|
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------- #
|
# ---------------------------------------------------------------------- #
|
||||||
|
@ -3208,9 +3118,7 @@ class Graph(Element):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
def __del__(self):
|
|
||||||
""" """
|
|
||||||
super().__del__()
|
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------- #
|
# ---------------------------------------------------------------------- #
|
||||||
|
@ -3321,12 +3229,7 @@ class Frame(Element):
|
||||||
elif visible is True:
|
elif visible is True:
|
||||||
self.TKFrame.pack()
|
self.TKFrame.pack()
|
||||||
|
|
||||||
def __del__(self):
|
|
||||||
""" """
|
|
||||||
for row in self.Rows:
|
|
||||||
for element in row:
|
|
||||||
element.__del__()
|
|
||||||
super().__del__()
|
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------- #
|
# ---------------------------------------------------------------------- #
|
||||||
|
@ -3347,9 +3250,7 @@ class VerticalSeparator(Element):
|
||||||
|
|
||||||
super().__init__(ELEM_TYPE_SEPARATOR, pad=pad)
|
super().__init__(ELEM_TYPE_SEPARATOR, pad=pad)
|
||||||
|
|
||||||
def __del__(self):
|
|
||||||
""" """
|
|
||||||
super().__del__()
|
|
||||||
|
|
||||||
|
|
||||||
VSeperator = VerticalSeparator
|
VSeperator = VerticalSeparator
|
||||||
|
@ -3481,12 +3382,6 @@ class Tab(Element):
|
||||||
print('Exception Selecting Tab {}'.format(e))
|
print('Exception Selecting Tab {}'.format(e))
|
||||||
|
|
||||||
|
|
||||||
def __del__(self):
|
|
||||||
""" """
|
|
||||||
for row in self.Rows:
|
|
||||||
for element in row:
|
|
||||||
element.__del__()
|
|
||||||
super().__del__()
|
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------- #
|
# ---------------------------------------------------------------------- #
|
||||||
|
@ -3618,12 +3513,7 @@ class TabGroup(Element):
|
||||||
return value
|
return value
|
||||||
|
|
||||||
|
|
||||||
def __del__(self):
|
|
||||||
""" """
|
|
||||||
for row in self.Rows:
|
|
||||||
for element in row:
|
|
||||||
element.__del__()
|
|
||||||
super().__del__()
|
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------- #
|
# ---------------------------------------------------------------------- #
|
||||||
|
@ -3729,9 +3619,7 @@ class Slider(Element):
|
||||||
if self.ParentForm.CurrentlyRunningMainloop:
|
if self.ParentForm.CurrentlyRunningMainloop:
|
||||||
self.ParentForm.TKroot.quit() # kick the users out of the mainloop
|
self.ParentForm.TKroot.quit() # kick the users out of the mainloop
|
||||||
|
|
||||||
def __del__(self):
|
|
||||||
""" """
|
|
||||||
super().__del__()
|
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------- #
|
# ---------------------------------------------------------------------- #
|
||||||
|
@ -3981,16 +3869,7 @@ class Column(Element):
|
||||||
if self.ParentPanedWindow:
|
if self.ParentPanedWindow:
|
||||||
self.ParentPanedWindow.add(self.TKColFrame)
|
self.ParentPanedWindow.add(self.TKColFrame)
|
||||||
|
|
||||||
def __del__(self):
|
|
||||||
""" """
|
|
||||||
for row in self.Rows:
|
|
||||||
for element in row:
|
|
||||||
element.__del__()
|
|
||||||
try:
|
|
||||||
del (self.TKFrame)
|
|
||||||
except:
|
|
||||||
pass
|
|
||||||
super().__del__()
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -4421,9 +4300,7 @@ class Menu(Element):
|
||||||
elif self.TKMenu is not None:
|
elif self.TKMenu is not None:
|
||||||
self.ParentForm.TKroot.configure(menu=self.TKMenu)
|
self.ParentForm.TKroot.configure(menu=self.TKMenu)
|
||||||
|
|
||||||
def __del__(self):
|
|
||||||
""" """
|
|
||||||
super().__del__()
|
|
||||||
|
|
||||||
|
|
||||||
MenuBar = Menu # another name for Menu to make it clear it's the Menu Bar
|
MenuBar = Menu # another name for Menu to make it clear it's the Menu Bar
|
||||||
|
@ -4608,9 +4485,6 @@ class Table(Element):
|
||||||
if self.ParentForm.CurrentlyRunningMainloop:
|
if self.ParentForm.CurrentlyRunningMainloop:
|
||||||
self.ParentForm.TKroot.quit()
|
self.ParentForm.TKroot.quit()
|
||||||
|
|
||||||
def __del__(self):
|
|
||||||
""" """
|
|
||||||
super().__del__()
|
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------- #
|
# ---------------------------------------------------------------------- #
|
||||||
|
@ -4774,9 +4648,7 @@ class Tree(Element):
|
||||||
self.TKTreeview.pack()
|
self.TKTreeview.pack()
|
||||||
return self
|
return self
|
||||||
|
|
||||||
def __del__(self):
|
|
||||||
""" """
|
|
||||||
super().__del__()
|
|
||||||
|
|
||||||
|
|
||||||
class TreeData(object):
|
class TreeData(object):
|
||||||
|
@ -4908,9 +4780,7 @@ class ErrorElement(Element):
|
||||||
"""
|
"""
|
||||||
return 'This is NOT a valid Element!\nSTOP trying to do things with it or I will have to crash at some point!'
|
return 'This is NOT a valid Element!\nSTOP trying to do things with it or I will have to crash at some point!'
|
||||||
|
|
||||||
def __del__(self):
|
|
||||||
""" """
|
|
||||||
super().__del__()
|
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------- #
|
# ---------------------------------------------------------------------- #
|
||||||
|
@ -5097,7 +4967,7 @@ class Window:
|
||||||
'This list will be stripped from your layout'
|
'This list will be stripped from your layout'
|
||||||
)
|
)
|
||||||
continue
|
continue
|
||||||
elif callable(element):
|
elif callable(element) and not isinstance(element, Element):
|
||||||
PopupError('Error creating layout',
|
PopupError('Error creating layout',
|
||||||
'Layout has a FUNCTION instead of an ELEMENT',
|
'Layout has a FUNCTION instead of an ELEMENT',
|
||||||
'This means you are missing () from your layout',
|
'This means you are missing () from your layout',
|
||||||
|
@ -5504,9 +5374,22 @@ class Window:
|
||||||
|
|
||||||
def FindElement(self, key, silent_on_error=False):
|
def FindElement(self, key, silent_on_error=False):
|
||||||
"""
|
"""
|
||||||
Find element object associated with the provided key. This call can be abbreviated to any of these:
|
Find element object associated with the provided key.
|
||||||
|
THIS METHOD IS NO LONGER NEEDED to be called by the user
|
||||||
|
|
||||||
|
You can perform the same operation by writing this statement:
|
||||||
|
element = window[key]
|
||||||
|
|
||||||
|
You can drop the entire "FindElement" function name and use [ ] instead.
|
||||||
|
|
||||||
|
Typically used in combination with a call to element's Update method (or any other element method!):
|
||||||
|
window[key].Update(new_value)
|
||||||
|
|
||||||
|
Versus the "old way"
|
||||||
|
window.FindElement(key).Update(new_value)
|
||||||
|
|
||||||
|
This call can be abbreviated to any of these:
|
||||||
FindElement == Element == Find
|
FindElement == Element == Find
|
||||||
So take your pick as to how much typing you want to do.
|
|
||||||
Rememeber that this call will return None if no match is found which may cause your code to crash if not
|
Rememeber that this call will return None if no match is found which may cause your code to crash if not
|
||||||
checked for.
|
checked for.
|
||||||
|
|
||||||
|
@ -6007,13 +5890,13 @@ class Window:
|
||||||
self.TKroot.unbind("<Pause>")
|
self.TKroot.unbind("<Pause>")
|
||||||
self.DebuggerEnabled = False
|
self.DebuggerEnabled = False
|
||||||
|
|
||||||
def __enter__(self):
|
# def __enter__(self):
|
||||||
"""
|
# """
|
||||||
WAS used with context managers which are no longer needed nor advised. It is here for legacy support and
|
# WAS used with context managers which are no longer needed nor advised. It is here for legacy support and
|
||||||
am afraid of removing right now
|
# am afraid of removing right now
|
||||||
:return: (window)
|
# :return: (window)
|
||||||
"""
|
# """
|
||||||
return self
|
# return self
|
||||||
|
|
||||||
def __getitem__(self, key):
|
def __getitem__(self, key):
|
||||||
"""
|
"""
|
||||||
|
@ -6030,23 +5913,23 @@ class Window:
|
||||||
warnings.warn('The key you passed in is no good. Key = {}*'.format(key))
|
warnings.warn('The key you passed in is no good. Key = {}*'.format(key))
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
#
|
||||||
def __exit__(self, *a):
|
# def __exit__(self, *a):
|
||||||
"""
|
# """
|
||||||
WAS used with context managers which are no longer needed nor advised. It is here for legacy support and
|
# WAS used with context managers which are no longer needed nor advised. It is here for legacy support and
|
||||||
am afraid of removing right now
|
# am afraid of removing right now
|
||||||
:param *a: (?) Not sure what's passed in.
|
# :param *a: (?) Not sure what's passed in.
|
||||||
:return: Always returns False which was needed for context manager to work
|
# :return: Always returns False which was needed for context manager to work
|
||||||
"""
|
# """
|
||||||
self.__del__()
|
# self.__del__()
|
||||||
return False
|
# return False
|
||||||
|
#
|
||||||
def __del__(self):
|
# def __del__(self):
|
||||||
""" """
|
# """ """
|
||||||
# print('DELETING WINDOW')
|
# # print('DELETING WINDOW')
|
||||||
for row in self.Rows:
|
# for row in self.Rows:
|
||||||
for element in row:
|
# for element in row:
|
||||||
element.__del__()
|
# element.__del__()
|
||||||
|
|
||||||
|
|
||||||
FlexForm = Window
|
FlexForm = Window
|
||||||
|
@ -6454,7 +6337,7 @@ def Help(button_text='Help', size=(None, None), auto_size_button=None, button_co
|
||||||
:param focus: if focus should be set to this
|
:param focus: if focus should be set to this
|
||||||
:param pad: Amount of padding to put around element
|
:param pad: Amount of padding to put around element
|
||||||
:param key: Used with window.FindElement and with return values to uniquely identify this element
|
:param key: Used with window.FindElement and with return values to uniquely identify this element
|
||||||
|
:return: (Button)
|
||||||
"""
|
"""
|
||||||
return Button(button_text=button_text, button_type=BUTTON_TYPE_READ_FORM, tooltip=tooltip, size=size,
|
return Button(button_text=button_text, button_type=BUTTON_TYPE_READ_FORM, tooltip=tooltip, size=size,
|
||||||
auto_size_button=auto_size_button, button_color=button_color, font=font, disabled=disabled,
|
auto_size_button=auto_size_button, button_color=button_color, font=font, disabled=disabled,
|
||||||
|
@ -6477,7 +6360,7 @@ def Debug(button_text='', size=(None, None), auto_size_button=None, button_color
|
||||||
:param focus: if focus should be set to this
|
:param focus: if focus should be set to this
|
||||||
:param pad: Amount of padding to put around element
|
:param pad: Amount of padding to put around element
|
||||||
:param key: Used with window.FindElement and with return values to uniquely identify this element
|
:param key: Used with window.FindElement and with return values to uniquely identify this element
|
||||||
|
:return: (Button)
|
||||||
"""
|
"""
|
||||||
return Button(button_text=button_text, button_type=BUTTON_TYPE_SHOW_DEBUGGER, tooltip=tooltip, size=size,
|
return Button(button_text=button_text, button_type=BUTTON_TYPE_SHOW_DEBUGGER, tooltip=tooltip, size=size,
|
||||||
auto_size_button=auto_size_button, button_color=COLOR_SYSTEM_DEFAULT, font=font, disabled=disabled,
|
auto_size_button=auto_size_button, button_color=COLOR_SYSTEM_DEFAULT, font=font, disabled=disabled,
|
||||||
|
@ -6507,7 +6390,7 @@ def SimpleButton(button_text, image_filename=None, image_data=None, image_size=(
|
||||||
:param focus: if focus should be set to this
|
:param focus: if focus should be set to this
|
||||||
:param pad: Amount of padding to put around element
|
:param pad: Amount of padding to put around element
|
||||||
:param key: Used with window.FindElement and with return values to uniquely identify this element
|
:param key: Used with window.FindElement and with return values to uniquely identify this element
|
||||||
|
:return: (Button)
|
||||||
"""
|
"""
|
||||||
return Button(button_text=button_text, button_type=BUTTON_TYPE_CLOSES_WIN, image_filename=image_filename,
|
return Button(button_text=button_text, button_type=BUTTON_TYPE_CLOSES_WIN, image_filename=image_filename,
|
||||||
image_data=image_data, image_size=image_size, image_subsample=image_subsample,
|
image_data=image_data, image_size=image_size, image_subsample=image_subsample,
|
||||||
|
@ -6538,7 +6421,7 @@ def CloseButton(button_text, image_filename=None, image_data=None, image_size=(N
|
||||||
:param focus: if focus should be set to this
|
:param focus: if focus should be set to this
|
||||||
:param pad: Amount of padding to put around element
|
:param pad: Amount of padding to put around element
|
||||||
:param key: Used with window.FindElement and with return values to uniquely identify this element
|
:param key: Used with window.FindElement and with return values to uniquely identify this element
|
||||||
|
:return: (Button)
|
||||||
"""
|
"""
|
||||||
return Button(button_text=button_text, button_type=BUTTON_TYPE_CLOSES_WIN, image_filename=image_filename,
|
return Button(button_text=button_text, button_type=BUTTON_TYPE_CLOSES_WIN, image_filename=image_filename,
|
||||||
image_data=image_data, image_size=image_size, image_subsample=image_subsample,
|
image_data=image_data, image_size=image_size, image_subsample=image_subsample,
|
||||||
|
@ -6638,7 +6521,7 @@ def DummyButton(button_text, image_filename=None, image_data=None, image_size=(N
|
||||||
:param focus: if focus should be set to this
|
:param focus: if focus should be set to this
|
||||||
:param pad: Amount of padding to put around element
|
:param pad: Amount of padding to put around element
|
||||||
:param key: Used with window.FindElement and with return values to uniquely identify this element
|
:param key: Used with window.FindElement and with return values to uniquely identify this element
|
||||||
|
:return: (Button)
|
||||||
"""
|
"""
|
||||||
return Button(button_text=button_text, button_type=BUTTON_TYPE_CLOSES_WIN_ONLY, image_filename=image_filename,
|
return Button(button_text=button_text, button_type=BUTTON_TYPE_CLOSES_WIN_ONLY, image_filename=image_filename,
|
||||||
image_data=image_data, image_size=image_size, image_subsample=image_subsample,
|
image_data=image_data, image_size=image_size, image_subsample=image_subsample,
|
||||||
|
@ -6677,7 +6560,7 @@ def CalendarButton(button_text, target=(None, None), close_when_date_chosen=True
|
||||||
:param key: Used with window.FindElement and with return values to uniquely identify this element
|
:param key: Used with window.FindElement and with return values to uniquely identify this element
|
||||||
:param locale:
|
:param locale:
|
||||||
:param format:
|
:param format:
|
||||||
|
:return: (Button)
|
||||||
"""
|
"""
|
||||||
button = Button(button_text=button_text, button_type=BUTTON_TYPE_CALENDAR_CHOOSER, target=target,
|
button = Button(button_text=button_text, button_type=BUTTON_TYPE_CALENDAR_CHOOSER, target=target,
|
||||||
image_filename=image_filename, image_data=image_data, image_size=image_size,
|
image_filename=image_filename, image_data=image_data, image_size=image_size,
|
||||||
|
@ -6715,7 +6598,7 @@ def ColorChooserButton(button_text, target=(None, None), image_filename=None, im
|
||||||
:param focus: if focus should be set to this
|
:param focus: if focus should be set to this
|
||||||
:param pad: Amount of padding to put around element
|
:param pad: Amount of padding to put around element
|
||||||
:param key: Used with window.FindElement and with return values to uniquely identify this element
|
:param key: Used with window.FindElement and with return values to uniquely identify this element
|
||||||
|
:return: (Button)
|
||||||
"""
|
"""
|
||||||
return Button(button_text=button_text, button_type=BUTTON_TYPE_COLOR_CHOOSER, target=target,
|
return Button(button_text=button_text, button_type=BUTTON_TYPE_COLOR_CHOOSER, target=target,
|
||||||
image_filename=image_filename, image_data=image_data, image_size=image_size,
|
image_filename=image_filename, image_data=image_data, image_size=image_size,
|
||||||
|
@ -6735,7 +6618,6 @@ def AddToReturnDictionary(form, element, value):
|
||||||
|
|
||||||
"""
|
"""
|
||||||
form.ReturnValuesDictionary[element.Key] = value
|
form.ReturnValuesDictionary[element.Key] = value
|
||||||
return
|
|
||||||
# if element.Key is None:
|
# if element.Key is None:
|
||||||
# form.ReturnValuesDictionary[form.DictionaryKeyCounter] = value
|
# form.ReturnValuesDictionary[form.DictionaryKeyCounter] = value
|
||||||
# element.Key = form.DictionaryKeyCounter
|
# element.Key = form.DictionaryKeyCounter
|
||||||
|
@ -6792,6 +6674,7 @@ def EncodeRadioRowCol(container, row, col):
|
||||||
return RadValue
|
return RadValue
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ------- FUNCTION BuildResults. Form exiting so build the results to pass back ------- #
|
# ------- FUNCTION BuildResults. Form exiting so build the results to pass back ------- #
|
||||||
# format of return values is
|
# format of return values is
|
||||||
# (Button Pressed, input_values)
|
# (Button Pressed, input_values)
|
||||||
|
@ -9730,7 +9613,7 @@ def Popup(*args, title=None, button_color=None, background_color=None, text_colo
|
||||||
# MsgBox is the legacy call and should not be used any longer
|
# MsgBox is the legacy call and should not be used any longer
|
||||||
def MsgBox(*args):
|
def MsgBox(*args):
|
||||||
"""
|
"""
|
||||||
|
Do not call this anymore it will raise exception. Use Popups instead
|
||||||
:param *args:
|
:param *args:
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
@ -9989,7 +9872,6 @@ def PopupAutoClose(*args, title=None, button_type=POPUP_BUTTONS_OK, button_color
|
||||||
line_width=None, font=None, no_titlebar=False, grab_anywhere=False, keep_on_top=False,
|
line_width=None, font=None, no_titlebar=False, grab_anywhere=False, keep_on_top=False,
|
||||||
location=(None, None)):
|
location=(None, None)):
|
||||||
"""Popup that closes itself after some time period
|
"""Popup that closes itself after some time period
|
||||||
:return:
|
|
||||||
|
|
||||||
:param *args:
|
:param *args:
|
||||||
:param title:
|
:param title:
|
||||||
|
@ -10161,7 +10043,6 @@ def PopupYesNo(*args, title=None, button_color=None, background_color=None, text
|
||||||
:param no_titlebar: (Default = False)
|
:param no_titlebar: (Default = False)
|
||||||
:param grab_anywhere: If True can grab anywhere to move the window (Default = False)
|
:param grab_anywhere: If True can grab anywhere to move the window (Default = False)
|
||||||
:param location: Location on screen to display
|
:param location: Location on screen to display
|
||||||
:param location:
|
|
||||||
:return: Union["Yes", "No", None]
|
:return: Union["Yes", "No", None]
|
||||||
"""
|
"""
|
||||||
return Popup(*args, title=title, button_type=POPUP_BUTTONS_YES_NO, background_color=background_color,
|
return Popup(*args, title=title, button_type=POPUP_BUTTONS_YES_NO, background_color=background_color,
|
||||||
|
|
Loading…
Reference in New Issue