Lines Matching full:pack
13 Widgets are positioned with one of the geometry managers Place, Pack
14 or Grid. These managers can be called with methods place, pack, grid
25 frame.pack(fill=BOTH,expand=1)
27 label.pack(fill=X, expand=1)
29 button.pack(side=BOTTOM)
1729 # Pack methods that apply to the master
1741 'pack', 'propagate', self._w))
1743 self.tk.call('pack', 'propagate', self._w, flag)
1752 self.tk.call('pack', 'slaves', self._w))]
2412 # Ideally, the classes Pack, Place and Grid disappear, the
2413 # pack/place/grid methods are defined on the Widget class, and
2414 # everybody uses w.pack_whatever(...) instead of Pack.whatever(w,
2415 # ...), with pack(), place() and grid() being short for
2419 # Pack, Place or Grid class, so I leave them intact -- but only as
2424 # copied into the Pack, Place or Grid class.
2431 class Pack:
2432 """Geometry manager Pack.
2437 """Pack a widget in the parent widget. Use as options:
2438 after=widget - pack it after you have packed widget
2441 before=widget - pack it before you will pack widget
2453 ('pack', 'configure', self._w)
2456 pack = configure = config = pack_configure
2460 self.tk.call('pack', 'forget', self._w)
2467 d = _splitdict(self.tk, self.tk.call('pack', 'info', self._w))
2646 class Widget(BaseWidget, Pack, Place, Grid):
2650 Pack, Place or Grid."""
4626 label.pack()
4630 test.pack()
4633 quit.pack()