Lines Matching refs:grid
14 or Grid. These managers can be called with methods place, pack, grid
1768 """The anchor value controls how to place the grid within the
1772 self.tk.call('grid', 'anchor', self._w, anchor)
1778 box of this widget controlled by the geometry manager grid.
1788 args = ('grid', 'bbox', self._w)
1824 self.tk.call('grid', command, self._w, index),
1827 ('grid', command, self._w, index)
1833 """Configure column INDEX of a grid.
1848 'grid', 'location', self._w, x, y)) or None
1859 'grid', 'propagate', self._w))
1861 self.tk.call('grid', 'propagate', self._w, flag)
1864 """Configure row INDEX of a grid.
1874 """Return a tuple of the number of column and rows in the grid."""
1876 self.tk.call('grid', 'size', self._w)) or None
1890 ('grid', 'slaves', self._w) + args))]
2108 resized on grid boundaries. WIDTHINC and HEIGHTINC are the width and
2109 height of a grid unit in pixels. BASEWIDTH and BASEHEIGHT are the
2110 number of grid units requested in Tk_GeometryRequest."""
2112 'wm', 'grid', self._w,
2115 grid = wm_grid
2212 the values are given in grid units. Return the current values if None
2221 the values are given in grid units. Return the current values if None
2413 # pack/place/grid methods are defined on the Widget class, and
2415 # ...), with pack(), place() and grid() being short for
2535 """Position a widget in the parent widget in a grid. Use as options:
2550 ('grid', 'configure', self._w)
2553 grid = configure = config = grid_configure
2559 self.tk.call('grid', 'forget', self._w)
2564 """Unmap this widget but remember the grid options."""
2565 self.tk.call('grid', 'remove', self._w)
2569 for positioning this widget in a grid."""
2570 d = _splitdict(self.tk, self.tk.call('grid', 'info', self._w))