| 
									
										
										
										
											2001-10-26 06:49:14 +00:00
										 |  |  | """
 | 
					
						
							|  |  |  | OptionMenu widget modified to allow dynamic menu reconfiguration | 
					
						
							| 
									
										
										
										
											2001-11-03 14:55:47 +00:00
										 |  |  | and setting of highlightthickness | 
					
						
							| 
									
										
										
										
											2001-10-26 06:49:14 +00:00
										 |  |  | """
 | 
					
						
							| 
									
										
										
										
											2014-10-17 01:31:35 -04:00
										 |  |  | from tkinter import OptionMenu, _setit, StringVar, Button | 
					
						
							| 
									
										
										
										
											2001-10-26 06:49:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | class DynOptionMenu(OptionMenu): | 
					
						
							| 
									
										
										
										
											2023-02-28 06:11:52 +00:00
										 |  |  |     """Add SetMenu and highlightthickness to OptionMenu.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Highlightthickness adds space around menu button. | 
					
						
							| 
									
										
										
										
											2001-10-26 06:49:14 +00:00
										 |  |  |     """
 | 
					
						
							|  |  |  |     def __init__(self, master, variable, value, *values, **kwargs): | 
					
						
							| 
									
										
										
										
											2023-02-28 06:11:52 +00:00
										 |  |  |         highlightthickness = kwargs.pop('highlightthickness', None) | 
					
						
							| 
									
										
										
										
											2001-10-26 06:49:14 +00:00
										 |  |  |         OptionMenu.__init__(self, master, variable, value, *values, **kwargs) | 
					
						
							| 
									
										
										
										
											2023-02-28 06:11:52 +00:00
										 |  |  |         self['highlightthickness'] = highlightthickness | 
					
						
							|  |  |  |         self.variable = variable | 
					
						
							|  |  |  |         self.command = kwargs.get('command') | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-10-29 08:05:34 +00:00
										 |  |  |     def SetMenu(self,valueList,value=None): | 
					
						
							| 
									
										
										
										
											2001-10-26 06:49:14 +00:00
										 |  |  |         """
 | 
					
						
							|  |  |  |         clear and reload the menu with a new set of options. | 
					
						
							|  |  |  |         valueList - list of new options | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |         value - initial value to set the optionmenu's menubutton to | 
					
						
							| 
									
										
										
										
											2001-10-26 06:49:14 +00:00
										 |  |  |         """
 | 
					
						
							|  |  |  |         self['menu'].delete(0,'end') | 
					
						
							|  |  |  |         for item in valueList: | 
					
						
							|  |  |  |             self['menu'].add_command(label=item, | 
					
						
							|  |  |  |                     command=_setit(self.variable,item,self.command)) | 
					
						
							| 
									
										
										
										
											2001-10-29 08:05:34 +00:00
										 |  |  |         if value: | 
					
						
							|  |  |  |             self.variable.set(value) | 
					
						
							| 
									
										
										
										
											2014-05-24 18:48:18 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-04 01:36:40 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-17 01:31:35 -04:00
										 |  |  | def _dyn_option_menu(parent):  # htest # | 
					
						
							| 
									
										
										
										
											2016-06-21 18:41:38 -04:00
										 |  |  |     from tkinter import Toplevel # + StringVar, Button | 
					
						
							| 
									
										
										
										
											2014-10-17 01:31:35 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-21 18:41:38 -04:00
										 |  |  |     top = Toplevel(parent) | 
					
						
							| 
									
										
										
										
											2023-02-28 06:11:52 +00:00
										 |  |  |     top.title("Test dynamic option menu") | 
					
						
							| 
									
										
										
										
											2016-07-10 17:28:10 -04:00
										 |  |  |     x, y = map(int, parent.geometry().split('+')[1:]) | 
					
						
							|  |  |  |     top.geometry("200x100+%d+%d" % (x + 250, y + 175)) | 
					
						
							| 
									
										
										
										
											2014-10-17 01:31:35 -04:00
										 |  |  |     top.focus_set() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     var = StringVar(top) | 
					
						
							| 
									
										
										
										
											2014-05-24 18:48:18 -04:00
										 |  |  |     var.set("Old option set") #Set the default value | 
					
						
							| 
									
										
										
										
											2023-02-28 06:11:52 +00:00
										 |  |  |     dyn = DynOptionMenu(top, var, "old1","old2","old3","old4", | 
					
						
							|  |  |  |                         highlightthickness=5) | 
					
						
							| 
									
										
										
										
											2014-05-24 18:48:18 -04:00
										 |  |  |     dyn.pack() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def update(): | 
					
						
							| 
									
										
										
										
											2014-10-17 01:31:35 -04:00
										 |  |  |         dyn.SetMenu(["new1","new2","new3","new4"], value="new option set") | 
					
						
							|  |  |  |     button = Button(top, text="Change option set", command=update) | 
					
						
							| 
									
										
										
										
											2014-05-24 18:48:18 -04:00
										 |  |  |     button.pack() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-04 01:36:40 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-24 18:48:18 -04:00
										 |  |  | if __name__ == '__main__': | 
					
						
							| 
									
										
										
										
											2023-02-28 06:11:52 +00:00
										 |  |  |     # Only module without unittests because of intention to replace. | 
					
						
							| 
									
										
										
										
											2014-05-24 18:48:18 -04:00
										 |  |  |     from idlelib.idle_test.htest import run | 
					
						
							|  |  |  |     run(_dyn_option_menu) |