Lines Matching full:keys
11 action - string, the name of the virtual event these keys will be
73 text="New keys for '"+self.action+"' :")
90 "Select the desired modifier keys\n"+
106 text='Clear Keys',command=self.ClearKeySeq)
131 keyboard has these keys, it matters if Tk understands them. The
133 config-keys.def must use the same ordering.
189 #make a tuple of most of the useful common 'final' keys
190 keys=(self.alphanumKeys+self.punctuationKeys+self.functionKeys+
192 self.listKeysFinal.insert(END, *keys)
206 if key in translateDict.keys():
229 keys = self.keyString.get()
230 keys.strip()
234 keySequence = keys.split()
237 if not keys:
239 message='No keys specified.')
240 elif not keys.endswith('>'):
265 dlg=GetKeysDialog(root,'Get Keys','find-again',[])