Lines Matching full:window

92     Instances of this class also handle all interaction with main window.
124 Whether entry should be shown in main window.
127 String to display in a main window's Listbox.
142 a main window. Also selects choice value.
145 Called when '<Return>' key is pressed in a main window with 'SELECT'
147 choice value. For non-bool/tristate symbols asks MenuConfig window to
151 Called when '<Return>' key is pressed in a main window with 'HELP' action
153 text window.
281 all necessary interaction with MenuConfig window when symbol value
306 all necessary interaction with MenuConfig window when symbol value
425 Creates modal dialog (top-level Tk window) with labels, entry box and two
431 self.dlg.withdraw() #hiden window
473 # Center dialog window
475 self.dlg.deiconify() # show window
491 self.dlg.withdraw() #hiden window
514 # Center dialog window
516 self.dlg.deiconify() # show window
554 self.root.withdraw() #hiden window
557 # Window title
559 # Some empirical window size
633 # Center window
635 self.root.deiconify() # show window
652 # Register callback that's called when window closes
944 Sets status string displayed at the bottom of the window
1107 def _center_window(root, window): argument
1110 Attempts to center window on screen
1114 # window.winfo_pathname(window.winfo_id())
1116 w = window.winfo_width()
1117 h = window.winfo_height()
1118 ws = window.winfo_screenwidth()
1119 hs = window.winfo_screenheight()
1122 window.geometry('+{:d}+{:d}'.format(int(x), int(y)))
1123 window.lift()
1124 window.focus_force()
1127 def _center_window_above_parent(root, window): argument
1130 Attempts to center window above its parent window
1133 # window.winfo_pathname(window.winfo_id())
1136 parent = window.master
1137 w = window.winfo_width()
1138 h = window.winfo_height()
1145 window.geometry('+{:d}+{:d}'.format(int(x), int(y)))
1146 window.lift()
1147 window.focus_force()
1175 help='silent mode, not show window'
1188 print("In normal mode. Will show menuconfig window.")
1197 print("In silent mode. Don`t show menuconfig window.")