Lines Matching defs:Place
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
1301 # Place method that applies to the master
1308 'place', 'slaves', self._w)))
1828 # Ideally, the classes Pack, Place and Grid disappear, the
1829 # pack/place/grid methods are defined on the Widget class, and
1831 # ...), with pack(), place() and grid() being short for
1835 # Pack, Place or Grid class, so I leave them intact -- but only as
1840 # copied into the Pack, Place or Grid class.
1891 class Place:
1892 """Geometry manager Place.
1896 """Place a widget in the parent widget. Use as options:
1918 ('place', 'configure', self._w)
1920 place = configure = config = place_configure
1923 self.tk.call('place', 'forget', self._w)
1929 self.tk.call('place', 'info', self._w))
2050 class Widget(BaseWidget, Pack, Place, Grid):
2054 Pack, Place or Grid."""
3615 """Place the proxy at the given x and y coordinates.
3617 return self.proxy("place", x, y)
3646 """Place the sash given by index at the given coordinates
3648 return self.sash("place", index, x, y)