Home | History | Annotate | Download | only in idlelib

Lines Matching refs:tabs

7 TabSet -- A widget containing tabs (buttons) in one or more rows.
17 """A widget containing tabs (buttons) in one or more rows.
23 tabs=None, n_rows=1, max_tabs_per_row=5,
31 tabs -- A list of strings, the names of the tabs. Should be specified in
33 active tab. If tabs is None or empty, the TabSet will be initialized
36 n_rows -- Number of rows of tabs to be shown. If n_rows <= 0 or is
40 max_tabs_per_row -- Used for deciding how many rows of tabs are needed,
54 if tabs:
55 self._tab_names = list(tabs)
137 Arrange the tabs in rows, in the order in which they were added.
140 number of rows will be calculated according to the number of tabs and
142 adding/removing tabs.
145 # remove all tabs and rows
159 # not expanding the tabs with more than one row is very ugly
163 # calculate required number of tabs in this row
213 tabs are related to changes.
292 Constains set of 'pages' (or 'panes') with tabs above for selecting which
369 manage the tabs. See TabSet's docs for details.