/external/python/cpython2/Lib/idlelib/ |
D | keybindingDialog.py | 68 self.frameKeySeqAdvanced.grid(row=0,column=0,sticky=NSEW,padx=5,pady=5) 69 self.frameKeySeqBasic.grid(row=0,column=0,sticky=NSEW,padx=5,pady=5) 71 self.frameHelpAdvanced.grid(row=1,column=0,sticky=NSEW,padx=5) 72 self.frameControlsBasic.grid(row=1,column=0,sticky=NSEW,padx=5) 130 labelHelpAdvanced.grid(row=0,column=0,sticky=NSEW)
|
D | tabbedpages.py | 327 self.frame.grid(row=0, column=0, sticky=NSEW) 338 self.frame.grid(row=0, column=0, sticky=NSEW) 399 self.pages_frame.grid(row=1, column=0, sticky=NSEW) 411 self._tab_set.grid(row=0, column=0, sticky=NSEW)
|
D | aboutDialog.py | 79 py_button_f.grid(row=10, column=0, columnspan=2, sticky=NSEW) 99 idle_button_f.grid(row=13, column=0, columnspan=3, sticky=NSEW)
|
D | configDialog.py | 354 self.listBindings.grid(row=1, column=0, sticky=NSEW) 360 self.optMenuKeysBuiltin.grid(row=0, column=1, sticky=NSEW) 361 self.optMenuKeysCustom.grid(row=1, column=1, sticky=NSEW) 1349 ).grid(row=row, column=1, sticky=NSEW, padx=7) 1353 ).grid(row=row, column=1, sticky=NSEW, padx=7)
|
/external/python/cpython3/Lib/idlelib/ |
D | codecontext.py | 18 from tkinter.constants import NSEW, SUNKEN 129 context.grid(row=0, column=1, sticky=NSEW) 135 self.cell00.grid(row=0, column=0, sticky=NSEW)
|
D | help_about.py | 10 from tkinter import SUNKEN, TOP, BOTTOM, LEFT, X, BOTH, W, EW, NSEW, E 112 py_buttons.grid(row=10, column=0, columnspan=2, sticky=NSEW) 135 idle_buttons.grid(row=13, column=0, columnspan=3, sticky=NSEW)
|
D | textview.py | 5 HORIZONTAL, VERTICAL, NS, EW, NSEW, NONE, WORD, SUNKEN 50 text.grid(row=0, column=0, sticky=NSEW)
|
D | sidebar.py | 315 self.sidebar_text.grid(row=1, column=0, sticky=tk.NSEW) 457 self.canvas.grid(row=1, column=0, sticky=tk.NSEW, padx=2, pady=0) 528 text.grid(row=1, column=1, sticky=tk.NSEW)
|
D | configdialog.py | 17 NONE, BOTH, X, Y, W, E, EW, NS, NSEW, NW, 1273 self.bindingslist.grid(row=1, column=0, sticky=NSEW) 1279 self.builtinlist.grid(row=0, column=1, sticky=NSEW) 1280 self.customlist.grid(row=1, column=1, sticky=NSEW) 1281 self.keys_message.grid(row=0, column=2, sticky=NSEW, padx=5, pady=5) 2045 ).grid(row=row, column=1, sticky=NSEW, padx=7) 2050 ).grid(row=row, column=1, sticky=NSEW, padx=7)
|
D | editor.py | 214 vbar.grid(row=1, column=2, sticky=NSEW) 217 text.grid(row=1, column=1, sticky=NSEW)
|
/external/python/cpython3/Lib/tkinter/ |
D | constants.py | 18 NSEW='nsew' variable
|
/external/python/cpython2/Lib/lib-tk/ |
D | Tkconstants.py | 18 NSEW='nsew' variable
|
/external/python/cpython3/Lib/idlelib/idle_test/ |
D | test_codecontext.py | 7 from tkinter import NSEW, Tk, Frame, Text, TclError 65 text.grid(row=1, column=1, sticky=NSEW)
|
D | test_sidebar.py | 51 cls.text.grid(row=1, column=1, sticky=tk.NSEW)
|
/external/python/cpython2/Misc/ |
D | HISTORY | 11309 - Added NS, EW, and NSEW constants, for grid's sticky option.
|
/external/python/cpython3/Misc/ |
D | HISTORY | 28688 - Added NS, EW, and NSEW constants, for grid's sticky option.
|