mirror of
https://github.com/python/cpython.git
synced 2025-09-27 10:50:04 +00:00
dynamic option menu widget.
This commit is contained in:
parent
485f7b6b58
commit
f126bcb653
1 changed files with 34 additions and 0 deletions
34
Lib/idlelib/dynOptionMenuWidget.py
Normal file
34
Lib/idlelib/dynOptionMenuWidget.py
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
##---------------------------------------------------------------------------##
|
||||||
|
##
|
||||||
|
## idle - tkinter OptionMenu widget modified to allow dynamic
|
||||||
|
## reconfiguration of menu.
|
||||||
|
## elguavas
|
||||||
|
##
|
||||||
|
##---------------------------------------------------------------------------##
|
||||||
|
"""
|
||||||
|
OptionMenu widget modified to allow dynamic menu reconfiguration
|
||||||
|
"""
|
||||||
|
from Tkinter import OptionMenu
|
||||||
|
from Tkinter import _setit
|
||||||
|
|
||||||
|
class DynOptionMenu(OptionMenu):
|
||||||
|
"""
|
||||||
|
OptionMenu widget that allows dynamic menu reconfiguration
|
||||||
|
"""
|
||||||
|
def __init__(self, master, variable, value, *values, **kwargs):
|
||||||
|
OptionMenu.__init__(self, master, variable, value, *values, **kwargs)
|
||||||
|
#self.menu=self['menu']
|
||||||
|
self.variable=variable
|
||||||
|
self.command=kwargs.get('command')
|
||||||
|
|
||||||
|
def SetMenu(self,valueList,value):
|
||||||
|
"""
|
||||||
|
clear and reload the menu with a new set of options.
|
||||||
|
valueList - list of new options
|
||||||
|
value - initial value to set the optionmenu's menubutton to
|
||||||
|
"""
|
||||||
|
self['menu'].delete(0,'end')
|
||||||
|
for item in valueList:
|
||||||
|
self['menu'].add_command(label=item,
|
||||||
|
command=_setit(self.variable,item,self.command))
|
||||||
|
self.variable.set(value)
|
Loading…
Add table
Add a link
Reference in a new issue