Home | History | Annotate | Download | only in lib-tk

Lines Matching defs:Grid

14 or Grid. These managers can be called with methods place, pack, grid
1309 # Grid methods that apply to the master
1312 box of this widget controlled by the geometry manager grid.
1322 args = ('grid', 'bbox', self._w)
1341 res = self.tk.call('grid',
1357 ('grid', command, self._w, index)
1365 """Configure column INDEX of a grid.
1378 'grid', 'location', self._w, x, y)) or None
1388 'grid', 'propagate', self._w))
1390 self.tk.call('grid', 'propagate', self._w, flag)
1392 """Configure row INDEX of a grid.
1400 """Return a tuple of the number of column and rows in the grid."""
1402 self.tk.call('grid', 'size', self._w)) or None
1414 ('grid', 'slaves', self._w) + args)))
1600 resized on grid boundaries. WIDTHINC and HEIGHTINC are the width and
1601 height of a grid unit in pixels. BASEWIDTH and BASEHEIGHT are the
1602 number of grid units requested in Tk_GeometryRequest."""
1604 'wm', 'grid', self._w,
1606 grid = wm_grid
1653 the values are given in grid units. Return the current values if None
1660 the values are given in grid units. Return the current values if None
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.
1941 class Grid:
1942 """Geometry manager Grid.
1947 """Position a widget in the parent widget in a grid. Use as options:
1962 ('grid', 'configure', self._w)
1964 grid = configure = config = grid_configure
1969 self.tk.call('grid', 'forget', self._w)
1972 """Unmap this widget but remember the grid options."""
1973 self.tk.call('grid', 'remove', self._w)
1976 for positioning this widget in a grid."""
1978 self.tk.call('grid', 'info', self._w))
2050 class Widget(BaseWidget, Pack, Place, Grid):
2054 Pack, Place or Grid."""