| 
									
										
										
										
											2002-01-12 09:48:02 +00:00
										 |  |  | """
 | 
					
						
							| 
									
										
										
										
											2003-11-24 05:26:16 +00:00
										 |  |  | Dialog for building Tkinter accelerator key bindings | 
					
						
							| 
									
										
										
										
											2002-01-12 09:48:02 +00:00
										 |  |  | """
 | 
					
						
							| 
									
										
										
										
											2008-05-20 07:13:37 +00:00
										 |  |  | from Tkinter import * | 
					
						
							|  |  |  | import tkMessageBox | 
					
						
							| 
									
										
										
										
											2008-02-23 17:40:11 +00:00
										 |  |  | import string | 
					
						
							| 
									
										
										
										
											2002-01-12 09:48:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-01-19 00:29:54 +00:00
										 |  |  | class GetKeysDialog(Toplevel): | 
					
						
							| 
									
										
										
										
											2002-01-19 01:30:56 +00:00
										 |  |  |     def __init__(self,parent,title,action,currentKeySequences): | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         action - string, the name of the virtual event these keys will be | 
					
						
							|  |  |  |                  mapped to | 
					
						
							|  |  |  |         currentKeys - list, a list of all key sequence lists currently mapped | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |                  to virtual events, for overlap checking | 
					
						
							| 
									
										
										
										
											2002-01-19 01:30:56 +00:00
										 |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2002-01-12 09:48:02 +00:00
										 |  |  |         Toplevel.__init__(self, parent) | 
					
						
							|  |  |  |         self.configure(borderwidth=5) | 
					
						
							|  |  |  |         self.resizable(height=FALSE,width=FALSE) | 
					
						
							|  |  |  |         self.title(title) | 
					
						
							|  |  |  |         self.transient(parent) | 
					
						
							|  |  |  |         self.grab_set() | 
					
						
							|  |  |  |         self.protocol("WM_DELETE_WINDOW", self.Cancel) | 
					
						
							|  |  |  |         self.parent = parent | 
					
						
							|  |  |  |         self.action=action | 
					
						
							| 
									
										
										
										
											2002-01-19 01:30:56 +00:00
										 |  |  |         self.currentKeySequences=currentKeySequences | 
					
						
							| 
									
										
										
										
											2002-01-19 00:29:54 +00:00
										 |  |  |         self.result='' | 
					
						
							| 
									
										
										
										
											2002-01-12 09:48:02 +00:00
										 |  |  |         self.keyString=StringVar(self) | 
					
						
							|  |  |  |         self.keyString.set('') | 
					
						
							| 
									
										
										
										
											2005-11-22 21:09:37 +00:00
										 |  |  |         self.SetModifiersForPlatform() # set self.modifiers, self.modifier_label | 
					
						
							| 
									
										
										
										
											2002-09-29 00:23:08 +00:00
										 |  |  |         self.modifier_vars = [] | 
					
						
							|  |  |  |         for modifier in self.modifiers: | 
					
						
							|  |  |  |             variable = StringVar(self) | 
					
						
							|  |  |  |             variable.set('') | 
					
						
							|  |  |  |             self.modifier_vars.append(variable) | 
					
						
							| 
									
										
										
										
											2005-11-22 21:09:37 +00:00
										 |  |  |         self.advanced = False | 
					
						
							| 
									
										
										
										
											2002-01-12 09:48:02 +00:00
										 |  |  |         self.CreateWidgets() | 
					
						
							|  |  |  |         self.LoadFinalKeyList() | 
					
						
							|  |  |  |         self.withdraw() #hide while setting geometry | 
					
						
							|  |  |  |         self.update_idletasks() | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |         self.geometry("+%d+%d" % | 
					
						
							| 
									
										
										
										
											2002-01-12 09:48:02 +00:00
										 |  |  |             ((parent.winfo_rootx()+((parent.winfo_width()/2) | 
					
						
							|  |  |  |                 -(self.winfo_reqwidth()/2)), | 
					
						
							|  |  |  |               parent.winfo_rooty()+((parent.winfo_height()/2) | 
					
						
							|  |  |  |                 -(self.winfo_reqheight()/2)) )) ) #centre dialog over parent | 
					
						
							|  |  |  |         self.deiconify() #geometry set, unhide | 
					
						
							|  |  |  |         self.wait_window() | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-01-12 09:48:02 +00:00
										 |  |  |     def CreateWidgets(self): | 
					
						
							|  |  |  |         frameMain = Frame(self,borderwidth=2,relief=SUNKEN) | 
					
						
							|  |  |  |         frameMain.pack(side=TOP,expand=TRUE,fill=BOTH) | 
					
						
							|  |  |  |         frameButtons=Frame(self) | 
					
						
							|  |  |  |         frameButtons.pack(side=BOTTOM,fill=X) | 
					
						
							| 
									
										
										
										
											2003-11-24 05:26:16 +00:00
										 |  |  |         self.buttonOK = Button(frameButtons,text='OK', | 
					
						
							|  |  |  |                 width=8,command=self.OK) | 
					
						
							|  |  |  |         self.buttonOK.grid(row=0,column=0,padx=5,pady=5) | 
					
						
							| 
									
										
										
										
											2002-01-12 09:48:02 +00:00
										 |  |  |         self.buttonCancel = Button(frameButtons,text='Cancel', | 
					
						
							|  |  |  |                 width=8,command=self.Cancel) | 
					
						
							|  |  |  |         self.buttonCancel.grid(row=0,column=1,padx=5,pady=5) | 
					
						
							|  |  |  |         self.frameKeySeqBasic = Frame(frameMain) | 
					
						
							|  |  |  |         self.frameKeySeqAdvanced = Frame(frameMain) | 
					
						
							|  |  |  |         self.frameControlsBasic = Frame(frameMain) | 
					
						
							|  |  |  |         self.frameHelpAdvanced = Frame(frameMain) | 
					
						
							|  |  |  |         self.frameKeySeqAdvanced.grid(row=0,column=0,sticky=NSEW,padx=5,pady=5) | 
					
						
							|  |  |  |         self.frameKeySeqBasic.grid(row=0,column=0,sticky=NSEW,padx=5,pady=5) | 
					
						
							|  |  |  |         self.frameKeySeqBasic.lift() | 
					
						
							|  |  |  |         self.frameHelpAdvanced.grid(row=1,column=0,sticky=NSEW,padx=5) | 
					
						
							|  |  |  |         self.frameControlsBasic.grid(row=1,column=0,sticky=NSEW,padx=5) | 
					
						
							|  |  |  |         self.frameControlsBasic.lift() | 
					
						
							|  |  |  |         self.buttonLevel = Button(frameMain,command=self.ToggleLevel, | 
					
						
							|  |  |  |                 text='Advanced Key Binding Entry >>') | 
					
						
							|  |  |  |         self.buttonLevel.grid(row=2,column=0,stick=EW,padx=5,pady=5) | 
					
						
							|  |  |  |         labelTitleBasic = Label(self.frameKeySeqBasic, | 
					
						
							|  |  |  |                 text="New keys for  '"+self.action+"' :") | 
					
						
							|  |  |  |         labelTitleBasic.pack(anchor=W) | 
					
						
							|  |  |  |         labelKeysBasic = Label(self.frameKeySeqBasic,justify=LEFT, | 
					
						
							|  |  |  |                 textvariable=self.keyString,relief=GROOVE,borderwidth=2) | 
					
						
							|  |  |  |         labelKeysBasic.pack(ipadx=5,ipady=5,fill=X) | 
					
						
							| 
									
										
										
										
											2002-09-29 00:23:08 +00:00
										 |  |  |         self.modifier_checkbuttons = {} | 
					
						
							|  |  |  |         column = 0 | 
					
						
							|  |  |  |         for modifier, variable in zip(self.modifiers, self.modifier_vars): | 
					
						
							|  |  |  |             label = self.modifier_label.get(modifier, modifier) | 
					
						
							|  |  |  |             check=Checkbutton(self.frameControlsBasic, | 
					
						
							| 
									
										
										
										
											2002-01-12 09:48:02 +00:00
										 |  |  |                 command=self.BuildKeyString, | 
					
						
							| 
									
										
										
										
											2002-09-29 00:23:08 +00:00
										 |  |  |                 text=label,variable=variable,onvalue=modifier,offvalue='') | 
					
						
							|  |  |  |             check.grid(row=0,column=column,padx=2,sticky=W) | 
					
						
							|  |  |  |             self.modifier_checkbuttons[modifier] = check | 
					
						
							|  |  |  |             column += 1 | 
					
						
							| 
									
										
										
										
											2002-01-12 09:48:02 +00:00
										 |  |  |         labelFnAdvice=Label(self.frameControlsBasic,justify=LEFT, | 
					
						
							| 
									
										
										
										
											2003-11-24 05:26:16 +00:00
										 |  |  |                             text=\ | 
					
						
							|  |  |  |                             "Select the desired modifier keys\n"+ | 
					
						
							|  |  |  |                             "above, and the final key from the\n"+ | 
					
						
							|  |  |  |                             "list on the right.\n\n" + | 
					
						
							|  |  |  |                             "Use upper case Symbols when using\n" + | 
					
						
							|  |  |  |                             "the Shift modifier.  (Letters will be\n" + | 
					
						
							|  |  |  |                             "converted automatically.)") | 
					
						
							| 
									
										
										
										
											2002-01-12 09:48:02 +00:00
										 |  |  |         labelFnAdvice.grid(row=1,column=0,columnspan=4,padx=2,sticky=W) | 
					
						
							|  |  |  |         self.listKeysFinal=Listbox(self.frameControlsBasic,width=15,height=10, | 
					
						
							|  |  |  |                 selectmode=SINGLE) | 
					
						
							|  |  |  |         self.listKeysFinal.bind('<ButtonRelease-1>',self.FinalKeySelected) | 
					
						
							|  |  |  |         self.listKeysFinal.grid(row=0,column=4,rowspan=4,sticky=NS) | 
					
						
							|  |  |  |         scrollKeysFinal=Scrollbar(self.frameControlsBasic,orient=VERTICAL, | 
					
						
							|  |  |  |                 command=self.listKeysFinal.yview) | 
					
						
							|  |  |  |         self.listKeysFinal.config(yscrollcommand=scrollKeysFinal.set) | 
					
						
							|  |  |  |         scrollKeysFinal.grid(row=0,column=5,rowspan=4,sticky=NS) | 
					
						
							| 
									
										
										
										
											2002-01-19 00:29:54 +00:00
										 |  |  |         self.buttonClear=Button(self.frameControlsBasic, | 
					
						
							|  |  |  |                 text='Clear Keys',command=self.ClearKeySeq) | 
					
						
							|  |  |  |         self.buttonClear.grid(row=2,column=0,columnspan=4) | 
					
						
							| 
									
										
										
										
											2002-01-12 09:48:02 +00:00
										 |  |  |         labelTitleAdvanced = Label(self.frameKeySeqAdvanced,justify=LEFT, | 
					
						
							|  |  |  |                 text="Enter new binding(s) for  '"+self.action+"' :\n"+ | 
					
						
							| 
									
										
										
										
											2003-11-24 05:26:16 +00:00
										 |  |  |                 "(These bindings will not be checked for validity!)") | 
					
						
							| 
									
										
										
										
											2002-01-12 09:48:02 +00:00
										 |  |  |         labelTitleAdvanced.pack(anchor=W) | 
					
						
							|  |  |  |         self.entryKeysAdvanced=Entry(self.frameKeySeqAdvanced, | 
					
						
							|  |  |  |                 textvariable=self.keyString) | 
					
						
							|  |  |  |         self.entryKeysAdvanced.pack(fill=X) | 
					
						
							|  |  |  |         labelHelpAdvanced=Label(self.frameHelpAdvanced,justify=LEFT, | 
					
						
							| 
									
										
										
										
											2003-11-24 05:26:16 +00:00
										 |  |  |             text="Key bindings are specified using Tkinter keysyms as\n"+ | 
					
						
							| 
									
										
										
										
											2002-01-12 09:48:02 +00:00
										 |  |  |                  "in these samples: <Control-f>, <Shift-F2>, <F12>,\n" | 
					
						
							| 
									
										
										
										
											2003-11-24 05:26:16 +00:00
										 |  |  |                  "<Control-space>, <Meta-less>, <Control-Alt-Shift-X>.\n" | 
					
						
							|  |  |  |                  "Upper case is used when the Shift modifier is present!\n\n" + | 
					
						
							|  |  |  |                  "'Emacs style' multi-keystroke bindings are specified as\n" + | 
					
						
							|  |  |  |                  "follows: <Control-x><Control-y>, where the first key\n" + | 
					
						
							|  |  |  |                  "is the 'do-nothing' keybinding.\n\n" + | 
					
						
							| 
									
										
										
										
											2002-01-12 09:48:02 +00:00
										 |  |  |                  "Multiple separate bindings for one action should be\n"+ | 
					
						
							|  |  |  |                  "separated by a space, eg., <Alt-v> <Meta-v>." ) | 
					
						
							|  |  |  |         labelHelpAdvanced.grid(row=0,column=0,sticky=NSEW) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-09-29 00:23:08 +00:00
										 |  |  |     def SetModifiersForPlatform(self): | 
					
						
							|  |  |  |         """Determine list of names of key modifiers for this platform.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         The names are used to build Tk bindings -- it doesn't matter if the | 
					
						
							|  |  |  |         keyboard has these keys, it matters if Tk understands them. The | 
					
						
							|  |  |  |         order is also important: key binding equality depends on it, so | 
					
						
							|  |  |  |         config-keys.def must use the same ordering. | 
					
						
							|  |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2010-04-02 07:24:52 +00:00
										 |  |  |         from idlelib import macosxSupport | 
					
						
							| 
									
										
										
										
											2009-03-04 21:35:05 +00:00
										 |  |  |         if macosxSupport.runningAsOSXApp(): | 
					
						
							| 
									
										
										
										
											2002-09-29 00:23:08 +00:00
										 |  |  |             self.modifiers = ['Shift', 'Control', 'Option', 'Command'] | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             self.modifiers = ['Control', 'Alt', 'Shift'] | 
					
						
							| 
									
										
										
										
											2005-11-22 21:09:37 +00:00
										 |  |  |         self.modifier_label = {'Control': 'Ctrl'} # short name | 
					
						
							| 
									
										
										
										
											2002-09-29 00:23:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-01-12 09:48:02 +00:00
										 |  |  |     def ToggleLevel(self): | 
					
						
							|  |  |  |         if  self.buttonLevel.cget('text')[:8]=='Advanced': | 
					
						
							| 
									
										
										
										
											2002-01-19 00:29:54 +00:00
										 |  |  |             self.ClearKeySeq() | 
					
						
							| 
									
										
										
										
											2002-01-12 09:48:02 +00:00
										 |  |  |             self.buttonLevel.config(text='<< Basic Key Binding Entry') | 
					
						
							|  |  |  |             self.frameKeySeqAdvanced.lift() | 
					
						
							|  |  |  |             self.frameHelpAdvanced.lift() | 
					
						
							|  |  |  |             self.entryKeysAdvanced.focus_set() | 
					
						
							| 
									
										
										
										
											2005-11-22 21:09:37 +00:00
										 |  |  |             self.advanced = True | 
					
						
							| 
									
										
										
										
											2002-01-12 09:48:02 +00:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2002-01-19 00:29:54 +00:00
										 |  |  |             self.ClearKeySeq() | 
					
						
							| 
									
										
										
										
											2002-01-12 09:48:02 +00:00
										 |  |  |             self.buttonLevel.config(text='Advanced Key Binding Entry >>') | 
					
						
							|  |  |  |             self.frameKeySeqBasic.lift() | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |             self.frameControlsBasic.lift() | 
					
						
							| 
									
										
										
										
											2005-11-22 21:09:37 +00:00
										 |  |  |             self.advanced = False | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-01-12 09:48:02 +00:00
										 |  |  |     def FinalKeySelected(self,event): | 
					
						
							|  |  |  |         self.BuildKeyString() | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-01-12 09:48:02 +00:00
										 |  |  |     def BuildKeyString(self): | 
					
						
							| 
									
										
										
										
											2003-11-24 05:26:16 +00:00
										 |  |  |         keyList = modifiers = self.GetModifiers() | 
					
						
							|  |  |  |         finalKey = self.listKeysFinal.get(ANCHOR) | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |         if finalKey: | 
					
						
							| 
									
										
										
										
											2003-11-24 05:26:16 +00:00
										 |  |  |             finalKey = self.TranslateKey(finalKey, modifiers) | 
					
						
							|  |  |  |             keyList.append(finalKey) | 
					
						
							|  |  |  |         self.keyString.set('<' + string.join(keyList,'-') + '>') | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-01-19 00:29:54 +00:00
										 |  |  |     def GetModifiers(self): | 
					
						
							| 
									
										
										
										
											2002-09-29 00:23:08 +00:00
										 |  |  |         modList = [variable.get() for variable in self.modifier_vars] | 
					
						
							| 
									
										
										
										
											2010-04-02 07:24:52 +00:00
										 |  |  |         return [mod for mod in modList if mod] | 
					
						
							| 
									
										
										
										
											2002-01-12 09:48:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-01-19 00:29:54 +00:00
										 |  |  |     def ClearKeySeq(self): | 
					
						
							|  |  |  |         self.listKeysFinal.select_clear(0,END) | 
					
						
							|  |  |  |         self.listKeysFinal.yview(MOVETO, '0.0') | 
					
						
							| 
									
										
										
										
											2002-09-29 00:23:08 +00:00
										 |  |  |         for variable in self.modifier_vars: | 
					
						
							|  |  |  |             variable.set('') | 
					
						
							|  |  |  |         self.keyString.set('') | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-01-12 09:48:02 +00:00
										 |  |  |     def LoadFinalKeyList(self): | 
					
						
							| 
									
										
										
										
											2002-01-19 00:29:54 +00:00
										 |  |  |         #these tuples are also available for use in validity checks | 
					
						
							| 
									
										
										
										
											2002-01-12 09:48:02 +00:00
										 |  |  |         self.functionKeys=('F1','F2','F2','F4','F5','F6','F7','F8','F9', | 
					
						
							|  |  |  |                 'F10','F11','F12') | 
					
						
							| 
									
										
										
										
											2002-01-19 00:29:54 +00:00
										 |  |  |         self.alphanumKeys=tuple(string.ascii_lowercase+string.digits) | 
					
						
							| 
									
										
										
										
											2002-01-19 10:33:21 +00:00
										 |  |  |         self.punctuationKeys=tuple('~!@#%^&*()_-+={}[]|;:,.<>/?') | 
					
						
							|  |  |  |         self.whitespaceKeys=('Tab','Space','Return') | 
					
						
							|  |  |  |         self.editKeys=('BackSpace','Delete','Insert') | 
					
						
							|  |  |  |         self.moveKeys=('Home','End','Page Up','Page Down','Left Arrow', | 
					
						
							|  |  |  |                 'Right Arrow','Up Arrow','Down Arrow') | 
					
						
							| 
									
										
										
										
											2002-01-19 00:29:54 +00:00
										 |  |  |         #make a tuple of most of the useful common 'final' keys | 
					
						
							| 
									
										
										
										
											2002-01-19 10:33:21 +00:00
										 |  |  |         keys=(self.alphanumKeys+self.punctuationKeys+self.functionKeys+ | 
					
						
							|  |  |  |                 self.whitespaceKeys+self.editKeys+self.moveKeys) | 
					
						
							| 
									
										
										
										
											2003-07-09 18:48:24 +00:00
										 |  |  |         self.listKeysFinal.insert(END, *keys) | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-11-24 05:26:16 +00:00
										 |  |  |     def TranslateKey(self, key, modifiers): | 
					
						
							|  |  |  |         "Translate from keycap symbol to the Tkinter keysym" | 
					
						
							|  |  |  |         translateDict = {'Space':'space', | 
					
						
							|  |  |  |                 '~':'asciitilde','!':'exclam','@':'at','#':'numbersign', | 
					
						
							| 
									
										
										
										
											2002-01-19 10:33:21 +00:00
										 |  |  |                 '%':'percent','^':'asciicircum','&':'ampersand','*':'asterisk', | 
					
						
							|  |  |  |                 '(':'parenleft',')':'parenright','_':'underscore','-':'minus', | 
					
						
							|  |  |  |                 '+':'plus','=':'equal','{':'braceleft','}':'braceright', | 
					
						
							|  |  |  |                 '[':'bracketleft',']':'bracketright','|':'bar',';':'semicolon', | 
					
						
							|  |  |  |                 ':':'colon',',':'comma','.':'period','<':'less','>':'greater', | 
					
						
							|  |  |  |                 '/':'slash','?':'question','Page Up':'Prior','Page Down':'Next', | 
					
						
							|  |  |  |                 'Left Arrow':'Left','Right Arrow':'Right','Up Arrow':'Up', | 
					
						
							| 
									
										
										
										
											2006-07-18 04:03:16 +00:00
										 |  |  |                 'Down Arrow': 'Down', 'Tab':'Tab'} | 
					
						
							| 
									
										
										
										
											2002-01-19 10:33:21 +00:00
										 |  |  |         if key in translateDict.keys(): | 
					
						
							| 
									
										
										
										
											2003-11-24 05:26:16 +00:00
										 |  |  |             key = translateDict[key] | 
					
						
							|  |  |  |         if 'Shift' in modifiers and key in string.ascii_lowercase: | 
					
						
							|  |  |  |             key = key.upper() | 
					
						
							|  |  |  |         key = 'Key-' + key | 
					
						
							| 
									
										
										
										
											2002-01-19 10:33:21 +00:00
										 |  |  |         return key | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-11-24 05:26:16 +00:00
										 |  |  |     def OK(self, event=None): | 
					
						
							| 
									
										
										
										
											2005-11-22 21:09:37 +00:00
										 |  |  |         if self.advanced or self.KeysOK():  # doesn't check advanced string yet | 
					
						
							| 
									
										
										
										
											2002-01-19 01:30:56 +00:00
										 |  |  |             self.result=self.keyString.get() | 
					
						
							|  |  |  |             self.destroy() | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-01-19 01:30:56 +00:00
										 |  |  |     def Cancel(self, event=None): | 
					
						
							|  |  |  |         self.result='' | 
					
						
							|  |  |  |         self.destroy() | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-11-24 05:26:16 +00:00
										 |  |  |     def KeysOK(self): | 
					
						
							| 
									
										
										
										
											2005-11-22 21:09:37 +00:00
										 |  |  |         '''Validity check on user's 'basic' keybinding selection.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         Doesn't check the string produced by the advanced dialog because | 
					
						
							|  |  |  |         'modifiers' isn't set. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         '''
 | 
					
						
							| 
									
										
										
										
											2003-11-24 05:26:16 +00:00
										 |  |  |         keys = self.keyString.get() | 
					
						
							| 
									
										
										
										
											2002-01-19 00:29:54 +00:00
										 |  |  |         keys.strip() | 
					
						
							| 
									
										
										
										
											2003-11-24 05:26:16 +00:00
										 |  |  |         finalKey = self.listKeysFinal.get(ANCHOR) | 
					
						
							|  |  |  |         modifiers = self.GetModifiers() | 
					
						
							|  |  |  |         # create a key sequence list for overlap check: | 
					
						
							|  |  |  |         keySequence = keys.split() | 
					
						
							|  |  |  |         keysOK = False | 
					
						
							|  |  |  |         title = 'Key Sequence Error' | 
					
						
							|  |  |  |         if not keys: | 
					
						
							|  |  |  |             tkMessageBox.showerror(title=title, parent=self, | 
					
						
							|  |  |  |                                    message='No keys specified.') | 
					
						
							|  |  |  |         elif not keys.endswith('>'): | 
					
						
							|  |  |  |             tkMessageBox.showerror(title=title, parent=self, | 
					
						
							|  |  |  |                                    message='Missing the final Key') | 
					
						
							| 
									
										
										
										
											2005-11-22 21:09:37 +00:00
										 |  |  |         elif (not modifiers | 
					
						
							|  |  |  |               and finalKey not in self.functionKeys + self.moveKeys): | 
					
						
							| 
									
										
										
										
											2003-11-24 05:26:16 +00:00
										 |  |  |             tkMessageBox.showerror(title=title, parent=self, | 
					
						
							|  |  |  |                                    message='No modifier key(s) specified.') | 
					
						
							|  |  |  |         elif (modifiers == ['Shift']) \ | 
					
						
							|  |  |  |                  and (finalKey not in | 
					
						
							| 
									
										
										
										
											2005-11-22 21:09:37 +00:00
										 |  |  |                       self.functionKeys + self.moveKeys + ('Tab', 'Space')): | 
					
						
							|  |  |  |             msg = 'The shift modifier by itself may not be used with'\ | 
					
						
							|  |  |  |                   ' this key symbol.' | 
					
						
							|  |  |  |             tkMessageBox.showerror(title=title, parent=self, message=msg) | 
					
						
							| 
									
										
										
										
											2003-11-24 05:26:16 +00:00
										 |  |  |         elif keySequence in self.currentKeySequences: | 
					
						
							|  |  |  |             msg = 'This key combination is already in use.' | 
					
						
							| 
									
										
										
										
											2005-11-22 21:09:37 +00:00
										 |  |  |             tkMessageBox.showerror(title=title, parent=self, message=msg) | 
					
						
							| 
									
										
										
										
											2003-11-24 05:26:16 +00:00
										 |  |  |         else: | 
					
						
							|  |  |  |             keysOK = True | 
					
						
							|  |  |  |         return keysOK | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-01-12 09:48:02 +00:00
										 |  |  | if __name__ == '__main__': | 
					
						
							|  |  |  |     #test the dialog | 
					
						
							|  |  |  |     root=Tk() | 
					
						
							|  |  |  |     def run(): | 
					
						
							|  |  |  |         keySeq='' | 
					
						
							| 
									
										
										
										
											2002-01-19 01:30:56 +00:00
										 |  |  |         dlg=GetKeysDialog(root,'Get Keys','find-again',[]) | 
					
						
							| 
									
										
										
										
											2002-01-19 00:29:54 +00:00
										 |  |  |         print dlg.result | 
					
						
							| 
									
										
										
										
											2002-01-12 09:48:02 +00:00
										 |  |  |     Button(root,text='Dialog',command=run).pack() | 
					
						
							|  |  |  |     root.mainloop() |