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

Lines Matching full:none

59 def _format_optdict(optdict, script=False, ignore=None):
70 if value is not None:
96 if val is not None:
119 spec = None
160 [("Menubutton.background", None),
265 typename = getattr(val, 'typename', None)
266 if typename is None:
309 specified with the None value, the value for that option is returned.
335 if getattr(val[0], 'typename', None) == 'StateSpec':
347 def setup_master(master=None):
348 """If master is not None, itself is returned. If master is None,
352 If it is not allowed to use the default root and master is None,
354 if master is None:
369 def __init__(self, master=None):
380 def configure(self, style, query_opt=None, **kw):
386 if query_opt is not None:
387 kw[query_opt] = None
391 def map(self, style, query_opt=None, **kw):
399 if query_opt is not None:
407 def lookup(self, style, option, state=None, default=None):
419 def layout(self, style, layoutspec=None):
424 None that evaluates to False if you want to "turn off" that style.
431 A layout can contain the value None, if takes no options, or
451 lspec = None
454 elif layoutspec is not None: # will disable the layout ({}, '', etc)
479 def theme_create(self, themename, parent=None, settings=None):
513 def theme_use(self, themename=None):
514 """If themename is None, returns the theme in use, otherwise, set
517 if themename is None:
531 def __init__(self, master, widgetname, kw=None):
566 def instate(self, statespec, callback=None, *args, **kw):
580 def state(self, statespec=None):
583 Widget state is returned if statespec is None, otherwise it is
587 if statespec is not None:
597 def __init__(self, master=None, **kw):
620 def __init__(self, master=None, **kw):
650 def __init__(self, master=None, widget=None, **kw):
664 none, key, focus, focusin, focusout, all
692 def __init__(self, master=None, **kw):
707 def current(self, newindex=None):
724 def __init__(self, master=None, **kw):
741 def __init__(self, master=None, **kw):
762 def __init__(self, master=None, **kw):
782 def __init__(self, master=None, **kw):
802 def __init__(self, master=None, **kw):
859 empty string if none."""
878 def select(self, tab_id=None):
888 def tab(self, tab_id, option=None, **kw):
894 if option is not None:
895 kw[option] = None
934 def __init__(self, master=None, **kw):
964 def pane(self, pane, option=None, **kw):
971 if option is not None:
972 kw[option] = None
976 def sashpos(self, index, newpos=None):
996 def __init__(self, master=None, **kw):
1010 def start(self, interval=None):
1018 def step(self, amount=None):
1035 def __init__(self, master=None, **kw):
1063 def __init__(self, master=None, **kw):
1077 def configure(self, cnf=None, **kw):
1089 def get(self, x=None, y=None):
1101 def __init__(self, master=None, **kw):
1119 def __init__(self, master=None, **kw):
1137 def __init__(self, master=None, **kw):
1154 def __init__(self, master=None, **kw):
1177 def bbox(self, item, column=None):
1187 def get_children(self, item=None):
1203 def column(self, column, option=None, **kw):
1209 if option is not None:
1210 kw[option] = None
1235 def focus(self, item=None):
1237 returns the current focus item, or '' if there is none."""
1241 def heading(self, column, option=None, **kw):
1267 if option is not None:
1268 kw[option] = None
1317 def insert(self, parent, index, iid=None, **kw):
1340 def item(self, item, option=None, **kw):
1347 if option is not None:
1348 kw[option] = None
1391 def selection(self, selop=None, items=None):
1416 def set(self, item, column=None, value=None):
1422 if column is None and value is None:
1428 def tag_bind(self, tagname, sequence=None, callback=None):
1435 def tag_configure(self, tagname, option=None, **kw):
1442 if option is not None:
1443 kw[option] = None
1448 def tag_has(self, tagname, item=None):
1466 def __init__(self, master=None, variable=None, from_=0, to=10, **kw):
1557 def __init__(self, master, variable, default=None, *values, **kwargs):
1572 kw = {'textvariable': variable, 'style': kwargs.pop('style', None),
1573 'direction': kwargs.pop('direction', None)}
1578 self._callback = kwargs.pop('command', None)
1593 def set_menu(self, default=None, *values):