Lines Matching +full:expand +full:- +full:brackets
28 _htest - bool, change box location when running htest
29 _utest - bool, don't wait_window when running unittest
70 #self.bind('<Alt-a>', self.Apply) #apply changes, save
83 self.tabPages.pack(side=TOP, expand=TRUE, fill=BOTH)
136 '<ButtonRelease-1>', self.OnListFontButtonRelease)
161 frameFont.pack(side=LEFT, padx=5, pady=5, expand=TRUE, fill=BOTH)
167 self.listFontName.pack(side=LEFT, expand=TRUE, fill=X)
172 frameFontSample.pack(side=TOP, padx=5, pady=5, expand=TRUE, fill=BOTH)
173 self.labelFontSample.pack(expand=TRUE, fill=BOTH)
204 text.bind('<Double-Button-1>', lambda e: 'break')
205 text.bind('<B1-Motion>', lambda e: 'break')
229 self.themeElements[element][0], '<ButtonPress-1>', tem)
253 command=self.SetThemeType, text='a Built-in Theme')
268 frameCustom.pack(side=LEFT, padx=5, pady=5, expand=TRUE, fill=BOTH)
271 self.frameColourSet.pack(side=TOP, padx=5, pady=5, expand=TRUE, fill=X)
274 side=TOP, padx=5, pady=5, expand=TRUE, fill=BOTH)
275 buttonSetColour.pack(side=TOP, expand=TRUE, fill=X, padx=8, pady=4)
277 side=TOP, expand=TRUE, fill=X, padx=8, pady=3)
310 labelTargetTitle = Label(frameTarget, text='Action - Key(s)')
315 self.listBindings.bind('<ButtonRelease-1>', self.KeyBindingSelected)
328 command=self.SetKeysType, text='Use a Built-in Key Set')
345 frameCustom.pack(side=BOTTOM, padx=5, pady=5, expand=TRUE, fill=BOTH)
349 frameTarget.pack(side=LEFT, padx=5, pady=5, expand=TRUE, fill=BOTH)
362 self.buttonDeleteCustomKeys.pack(side=LEFT, fill=X, expand=True, padx=2)
363 buttonSaveCustomKeys.pack(side=LEFT, fill=X, expand=True, padx=2)
364 frames[0].pack(side=TOP, fill=BOTH, expand=True)
365 frames[1].pack(side=TOP, fill=X, expand=True, pady=2)
420 value="locale", text="Locale-defined")
423 value="utf-8", text="UTF-8")
436 self.listHelp.bind('<ButtonRelease-1>', self.HelpSourceSelected)
453 frameHelp.pack(side=TOP, padx=5, pady=5, expand=TRUE, fill=BOTH)
475 frameHelpList.pack(side=TOP, padx=5, pady=5, expand=TRUE, fill=BOTH)
477 self.listHelp.pack(side=LEFT, anchor=E, expand=TRUE, fill=BOTH)
521 self.AddChangedItem('main', 'EditorWindow', 'font-size', value)
523 self.AddChangedItem('main', 'EditorWindow', 'font-bold', value)
527 self.AddChangedItem('main', 'Indent', 'num-spaces', value)
548 if value != '- no custom themes -':
582 if value != '- no custom keys -':
604 self.AddChangedItem('main', 'General', 'editor-on-startup', value)
680 if self.keysAreBuiltin.get(): #current key set is a built-in
691 self.listBindings.insert(listIndex, bindName+' - '+newKeys)
724 eventName = event[2:-2] #trim off the angle brackets
753 bindName = bindName[2:-2] #trim off the angle brackets
758 self.listBindings.insert(END, bindName+' - '+key)
782 self.optMenuKeysCustom.SetMenu(itemList, '- no custom keys -')
811 self.optMenuThemeCustom.SetMenu(itemList, '- no custom themes -')
830 if self.themeIsBuiltin.get(): #current theme is a built-in
849 themeElement = sampleElement + '-' + plane
935 if element + '-foreground' in themeDict:
936 colours['foreground'] = themeDict[element + '-foreground']
937 if element + '-background' in themeDict:
938 colours['background'] = themeDict[element + '-background']
992 ';'.join(self.userHelpList[num-1][:2]))
1025 'main', 'Indent', 'num-spaces', default=4, type='int')
1043 self.customTheme.set('- no custom themes -')
1076 self.customKeys.set('- no custom keys -')
1094 'main', 'General', 'editor-on-startup', default=1, type='bool'))
1131 keySetName - string, the name of the new key set
1132 keySet - dictionary containing the new key set
1143 themeName - string, the name of the new theme
1144 theme - dictionary containing the new theme
1184 #config must be done - remove the previous keybindings
1221 This code is generic - it works for any and all IDLE extensions.
1228 Not all changes take effect immediately - some may require restarting IDLE.
1241 # create widgets - a listbox shows all available extensions, with the
1421 vscrollbar.pack(fill=Y, side=RIGHT, expand=FALSE)
1424 canvas.pack(side=LEFT, fill=BOTH, expand=TRUE)