here2share

Python: module Tkinter

Sep 13th, 2020
281
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 245.72 KB | None | 0 0
  1. # -*- coding: utf-8 -*-
  2.  
  3. zzz = '''
  4. Python: module TkinterModule Docs
  5.  
  6.     Wrapper functions for Tcl/Tk.
  7.     Tkinter provides classes which allow the display, positioning and
  8.     control of widgets. Toplevel. Other widgets are Radiobutton,
  9.     Spinbox, PanedWindow.
  10.    
  11.     Properties of the widgets are specified with keyword arguments.
  12.     Keyword arguments have the same name as the corresponding resource
  13.     under Tk.
  14.    
  15.     Widgets are positioned with one of the geometry managers Pack
  16.     or Grid. These managers can be called with methods place, pack, grid
  17.     available in every Widget.
  18.    
  19.     Actions are bound to events by resources (e.g. keyword argument
  20.     command) or with the method bind. Example (Hello, World).
  21.    
  22.     import Tkinter
  23.     from Tkconstants import *
  24.     tk = Tkinter.Tk()
  25.     frame = Tkinter.Frame(tk, relief=RIDGE, borderwidth=2)
  26.     frame.pack(fill=BOTH,expand=1)
  27.     label = Tkinter.Label(frame, text="Hello, World")
  28.     label.pack(fill=X, expand=1)
  29.     button = Tkinter.Button(frame,text="Exit",command=tk.destroy)
  30.     button.pack(side=BOTTOM)
  31.     tk.mainloop()
  32.  
  33. +++ Module
  34. --- Tkinter
  35.     CallWrapper
  36.     Event
  37.     Grid
  38.     Image
  39.             BitmapImage
  40.             PhotoImage
  41.     Misc
  42.             BaseWidget
  43.                     Toplevel(BaseWidget, Wm)
  44.                     Pack,
  45.                     Place,
  46.                     Widget(BaseWidget, Grid)
  47.                             Button
  48.                                     Studbutton
  49.                                     Tributton
  50.                             XView,
  51.                             Canvas(Widget, YView)
  52.                             Checkbutton
  53.                             Entry(Widget, XView)
  54.                             Frame
  55.                             Label
  56.                             LabelFrame
  57.                             XView,
  58.                             Listbox(Widget, YView)
  59.                             Menu
  60.                             Menubutton
  61.                                     OptionMenu
  62.                             Message
  63.                             PanedWindow
  64.                             Radiobutton
  65.                             Scale
  66.                             Scrollbar
  67.                             Spinbox(Widget, XView)
  68.                             XView,
  69.                             Text(Widget, YView)
  70.             Tk(Misc, Wm)
  71.     Pack
  72.     Place
  73.     Variable
  74.             BooleanVar
  75.             DoubleVar
  76.             IntVar
  77.             StringVar
  78.     Wm
  79.     XView
  80.     YView  
  81.  
  82. *** Internal class
  83.     Methods defined here:
  84.  
  85. +++ __init__(self, master, widgetName, cnf=()):
  86.     Construct a widget with the parent widget MASTER, a name WIDGETNAME
  87.     and appropriate options.
  88.  
  89. +++ destroy(self):
  90.     Destroy this and all descendants widgets.Methods inherited from Misc:
  91.  
  92. +++ __contains__(self, key)
  93.  
  94. +++ __getitem__ = cget(self, key):
  95.     Return the resource value for a KEY given as string.
  96.  
  97. +++ __setitem__(self, key, value)
  98.  
  99. +++ __str__(self):
  100.     Return the window path name of this widget.
  101.    
  102. +++ after(self, ms, func=None, *args):
  103.     Call function once after given time.
  104.     MS specifies the time in milliseconds. FUNC gives the
  105.     function which shall be called. Additional parameters
  106.     are given as parameters to the function call.  Return
  107.     identifier to cancel scheduling with after_cancel.
  108.  
  109. +++ after_cancel(self, id):
  110.     Cancel scheduling of function identified with ID.
  111.     Identifier returned by after or after_idle must be
  112.     given as first parameter.
  113.  
  114. +++ after_idle(self, func, *args):
  115.     Call FUNC once if the Tcl main loop has no event to
  116.     process.
  117.     Return an identifier to cancel the scheduling with
  118.     after_cancel.
  119.  
  120. +++ bbox = grid_bbox(self, column=None):
  121.     Return a tuple of integer coordinates for the bounding
  122.     box of this widget controlled by the geometry manager grid.
  123.     If COLUMN, ROW is given the bounding box applies from
  124.     the cell with row and column 0 to the specified
  125.     cell. If COL2 and ROW2 are given the bounding box
  126.     starts at that cell.
  127.     The returned integers specify the offset of the upper left
  128.     corner in the master widget and the width and height.
  129.  
  130. +++ bell(self, display of=0):
  131.     Ring a display's bell.
  132.  
  133. +++ bind(self, sequence=None):
  134.     Bind to this widget at event SEQUENCE a call to function FUNC.
  135.     SEQUENCE is a string of concatenated event
  136.     patterns. An event pattern is of the form<MODIFIER-MODIFIER-TYPE-DETAIL> where MODIFIER is one
  137.     of Control, Mod2, M2, Shift, Mod3, M3, Lock, Mod4, M4,
  138.     Button1, B1, Mod5, M5 Button2, B2, Meta, M, Button3,
  139.     B3, Alt, Button4, B4, Double, Button5, B5 Triple,
  140.     Mod1, M1. TYPE is one of Activate, Enter, Map,
  141.     ButtonPress, Button, Expose, Motion, ButtonRelease
  142.     FocusIn, MouseWheel, Circulate, FocusOut, Property,
  143.     Colormap, Gravity Reparent, Configure, KeyPress, Key,
  144.     Unmap, Deactivate, KeyRelease Visibility, Destroy,
  145.     Leave and DETAIL is the button number for ButtonPress,
  146.     ButtonRelease and DETAIL is the Keysym for KeyPress and
  147.     KeyRelease. Examples are<Control-Button-1> for pressing Control and mouse button 1 or<Alt-A> for pressing A and the Alt key (KeyPress can be omitted).
  148.     An event pattern can also be a virtual event of the form<<AString>> where AString can be arbitrary. This
  149.     event can be generated by event_generate.
  150.     If events are concatenated they must appear shortly
  151.     after each other.
  152.     FUNC will be called if the event sequence occurs with an
  153.     instance of Event as argument. If the return value of FUNC is
  154.     "break" no further bound function is invoked.
  155.     An additional boolean parameter ADD specifies whether FUNC will
  156.     be called additionally to the other bound function or whether
  157.     it will replace the previous function.
  158.     Bind will return an identifier to allow deletion of the bound function with
  159.     unbind without memory leak.
  160.     If FUNC or SEQUENCE is omitted the bound function or list
  161.     of bound events are returned.
  162.  
  163. +++ bind_all(self, sequence=None):
  164.     Bind to all widgets at an event SEQUENCE a call to function FUNC.
  165.     An additional boolean parameter ADD specifies whether FUNC will
  166.     be called additionally to the other bound function or whether
  167.     it will replace the previous function. See bind for the return value.
  168.  
  169. +++ bind_class(self, className, sequence=None):
  170.     Bind to widgets with bindtag CLASSNAME at event
  171.     SEQUENCE a call of function FUNC. An additional
  172.     boolean parameter ADD specifies whether FUNC will be
  173.     called additionally to the other bound function or
  174.     whether it will replace the previous function. See bind for
  175.     the return value.
  176.  
  177. +++ bindtags(self, tagList=None):
  178.     Set or get the list of bindtags for this widget.
  179.     With no argument return the list of all bindtags associated with
  180.     this widget. With a list of strings as argument the bindtags are
  181.     set to this list. The bindtags determine in which order events are
  182.     processed (see bind).
  183.  
  184. +++ cget(self, key):
  185.  
  186. +++ clipboard_append(self, string, **kw):
  187.     Append STRING to the Tk clipboard.
  188.     A widget specified at the optional display of keyword
  189.     argument specifies the target display. The clipboard
  190.     can be retrieved with selection_get.
  191.  
  192. +++ clipboard_clear(self, **kw):
  193.     Clear the data in the Tk clipboard.
  194.     A widget specified for the optional display of keyword
  195.     argument specifies the target display.
  196.  
  197. +++ clipboard_get(self, **kw):
  198.     Retrieve data from the clipboard on window's display.
  199.     The window keyword defaults to the root window of the Tkinter
  200.     application.
  201.     The type keyword specifies the form in which the data is
  202.     to be returned and should be an atom name such as STRING
  203.     or FILE_NAME.  Type defaults to STRING, except on X11, where the default
  204.     is to try UTF8_STRING and fall back to STRING.
  205.     This command is equivalent to:
  206.     selection_get(CLIPBOARD)
  207.  
  208. +++ colormodel(self, value=None):
  209.     Useless. Not implemented in Tk.
  210.  
  211. +++ columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
  212.     Configure column INDEX of a grid.
  213.     Valid resources are minsize (minimum size of the column),
  214.     weight (how much does additional space propagate to this column)
  215.     and pad (how much space to let additionally).
  216.  
  217. +++ config = configure(self, cnf=None, **kw):
  218.     Configure resources of a widget.
  219.     The values for resources are specified as keyword
  220.     arguments. To get an overview about
  221.     the allowed keyword arguments call the method keys.
  222.  
  223. +++ configure(self, cnf=None, **kw):
  224.  
  225. +++ deletecommand(self, name):
  226.     Internal function.
  227.     Delete the Tcl command provided in NAME.
  228.  
  229. +++ event_add(self, virtual, *sequences):
  230.     Bind a virtual event VIRTUAL (of the form <<Name>>)
  231.     to an event SEQUENCE such that the virtual event is triggered
  232.     whenever SEQUENCE occurs.
  233.  
  234. +++ event_delete(self, virtual, *sequences):
  235.     Unbind a virtual event VIRTUAL from SEQUENCE.
  236.  
  237. +++ event_generate(self, sequence, **kw):
  238.     Generate an event SEQUENCE. Additional
  239.     keyword arguments specify parameter of the event
  240.     (e.g. x, y, rootx, rooty).
  241.  
  242. +++ event_info(self, virtual=None):
  243.     Return a list of all virtual events or the information
  244.     about the SEQUENCE bound to the virtual event VIRTUAL.
  245.  
  246. +++ focus = focus_set(self):
  247.     Direct input focus to this widget.
  248.     If the application currently does not have the focus
  249.     this widget will get the focus if the application gets
  250.     the focus through the window manager.
  251.  
  252. +++ focus_display of(self):
  253.     Return the widget which has currently the focus on the
  254.     display where this widget is located.
  255.     Return None if the application does not have the focus.
  256.  
  257. +++ focus_force(self):
  258.     Direct input focus to this widget even if the
  259.     application does not have the focus. Use with
  260.     caution!
  261.  
  262. +++ focus_get(self):
  263.     Return the widget which has currently the focus in the
  264.     application.
  265.     Use focus_display of to allow working with several
  266.     displays. Return None if application does not have
  267.     the focus.
  268.  
  269. +++ focus_lastfor(self):
  270.     Return the widget which would have the focus if top level
  271.     for this widget gets the focus from the window manager.
  272.  
  273. +++ focus_set(self):
  274.  
  275. +++ getboolean(self, s):
  276.     Return a boolean value for Tcl boolean values true and false given as parameter.
  277.  
  278. +++ getvar(self, name='PY_VAR'):
  279.     Return value of Tcl variable NAME.
  280.  
  281. +++ grab_current(self):
  282.     Return widget which has currently the grab in this application
  283.     or None.
  284.  
  285. +++ grab_release(self):
  286.     Release grab for this widget if currently set.
  287.  
  288. +++ grab_set(self):
  289.     Set grab for this widget.
  290.     A grab directs all events to this and descendant
  291.     widgets in the application.
  292.  
  293. +++ grab_set_global(self):
  294.     Set global grab for this widget.
  295.     A global grab directs all events to this and
  296.     descendant widgets on the display. Use with caution -
  297.     other applications do not get events anymore.
  298.  
  299. +++ grab_status(self):
  300.     Return None, "local" or "global" if this widget has
  301.     no, a local or a global grab.
  302.  
  303. +++ grid_bbox(self, column=None):
  304.  
  305. +++ grid_columnconfigure(self, index, cnf={}, **kw):
  306.  
  307. +++ grid_location(self, x, y):
  308.     Return a tuple of column and row which identify the cell
  309.     at which the pixel at position X and Y inside the master
  310.     widget is located.
  311.  
  312. +++ grid_propagate(self, flag=['_noarg_']):
  313.     Set or get the status for propagation of geometry information.
  314.     A boolean argument specifies whether the geometry information
  315.     of the slaves will determine the size of this widget. If no argument
  316.     is given, the current setting will be returned.
  317.  
  318. +++ grid_rowconfigure(self, index, cnf={}, **kw):
  319.     Configure row INDEX of a grid.
  320.     Valid resources are minsize (minimum size of the row),
  321.     weight (how much does additional space propagate to this row)
  322.  
  323. +++ grid_size(self):
  324.     Return a tuple of the number of column and rows in the grid.
  325.  
  326. +++ grid_slaves(self, row=None):
  327.     Return a list of all slaves of this widget
  328.     in its packing order.
  329.  
  330. +++ image_names(self):
  331.     Return a list of all existing image names.
  332.  
  333. +++ image_types(self):
  334.     Return a list of all available image types (e.g. phote bitmap).
  335.  
  336. +++ keys(self):
  337.     Return a list of all resource names of this widget.
  338.  
  339. +++ lift = tkraise(self, aboveThis=None):
  340.     Raise this widget in the stacking order.
  341.  
  342. +++ lower(self, belowThis=None):
  343.     Lower this widget in the stacking order.
  344.  
  345. +++ mainloop(self, n=0):
  346.     Call the mainloop of Tk.
  347.  
  348. +++ nametowidget(self, name):
  349.     Return the Tkinter instance of a widget identified by
  350.     its Tcl name NAME.
  351.  
  352. +++ option_add(self, pattern, value, priority=None):
  353.     Set a VALUE (second parameter) for an option
  354.     PATTERN (first parameter).
  355.     An optional third parameter gives the numeric priority
  356.     (defaults to 80).
  357.  
  358. +++ option_clear(self):
  359.     Clear the option database.
  360.     It will be reloaded if option_add is called.
  361.  
  362. +++ option_get(self, name, className):
  363.     Return the value for an option NAME for this widget
  364.     with CLASSNAME.
  365.     Values with higher priority override lower values.
  366.  
  367. +++ option_readfile(self, fileName, priority=None):
  368.     Read file FILENAME into the option database.
  369.     An optional second parameter gives the numeric
  370.     priority.
  371.  
  372. +++ pack_propagate(self, flag=['_noarg_']):
  373.     is given the current setting will be returned.
  374.  
  375. +++ pack_slaves(self):
  376.  
  377. +++ place_slaves(self):
  378.  
  379. +++ propagate = pack_propagate(self, flag=['_noarg_']):
  380.  
  381. +++ quit(self):
  382.     Quit the Tcl interpreter. All widgets will be destroyed.
  383.  
  384. +++ register = _register(self, func, subst=1):
  385.     Return a newly created Tcl function. If this
  386.     function is called, the Python function FUNC will
  387.     be executed. An optional function SUBST can
  388.     be given which will be executed before FUNC.
  389.  
  390. +++ rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
  391.  
  392. +++ selection_clear(self, **kw):
  393.     Clear the current X selection.
  394.  
  395. +++ selection_get(self, **kw):
  396.     Return the contents of the current X selection.
  397.     A keyword parameter selection specifies the name of
  398.     the selection and defaults to PRIMARY.  A keyword
  399.     parameter display of specifies a widget on the display
  400.     to use. A keyword parameter type specifies the form of data to be
  401.     fetched, defaulting to STRING except on X11, where UTF8_STRING is tried
  402.     before STRING.
  403.  
  404. +++ selection_handle(self, command, **kw):
  405.     Specify a function COMMAND to call if the X
  406.     selection owned by this widget is queried by another
  407.     This function must return the contents of the
  408.     selection. The function will be called with the
  409.     arguments OFFSET and LENGTH which allows the chunking
  410.     of very long selections. The following keyword
  411.     parameters can be provided:
  412.     selection - name of the selection (default PRIMARY),
  413.     type - type of the selection (e.g. STRING, FILE_NAME).
  414.  
  415. +++ selection_own(self, **kw):
  416.     Become owner of X selection.
  417.     the selection (default PRIMARY).
  418.  
  419. +++ selection_own_get(self, **kw):
  420.     Return owner of X selection.
  421.     The following keyword parameter can
  422.     be provided:
  423.  
  424. +++ send(self, interp, cmd, *args):
  425.     Send Tcl command CMD to different interpreter INTERP to be executed.
  426.  
  427. +++ setvar(self, name='1'):
  428.     Set Tcl variable NAME to VALUE.
  429.  
  430. +++ size = grid_size(self):
  431.  
  432. +++ slaves = pack_slaves(self):
  433.  
  434. +++ tk_bisque(self):
  435.     Change the color scheme to light brown as used in Tk 3.6 and before.
  436.  
  437. +++ tk_focusFollowsMouse(self):
  438.     The widget under mouse will get automatically focus. Can not
  439.     be disabled easily.
  440.  
  441. +++ tk_focusNext(self):
  442.     Return the next widget in the focus order which follows
  443.     widget which has currently the focus.
  444.     The focus order first goes to the next child, then to
  445.     the children of the child recursively and then to the
  446.     next sibling which is higher in the stacking order.  A
  447.     widget is omitted if it has the takefocus resource set
  448.     to 0.
  449.  
  450. +++ tk_focusPrev(self):
  451.     Return previous widget in the focus order. See tk_focusNext for details.
  452.  
  453. +++ tk_menuBar(self, *args):
  454.     Do not use. Needed in Tk 3.6 and earlier.
  455.  
  456. +++ tk_setPalette(self, *args, **kw):
  457.     Set a new color scheme for all widget elements.
  458.     A single color as argument will cause that all colors of Tk
  459.     widget elements are derived from this.
  460.     Alternatively several keyword parameters and its associated
  461.     colors can be given. The following keywords are valid:
  462.     activeBackground, foreground, selectColor,
  463.     activeForeground, highlightBackground, selectBackground,
  464.     background, highlightColor, selectForeground,
  465.     disabledForeground, insertBackground, troughColor.
  466.  
  467. +++ tk_strictMotif(self, boolean=None):
  468.     Set Tcl internal variable, whether the look and feel
  469.     should adhere to Motif.
  470.     A parameter of 1 means adhere to Motif (e.g. no color
  471.     change if mouse passes over slider).
  472.     Returns the set value.
  473.  
  474. +++ tkraise(self, aboveThis=None):
  475.  
  476. +++ unbind(self, sequence, funcid=None):
  477.     Unbind for this widget for event SEQUENCE  the
  478.     function identified with FUNCID.
  479.  
  480. +++ unbind_all(self, sequence):
  481.     Unbind for all widgets for event SEQUENCE all functions.
  482.  
  483. +++ unbind_class(self, className, sequence):
  484.     Unbind for a all widgets with bindtag CLASSNAME for event SEQUENCE
  485.     all functions.
  486.  
  487. +++ update(self):
  488.     Enter event loop until all pending events have been processed by Tcl.
  489.  
  490. +++ update_idletasks(self):
  491.     Enter event loop until all idle callbacks have been called. This
  492.     will update the display of windows but not process events caused by
  493.     the user.
  494.  
  495. +++ wait_variable(self, name='PY_VAR'):
  496.     Wait until the variable is modified.
  497.     A parameter of type DoubleVar or
  498.     BooleanVar must be given.
  499.  
  500. +++ wait_visibility(self, window=None):
  501.     Wait until the visibility of a WIDGET changes
  502.     (e.g. it appears).
  503.     If no parameter is given self is used.
  504.  
  505. +++ wait_window(self, window=None):
  506.     Wait until a WIDGET is destroyed.
  507.  
  508. +++ waitvar = wait_variable(self, name='PY_VAR'):
  509.  
  510. +++ winfo_atom(self, name, display of=0):
  511.     Return integer which represents atom NAME.
  512.  
  513. +++ winfo_atomname(self, id, display of=0):
  514.     Return name of atom with identifier ID.
  515.  
  516. +++ winfo_cells(self):
  517.     Return number of cells in the colormap for this widget.
  518.  
  519. +++ winfo_children(self):
  520.     Return a list of all widgets which are children of this widget.
  521.  
  522. +++ winfo_class(self):
  523.     Return window class name of this widget.
  524.  
  525. +++ winfo_colormapfull(self):
  526.     Return true if at the last color request the colormap was full.
  527.  
  528. +++ winfo_containing(self, rootX, rootY, display of=0):
  529.     Return the widget which is at the root coordinates ROOTX, ROOTY.
  530.  
  531. +++ winfo_depth(self):
  532.     Return the number of bits per pixel.
  533.  
  534. +++ winfo_exists(self):
  535.     Return true if this widget exists.
  536.  
  537. +++ winfo_fpixels(self, number):
  538.     Return the number of pixels for the given distance NUMBER
  539.     (e.g. "3c") as float.
  540.  
  541. +++ winfo_geometry(self):
  542.     Return geometry string for this widget in the form "widthxheight+X+Y".
  543.  
  544. +++ winfo_height(self):
  545.     Return height of this widget.
  546.  
  547. +++ winfo_id(self):
  548.     Return identifier ID for this widget.
  549.  
  550. +++ winfo_interps(self, display of=0):
  551.     Return the name of all Tcl interpreters for this display.
  552.  
  553. +++ winfo_ismapped(self):
  554.     Return true if this widget is mapped.
  555.  
  556. +++ winfo_manager(self):
  557.     Return the window mananger name for this widget.
  558.  
  559. +++ winfo_name(self):
  560.     Return the name of this widget.
  561.  
  562. +++ winfo_parent(self):
  563.     Return the name of the parent of this widget.
  564.  
  565. +++ winfo_pathname(self, id, display of=0):
  566.     Return the pathname of the widget given by ID.
  567.  
  568. +++ winfo_pixels(self, number):
  569.     Rounded integer value of winfo_fpixels.
  570.  
  571. +++ winfo_pointerx(self):
  572.     Return the x coordinate of the pointer on the root window.
  573.  
  574. +++ winfo_pointerxy(self):
  575.     Return a tuple of x and y coordinates of the pointer on the root window.
  576.  
  577. +++ winfo_pointery(self):
  578.     Return the y coordinate of the pointer on the root window.
  579.  
  580. +++ winfo_reqheight(self):
  581.     Return requested height of this widget.
  582.  
  583. +++ winfo_reqwidth(self):
  584.     Return requested width of this widget.
  585.  
  586. +++ winfo_rgb(self, color):
  587.     Return tuple of decimal values for red, green, blue for
  588.     COLOR in this widget.
  589.  
  590. +++ winfo_rootx(self):
  591.     Return x coordinate of upper left corner of this widget on the
  592.     root window.
  593.  
  594. +++ winfo_rooty(self):
  595.     Return y coordinate of upper left corner of this widget on the
  596.  
  597. +++ winfo_screen(self):
  598.     Return the screen name of this widget.
  599.  
  600. +++ winfo_screencells(self):
  601.     Return the number of the cells in the colormap of the screen
  602.     of this widget.
  603.  
  604. +++ winfo_screendepth(self):
  605.     Return the number of bits per pixel of the root window of the
  606.     screen of this widget.
  607.  
  608. +++ winfo_screenheight(self):
  609.     Return the number of pixels of the height of the screen of this widget
  610.     in pixel.
  611.  
  612. +++ winfo_screenmmheight(self):
  613.     Return the number of pixels of the height of the screen of
  614.     this widget in mm.
  615.  
  616. +++ winfo_screenmmwidth(self):
  617.     Return the number of pixels of the width of the screen of
  618.  
  619. +++ winfo_screenvisual(self):
  620.     Return one of the strings directcolor, grayscale, pseudocolor,
  621.     staticcolor, staticgray, or truecolor for the default
  622.     colormodel of this screen.
  623.  
  624. +++ winfo_screenwidth(self):
  625.     this widget in pixel.
  626.  
  627. +++ winfo_server(self):
  628.     Return information of the X-Server of the screen of this widget in
  629.     the form "XmajorRminor vendor vendorVersion".
  630.  
  631. +++ winfo_toplevel(self):
  632.     Return the toplevel widget of this widget.
  633.  
  634. +++ winfo_viewable(self):
  635.     Return true if the widget and all its higher ancestors are mapped.
  636.  
  637. +++ winfo_visual(self):
  638.     staticcolor, staticgray, or truecolor for the
  639.     colormodel of this widget.
  640.  
  641. +++ winfo_visualid(self):
  642.     Return the X identifier for the visual for this widget.
  643.  
  644. +++ winfo_visualsavailable(self, includeids=0):
  645.     Return a list of all visuals available for the screen
  646.     Each item in the list consists of a visual name (see winfo_visual), a
  647.     depth and if INCLUDEIDS=1 is given also the X identifier.
  648.  
  649. +++ winfo_vrootheight(self):
  650.     Return the height of the virtual root window associated with this
  651.     widget in pixels. If there is no virtual root window return the
  652.     height of the screen.
  653.  
  654. +++ winfo_vrootwidth(self):
  655.     Return the width of the virtual root window associated with this
  656.     widget in pixel. If there is no virtual root window return the
  657.     width of the screen.
  658.  
  659. +++ winfo_vrootx(self):
  660.     Return the x offset of the virtual root relative to the root
  661.     window of the screen of this widget.
  662.  
  663. +++ winfo_vrooty(self):
  664.     Return the y offset of the virtual root relative to the root
  665.  
  666. +++ winfo_width(self):
  667.     Return the width of this widget.
  668.  
  669. +++ winfo_x(self):
  670.     Return the x coordinate of the upper left corner of this widget
  671.     in the parent.
  672.  
  673. +++ winfo_y(self):
  674.     Return the y coordinate of the upper left corner of this widgetData and other attributes inherited from Misc:
  675.  
  676. +++ getdouble = <type 'float'>:
  677.     float(x) -> floating point number
  678.     Convert a string or number to a floating point number, if possible.
  679.  
  680. +++ getint = <type 'int'>:
  681.     int(x=0) -> int or long
  682.     int(x, base=10) -> int or long
  683.     Convert a number or string to an integer, or return 0 if no arguments
  684.     are given.  If x is floating point, the conversion truncates towards zero.
  685.     If x is outside the integer range, the function returns a long instead.
  686.     If x is not a number or if base is given, then x must be a string or
  687.     Unicode object representing an integer literal in the given base.  The
  688.     literal can be preceded by '+' or '-' and be surrounded by whitespace.
  689.     The base defaults to 10.  Valid bases are 0 and 2-36.  Base 0 means to
  690.     interpret the base from the string as an integer literal.
  691.     >>> int('0b100', base=0)
  692. Image *****
  693.  
  694.     Widget which can display a bitmap.
  695.  
  696. +++ BitmapImage-__init__(self, name=None, **kw):
  697.     Create a bitmap with NAME.
  698.     Valid resource names: background, data, file, foreground, maskdata, maskfile
  699.  
  700. ...
  701. Methods inherited from Image:
  702.  
  703. +++ BitmapImage-__del__(self)
  704.  
  705. +++ BitmapImage-__getitem__(self, key)
  706.  
  707. +++ BitmapImage-__setitem__(self, key, value)
  708.  
  709. +++ BitmapImage-__str__(self)
  710.  
  711. +++ BitmapImage-config = configure(self, **kw):
  712.     Configure the image.
  713.  
  714. +++ BitmapImage-configure(self, **kw):
  715.  
  716. +++ BitmapImage-height(self):
  717.     Return the height of the image.
  718.  
  719. +++ BitmapImage-type(self):
  720.     Return the type of the imgage, e.g. "photo" or "bitmap".
  721.  
  722. +++ BitmapImage-width(self):
  723.     Return the width of the image.
  724.  
  725. Variable *****
  726.  
  727.     Value holder for boolean variables.
  728.  
  729. +++ BooleanVar-__init__(self, master=None):
  730.     Construct a boolean variable.
  731.     MASTER can be given as master widget.
  732.     VALUE is an optional value (defaults to False)
  733.     NAME is an optional Tcl name (defaults to PY_VARnum).
  734.     If NAME matches an existing variable and VALUE is omitted
  735.     then the existing value is retained.
  736.  
  737. +++ BooleanVar-get(self):
  738.     Return the value of the variable as a bool.
  739.  
  740. +++ BooleanVar-set(self, value):
  741.     Set the variable to VALUE.Methods inherited from Variable:
  742.  
  743. +++ BooleanVar-__del__(self):
  744.     Unset the variable in Tcl.
  745.  
  746. +++ BooleanVar-__eq__(self, other):
  747.     Comparison for equality (==).
  748.     Note: if the Variable's master matters to behavior
  749. also compare self.+++ _master == other._master
  750.  
  751. +++ BooleanVar-__str__(self):
  752.     Return the name of the variable in Tcl.
  753.  
  754. +++ BooleanVar-trace = trace_variable(self, mode, callback):
  755.     Define a trace callback for the variable.
  756.     MODE is one of "r", "w", "u" for read, write, undefine.
  757.     CALLBACK must be a function which is called when
  758.     the variable is read, written or undefined.
  759.     Return the name of the callback.
  760.  
  761. +++ BooleanVar-trace_variable(self, mode, callback):
  762.  
  763. +++ BooleanVar-trace_vdelete(self, mode, cbname):
  764.     Delete the trace callback for a variable.
  765.     CBNAME is the name of the callback returned from trace_variable or trace.
  766.  
  767. +++ BooleanVar-trace_vinfo(self):
  768.     Return all trace callback information.
  769.  
  770. Widget *****
  771.  
  772.     Button widget.
  773. *** Method resolution order:
  774.     Button
  775.     Widget
  776.     BaseWidget
  777.     Misc
  778.     Pack
  779.     Place
  780.     Grid
  781.  
  782. ...
  783. Methods defined here:
  784.  
  785. +++ Button-__init__(self, master={}, **kw):
  786.     Construct a button widget with the parent MASTER.
  787.     STANDARD OPTIONS
  788.         activebackground, activeforeground, anchor,
  789.         background, bitmap, borderwidth, cursor,
  790.         disabledforeground, font, foreground
  791.         highlightbackground, highlightcolor,
  792.         highlightthickness, image, justify,
  793.         padx, pady, relief, repeatdelay,
  794.         repeatinterval, takefocus, text,
  795.         textvariable, underline, wraplength
  796.     WIDGET-SPECIFIC OPTIONS
  797.         command, compound, default, height,
  798.         overrelief, state, width
  799.  
  800. +++ Button-flash(self):
  801.     Flash the button.
  802.     This is accomplished by redisplaying
  803.     the button several times, alternating between active and
  804.     normal colors. At the end of the flash the button is left
  805.     in the same normal/active state as when the command was
  806.     invoked. This command is ignored if the button's state is
  807.     disabled.
  808.  
  809. +++ Button-invoke(self):
  810.     Invoke the command associated with the button.
  811.     The return value is the return value from the command,
  812.     or an empty string if there is no command associated with
  813.     the button. This command is ignored if the button's state
  814.     is disabled.
  815.  
  816. +++ Button-tkButtonDown(self, *dummy)
  817.  
  818. +++ Button-tkButtonEnter(self, *dummy)
  819.  
  820. +++ Button-tkButtonInvoke(self, *dummy)
  821.  
  822. +++ Button-tkButtonLeave(self, *dummy)
  823.  
  824. +++ Button-tkButtonUp(self, *dummy)Methods inherited from BaseWidget:
  825.  
  826. +++ Button-destroy(self):Button-__contains__(self, key)
  827.  
  828. +++ Button-__getitem__ = cget(self, key):
  829.  
  830. +++ Button-__setitem__(self, key, value)
  831.  
  832. +++ Button-__str__(self):
  833.  
  834. +++ Button-after(self, ms, func=None, *args):
  835.  
  836. +++ Button-after_cancel(self, id):
  837.  
  838. +++ Button-after_idle(self, func, *args):
  839.  
  840. +++ Button-bbox = grid_bbox(self, column=None):
  841.  
  842. +++ Button-bell(self, display of=0):
  843.  
  844. +++ Button-bind(self, sequence=None):Button-bind_all(self, sequence=None):
  845.  
  846. +++ Button-bind_class(self, className, sequence=None):
  847.  
  848. +++ Button-bindtags(self, tagList=None):
  849.  
  850. +++ Button-cget(self, key):
  851.  
  852. +++ Button-clipboard_append(self, string, **kw):
  853.  
  854. +++ Button-clipboard_clear(self, **kw):
  855.  
  856. +++ Button-clipboard_get(self, **kw):Button-colormodel(self, value=None):
  857.  
  858. +++ Button-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
  859.  
  860. +++ Button-config = configure(self, cnf=None, **kw):
  861.  
  862. +++ Button-configure(self, cnf=None, **kw):
  863.  
  864. +++ Button-deletecommand(self, name):
  865.  
  866. +++ Button-event_add(self, virtual, *sequences):
  867.  
  868. +++ Button-event_delete(self, virtual, *sequences):
  869.  
  870. +++ Button-event_generate(self, sequence, **kw):
  871.  
  872. +++ Button-event_info(self, virtual=None):
  873.  
  874. +++ Button-focus = focus_set(self):
  875.  
  876. +++ Button-focus_display of(self):
  877.  
  878. +++ Button-focus_force(self):
  879.  
  880. +++ Button-focus_get(self):
  881.  
  882. +++ Button-focus_lastfor(self):
  883.  
  884. +++ Button-focus_set(self):
  885.  
  886. +++ Button-getboolean(self, s):
  887.  
  888. +++ Button-getvar(self, name='PY_VAR'):
  889.  
  890. +++ Button-grab_current(self):
  891.  
  892. +++ Button-grab_release(self):
  893.  
  894. +++ Button-grab_set(self):
  895.  
  896. +++ Button-grab_set_global(self):
  897.  
  898. +++ Button-grab_status(self):
  899.  
  900. +++ Button-grid_bbox(self, column=None):
  901.  
  902. +++ Button-grid_columnconfigure(self, index, cnf={}, **kw):
  903.  
  904. +++ Button-grid_location(self, x, y):
  905.  
  906. +++ Button-grid_propagate(self, flag=['_noarg_']):
  907.  
  908. +++ Button-grid_rowconfigure(self, index, cnf={}, **kw):
  909.  
  910. +++ Button-grid_size(self):
  911.  
  912. +++ Button-grid_slaves(self, row=None):
  913.  
  914. +++ Button-image_names(self):
  915.  
  916. +++ Button-image_types(self):
  917.  
  918. +++ Button-keys(self):
  919.  
  920. +++ Button-lift = tkraise(self, aboveThis=None):
  921.  
  922. +++ Button-lower(self, belowThis=None):
  923.  
  924. +++ Button-mainloop(self, n=0):
  925.  
  926. +++ Button-nametowidget(self, name):
  927.  
  928. +++ Button-option_add(self, pattern, value, priority=None):
  929.  
  930. +++ Button-option_clear(self):
  931.  
  932. +++ Button-option_get(self, name, className):
  933.  
  934. +++ Button-option_readfile(self, fileName, priority=None):
  935.  
  936. +++ Button-pack_propagate(self, flag=['_noarg_']):
  937.  
  938. +++ Button-pack_slaves(self):
  939.  
  940. +++ Button-place_slaves(self):
  941.  
  942. +++ Button-propagate = pack_propagate(self, flag=['_noarg_']):
  943.  
  944. +++ Button-quit(self):
  945.  
  946. +++ Button-register = _register(self, func, subst=1):
  947.  
  948. +++ Button-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
  949.  
  950. +++ Button-selection_clear(self, **kw):
  951.  
  952. +++ Button-selection_get(self, **kw):
  953.  
  954. +++ Button-selection_handle(self, command, **kw):
  955.  
  956. +++ Button-selection_own(self, **kw):
  957.  
  958. +++ Button-selection_own_get(self, **kw):
  959.  
  960. +++ Button-send(self, interp, cmd, *args):
  961.  
  962. +++ Button-setvar(self, name='1'):
  963.  
  964. +++ Button-size = grid_size(self):
  965.  
  966. +++ Button-slaves = pack_slaves(self):
  967.  
  968. +++ Button-tk_bisque(self):
  969.  
  970. +++ Button-tk_focusFollowsMouse(self):
  971.  
  972. +++ Button-tk_focusNext(self):
  973.  
  974. +++ Button-tk_focusPrev(self):
  975.  
  976. +++ Button-tk_menuBar(self, *args):
  977.  
  978. +++ Button-tk_setPalette(self, *args, **kw):
  979.  
  980. +++ Button-tk_strictMotif(self, boolean=None):
  981.  
  982. +++ Button-tkraise(self, aboveThis=None):
  983.  
  984. +++ Button-unbind(self, sequence, funcid=None):
  985.  
  986. +++ Button-unbind_all(self, sequence):
  987.  
  988. +++ Button-unbind_class(self, className, sequence):
  989.  
  990. +++ Button-update(self):
  991.  
  992. +++ Button-update_idletasks(self):
  993.  
  994. +++ Button-wait_variable(self, name='PY_VAR'):
  995.  
  996. +++ Button-wait_visibility(self, window=None):
  997.  
  998. +++ Button-wait_window(self, window=None):
  999.  
  1000. +++ Button-waitvar = wait_variable(self, name='PY_VAR'):
  1001.  
  1002. +++ Button-winfo_atom(self, name, display of=0):
  1003.  
  1004. +++ Button-winfo_atomname(self, id, display of=0):
  1005.  
  1006. +++ Button-winfo_cells(self):
  1007.  
  1008. +++ Button-winfo_children(self):
  1009.  
  1010. +++ Button-winfo_class(self):
  1011.  
  1012. +++ Button-winfo_colormapfull(self):
  1013.  
  1014. +++ Button-winfo_containing(self, rootX, rootY, display of=0):
  1015.  
  1016. +++ Button-winfo_depth(self):
  1017.  
  1018. +++ Button-winfo_exists(self):
  1019.  
  1020. +++ Button-winfo_fpixels(self, number):
  1021.  
  1022. +++ Button-winfo_geometry(self):
  1023.  
  1024. +++ Button-winfo_height(self):
  1025.  
  1026. +++ Button-winfo_id(self):
  1027.  
  1028. +++ Button-winfo_interps(self, display of=0):
  1029.  
  1030. +++ Button-winfo_ismapped(self):
  1031.  
  1032. +++ Button-winfo_manager(self):
  1033.  
  1034. +++ Button-winfo_name(self):
  1035.  
  1036. +++ Button-winfo_parent(self):
  1037.  
  1038. +++ Button-winfo_pathname(self, id, display of=0):
  1039.  
  1040. +++ Button-winfo_pixels(self, number):
  1041.  
  1042. +++ Button-winfo_pointerx(self):
  1043.  
  1044. +++ Button-winfo_pointerxy(self):
  1045.  
  1046. +++ Button-winfo_pointery(self):
  1047.  
  1048. +++ Button-winfo_reqheight(self):
  1049.  
  1050. +++ Button-winfo_reqwidth(self):
  1051.  
  1052. +++ Button-winfo_rgb(self, color):
  1053.  
  1054. +++ Button-winfo_rootx(self):
  1055.  
  1056. +++ Button-winfo_rooty(self):
  1057.  
  1058. +++ Button-winfo_screen(self):
  1059.  
  1060. +++ Button-winfo_screencells(self):
  1061.  
  1062. +++ Button-winfo_screendepth(self):
  1063.  
  1064. +++ Button-winfo_screenheight(self):
  1065.  
  1066. +++ Button-winfo_screenmmheight(self):
  1067.  
  1068. +++ Button-winfo_screenmmwidth(self):
  1069.  
  1070. +++ Button-winfo_screenvisual(self):
  1071.  
  1072. +++ Button-winfo_screenwidth(self):
  1073.  
  1074. +++ Button-winfo_server(self):
  1075.  
  1076. +++ Button-winfo_toplevel(self):
  1077.  
  1078. +++ Button-winfo_viewable(self):
  1079.  
  1080. +++ Button-winfo_visual(self):
  1081.  
  1082. +++ Button-winfo_visualid(self):
  1083.  
  1084. +++ Button-winfo_visualsavailable(self, includeids=0):
  1085.  
  1086. +++ Button-winfo_vrootheight(self):
  1087.  
  1088. +++ Button-winfo_vrootwidth(self):
  1089.  
  1090. +++ Button-winfo_vrootx(self):
  1091.  
  1092. +++ Button-winfo_vrooty(self):
  1093.  
  1094. +++ Button-winfo_width(self):
  1095.  
  1096. +++ Button-winfo_x(self):
  1097.  
  1098. +++ Button-winfo_y(self):
  1099.  
  1100. ...
  1101. Methods inherited from Pack:
  1102.  
  1103. +++ Button-forget = pack_forget(self):
  1104.     Unmap this widget and do not use it for the packing order.
  1105.  
  1106. +++ Button-info = pack_info(self):
  1107.     Return information about the packing options
  1108.     for this widget.
  1109.  
  1110. +++ Button-pack = pack_configure(self, cnf={}, **kw):
  1111.     Pack a widget in the parent widget. Use as options:
  1112.     after=widget - pack it after you have packed widget
  1113.     anchor=NSEW (or subset) - position widget according to
  1114.                               given direction
  1115.     before=widget - pack it before you will pack widget
  1116.     expand=bool - expand widget if parent size grows
  1117.     fill=NONE or X or Y or BOTH - fill widget if widget grows
  1118.     in=master - use master to contain this widget
  1119.     in_=master - see 'in' option description
  1120.     ipadx=amount - add internal padding in x direction
  1121.     ipady=amount - add internal padding in y direction
  1122.     padx=amount - add padding in x direction
  1123.     pady=amount - add padding in y direction
  1124.     side=TOP or BOTTOM or LEFT or RIGHT -  where to add this widget.
  1125.  
  1126. +++ Button-pack_configure(self, cnf={}, **kw):
  1127.  
  1128. +++ Button-pack_forget(self):
  1129.  
  1130. +++ Button-pack_info(self):Methods inherited from Place:
  1131.  
  1132. +++ Button-place = place_configure(self, cnf={}, **kw):
  1133.     Place a widget in the parent widget. Use as options:
  1134.     in=master - master relative to which the widget is placed
  1135.     x=amount - locate anchor of this widget at position x of master
  1136.     y=amount - locate anchor of this widget at position y of master
  1137.     relx=amount - locate anchor of this widget between 0.0 and 1.0
  1138.                   relative to width of master (1.0 is right edge)
  1139.     rely=amount - locate anchor of this widget between 0.0 and 1.0
  1140.                   relative to height of master (1.0 is bottom edge)
  1141.     anchor=NSEW (or subset) - position anchor according to given direction
  1142.     width=amount - width of this widget in pixel
  1143.     height=amount - height of this widget in pixel
  1144.     relwidth=amount - width of this widget between 0.0 and 1.0
  1145.                       relative to width of master (1.0 is the same width
  1146.                       as the master)
  1147.     relheight=amount - height of this widget between 0.0 and 1.0
  1148.                        relative to height of master (1.0 is the same
  1149.                        height as the master)
  1150.     bordermode="inside" or "outside" - whether to take border width of
  1151.                                        master widget into account
  1152.  
  1153. +++ Button-place_configure(self, cnf={}, **kw):
  1154.  
  1155. +++ Button-place_forget(self):
  1156.     Unmap this widget.
  1157.  
  1158. +++ Button-place_info(self):
  1159.     Return information about the placing optionsMethods inherited from Grid:
  1160.  
  1161. +++ Button-grid = grid_configure(self, cnf={}, **kw):
  1162.     Position a widget in the parent widget in a grid. Use as options:
  1163.     column=number - use cell identified with given column (starting with 0)
  1164.     columnspan=number - this widget will span several columns
  1165.     row=number - use cell identified with given row (starting with 0)
  1166.     rowspan=number - this widget will span several rows
  1167.     sticky=NSEW - if cell is larger on which sides will this
  1168.                   widget stick to the cell boundary
  1169.  
  1170. +++ Button-grid_configure(self, cnf={}, **kw):
  1171.  
  1172. +++ Button-grid_forget(self):
  1173.  
  1174. +++ Button-grid_info(self):
  1175.     Return information about the options
  1176.     for positioning this widget in a grid.
  1177.  
  1178. +++ Button-grid_remove(self):
  1179.     Unmap this widget but remember the grid options.
  1180.  
  1181. +++ Button-location = grid_location(self, x, y):
  1182.  
  1183. *** class CallWrapper
  1184.  
  1185.     Internal class. Stores function to call when some user
  1186.     defined Tcl function is called e.g. after an event occurred.
  1187.  
  1188. +++ CallWrapper-__call__(self, *args):
  1189.     Apply first function SUBST to arguments, than FUNC.
  1190.  
  1191. +++ CallWrapper-__init__(self, func, subst, widget):
  1192.     Store FUNC, SUBST and WIDGET as members.
  1193.  
  1194. YView *****
  1195.  
  1196.     Canvas widget to display graphical elements like lines or text.
  1197.     Canvas
  1198.     XView
  1199.     YView
  1200.  
  1201. ...
  1202. +++ Canvas-__init__(self, master={}, **kw):
  1203.     Construct a canvas widget with the parent MASTER.
  1204.     Valid resource names: background, bd, bg, borderwidth, closeenough,
  1205.     confine, cursor, height, highlightbackground, highlightcolor,
  1206.     highlightthickness, insertbackground, insertborderwidth,
  1207.     insertofftime, insertontime, insertwidth, offset, relief,
  1208.     scrollregion, selectbackground, selectborderwidth, selectforeground,
  1209.     state, takefocus, width, xscrollcommand, xscrollincrement,
  1210.     yscrollcommand, yscrollincrement.
  1211.  
  1212. +++ Canvas-addtag(self, *args):
  1213.  
  1214. +++ Canvas-addtag_above(self, newtag, tagOrId):
  1215.     Add tag NEWTAG to all items above TAGORID.
  1216.  
  1217. +++ Canvas-addtag_all(self, newtag):
  1218.     Add tag NEWTAG to all items.
  1219.  
  1220. +++ Canvas-addtag_below(self, newtag, tagOrId):
  1221.     Add tag NEWTAG to all items below TAGORID.
  1222.  
  1223. +++ Canvas-addtag_closest(self, newtag, x, y, halo=None):
  1224.     Add tag NEWTAG to item which is closest to pixel at X, Y.
  1225.     If several match take the top-most.
  1226.     All items closer than HALO are considered overlapping (all are
  1227.     closests). If START is specified the next below this tag is taken.
  1228.  
  1229. +++ Canvas-addtag_enclosed(self, newtag, x1, y1, x2, y2):
  1230.     Add tag NEWTAG to all items in the rectangle defined
  1231.     by X1,Y1,X2,Y2.
  1232.  
  1233. +++ Canvas-addtag_overlapping(self, newtag, x1, y1, x2, y2):
  1234.     Add tag NEWTAG to all items which overlap the rectangle
  1235.     defined by X1,Y1,X2,Y2.
  1236.  
  1237. +++ Canvas-addtag_withtag(self, newtag, tagOrId):
  1238.     Add tag NEWTAG to all items with TAGORID.
  1239.  
  1240. +++ Canvas-bbox(self, *args):
  1241.     Return a tuple of X1,Y1,X2,Y2 coordinates for a rectangle
  1242.     which encloses all items with tags specified as arguments.
  1243.  
  1244. +++ Canvas-canvasx(self, screenx, gridspacing=None):
  1245.     Return the canvas x coordinate of pixel position SCREENX rounded
  1246.     to nearest multiple of GRIDSPACING units.
  1247.  
  1248. +++ Canvas-canvasy(self, screeny, gridspacing=None):
  1249.     Return the canvas y coordinate of pixel position SCREENY rounded
  1250.  
  1251. +++ Canvas-coords(self, *args):
  1252.     Return a list of coordinates for the item given in ARGS.
  1253.  
  1254. +++ Canvas-create_arc(self, *args, **kw):
  1255.     Create arc shaped region with coordinates x1,y1,x2,y2.
  1256.  
  1257. +++ Canvas-create_bitmap(self, *args, **kw):
  1258.     Create bitmap with coordinates x1,y1.
  1259.  
  1260. +++ Canvas-create_image(self, *args, **kw):
  1261.     Create image item with coordinates x1,y1.
  1262.  
  1263. +++ Canvas-create_line(self, *args, **kw):
  1264.     Create line with coordinates x1,y1,
  1265.  
  1266. +++ Canvas-create_oval(self, *args, **kw):
  1267.     Create oval with coordinates x1,y1,x2,y2.
  1268.  
  1269. +++ Canvas-create_polygon(self, *args, **kw):
  1270.     Create polygon with coordinates x1,y1,
  1271.  
  1272. +++ Canvas-create_rectangle(self, *args, **kw):
  1273.     Create rectangle with coordinates x1,y1,x2,y2.
  1274.  
  1275. +++ Canvas-create_text(self, *args, **kw):
  1276.     Create text with coordinates x1,y1.
  1277.  
  1278. +++ Canvas-create_window(self, *args, **kw):
  1279.     Create window with coordinates x1,y1,x2,y2.
  1280.  
  1281. +++ Canvas-dchars(self, *args):
  1282.     Delete characters of text items identified by tag or id in ARGS (possibly
  1283.     several times) from FIRST to LAST character (including).
  1284.  
  1285. +++ Canvas-delete(self, *args):
  1286.     Delete items identified by all tag or ids contained in ARGS.
  1287.  
  1288. +++ Canvas-dtag(self, *args):
  1289.     Delete tag or id given as last arguments in ARGS from items
  1290.     identified by first argument in ARGS.
  1291.  
  1292. +++ Canvas-find(self, *args):
  1293.  
  1294. +++ Canvas-find_above(self, tagOrId):
  1295.     Return items above TAGORID.
  1296.  
  1297. +++ Canvas-find_all(self):
  1298.     Return all items.
  1299.  
  1300. +++ Canvas-find_below(self, tagOrId):
  1301.     Return all items below TAGORID.
  1302.  
  1303. +++ Canvas-find_closest(self, x, y, halo=None):
  1304.     Return item which is closest to pixel at X, Y.
  1305.  
  1306. +++ Canvas-find_enclosed(self, x1, y1, x2, y2):
  1307.     Return all items in rectangle defined
  1308.  
  1309. +++ Canvas-find_overlapping(self, x1, y1, x2, y2):
  1310.     Return all items which overlap the rectangle
  1311.  
  1312. +++ Canvas-find_withtag(self, tagOrId):
  1313.     Return all items with TAGORID.
  1314.  
  1315. +++ Canvas-focus(self, *args):
  1316.     Set focus to the first item specified in ARGS.
  1317.  
  1318. +++ Canvas-gettags(self, *args):
  1319.     Return tags associated with the first item specified in ARGS.
  1320.  
  1321. +++ Canvas-icursor(self, *args):
  1322.     Set cursor at position POS in the item identified by TAGORID.
  1323.     In ARGS TAGORID must be first.
  1324.  
  1325. +++ Canvas-index(self, *args):
  1326.     Return position of cursor as integer in item specified in ARGS.
  1327.  
  1328. +++ Canvas-insert(self, *args):
  1329.     Insert TEXT in item TAGORID at position POS. ARGS must
  1330.     be TAGORID POS TEXT.
  1331.  
  1332. +++ Canvas-itemcget(self, tagOrId, option):
  1333.     Return the resource value for an OPTION for item TAGORID.
  1334.  
  1335. +++ Canvas-itemconfig = itemconfigure(self, tagOrId, cnf=None, **kw)
  1336.  
  1337. +++ Canvas-itemconfigure(self, tagOrId, cnf=None, **kw):
  1338.     Configure resources of an item TAGORID.
  1339.     the allowed keyword arguments call the method without arguments.
  1340.  
  1341. +++ Canvas-lift = tag_raise(self, *args)
  1342.  
  1343. +++ Canvas-lower = tag_lower(self, *args)
  1344.  
  1345. +++ Canvas-move(self, *args):
  1346.     Move an item TAGORID given in ARGS.
  1347.  
  1348. +++ Canvas-postscript(self, cnf={}, **kw):
  1349.     Print the contents of the canvas to a postscript
  1350.     file. Valid options: colormap, colormode, file, fontmap,
  1351.     height, pageanchor, pageheight, pagewidth, pagex, pagey,
  1352.     rotate, witdh, x, y.
  1353.  
  1354. +++ Canvas-scale(self, *args):
  1355.     Scale item TAGORID with XORIGIN, YORIGIN, XSCALE, YSCALE.
  1356.  
  1357. +++ Canvas-scan_dragto(self, x, y, gain=10):
  1358.     Adjust the view of the canvas to GAIN times the
  1359.     difference between X and Y and the coordinates given in
  1360.     scan_mark.
  1361.  
  1362. +++ Canvas-scan_mark(self, x, y):
  1363.     Remember the current X, Y coordinates.
  1364.  
  1365. +++ Canvas-select_adjust(self, tagOrId, index):
  1366.     Adjust the end of the selection near the cursor of an item TAGORID to index.
  1367.  
  1368. +++ Canvas-select_clear(self):
  1369.     Clear the selection if it is in this widget.
  1370.  
  1371. +++ Canvas-select_from(self, tagOrId, index):
  1372.     Set the fixed end of a selection in item TAGORID to INDEX.
  1373.  
  1374. +++ Canvas-select_item(self):
  1375.     Return the item which has the selection.
  1376.  
  1377. +++ Canvas-select_to(self, tagOrId, index):
  1378.     Set the variable end of a selection in item TAGORID to INDEX.
  1379.  
  1380. +++ Canvas-tag_bind(self, tagOrId, sequence=None):
  1381.     Bind to all items with TAGORID at event SEQUENCE a call to function FUNC.
  1382.     An additional boolean parameter ADD specifies whether FUNC will be
  1383.     called additionally to the other bound function or whether it will
  1384.     replace the previous function. See bind for the return value.
  1385.  
  1386. +++ Canvas-tag_lower(self, *args):
  1387.     Lower an item TAGORID given in ARGS
  1388.     (optional below another item).
  1389.  
  1390. +++ Canvas-tag_raise(self, *args):
  1391.     Raise an item TAGORID given in ARGS
  1392.     (optional above another item).
  1393.  
  1394. +++ Canvas-tag_unbind(self, tagOrId, sequence, funcid=None):
  1395.     Unbind for all items with TAGORID for event SEQUENCE  the
  1396.  
  1397. +++ Canvas-tkraise = tag_raise(self, *args)
  1398.  
  1399. +++ Canvas-type(self, tagOrId):
  1400.     Return the type of the item TAGORID.Canvas-destroy(self):Canvas-__contains__(self, key)
  1401.    
  1402. +++ Canvas-__getitem__ = cget(self, key):
  1403.  
  1404. +++ Canvas-__setitem__(self, key, value)
  1405.  
  1406. +++ Canvas-__str__(self):
  1407.  
  1408. +++ Canvas-after(self, ms, func=None, *args):
  1409.  
  1410. +++ Canvas-after_cancel(self, id):
  1411.  
  1412. +++ Canvas-after_idle(self, func, *args):
  1413.  
  1414. +++ Canvas-bell(self, display of=0):
  1415.  
  1416. +++ Canvas-bind(self, sequence=None):Canvas-bind_all(self, sequence=None):
  1417.  
  1418. +++ Canvas-bind_class(self, className, sequence=None):
  1419.  
  1420. +++ Canvas-bindtags(self, tagList=None):
  1421.  
  1422. +++ Canvas-cget(self, key):
  1423.  
  1424. +++ Canvas-clipboard_append(self, string, **kw):
  1425.  
  1426. +++ Canvas-clipboard_clear(self, **kw):
  1427.  
  1428. +++ Canvas-clipboard_get(self, **kw):Canvas-colormodel(self, value=None):
  1429.  
  1430. +++ Canvas-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
  1431.  
  1432. +++ Canvas-config = configure(self, cnf=None, **kw):
  1433.  
  1434. +++ Canvas-configure(self, cnf=None, **kw):
  1435.  
  1436. +++ Canvas-deletecommand(self, name):
  1437.  
  1438. +++ Canvas-event_add(self, virtual, *sequences):
  1439.  
  1440. +++ Canvas-event_delete(self, virtual, *sequences):
  1441.  
  1442. +++ Canvas-event_generate(self, sequence, **kw):
  1443.  
  1444. +++ Canvas-event_info(self, virtual=None):
  1445.  
  1446. +++ Canvas-focus_display of(self):
  1447.  
  1448. +++ Canvas-focus_force(self):
  1449.  
  1450. +++ Canvas-focus_get(self):
  1451.  
  1452. +++ Canvas-focus_lastfor(self):
  1453.  
  1454. +++ Canvas-focus_set(self):
  1455.  
  1456. +++ Canvas-getboolean(self, s):
  1457.  
  1458. +++ Canvas-getvar(self, name='PY_VAR'):
  1459.  
  1460. +++ Canvas-grab_current(self):
  1461.  
  1462. +++ Canvas-grab_release(self):
  1463.  
  1464. +++ Canvas-grab_set(self):
  1465.  
  1466. +++ Canvas-grab_set_global(self):
  1467.  
  1468. +++ Canvas-grab_status(self):
  1469.  
  1470. +++ Canvas-grid_bbox(self, column=None):
  1471.  
  1472. +++ Canvas-grid_columnconfigure(self, index, cnf={}, **kw):
  1473.  
  1474. +++ Canvas-grid_location(self, x, y):
  1475.  
  1476. +++ Canvas-grid_propagate(self, flag=['_noarg_']):
  1477.  
  1478. +++ Canvas-grid_rowconfigure(self, index, cnf={}, **kw):
  1479.  
  1480. +++ Canvas-grid_size(self):
  1481.  
  1482. +++ Canvas-grid_slaves(self, row=None):
  1483.  
  1484. +++ Canvas-image_names(self):
  1485.  
  1486. +++ Canvas-image_types(self):
  1487.  
  1488. +++ Canvas-keys(self):
  1489.  
  1490. +++ Canvas-mainloop(self, n=0):
  1491.  
  1492. +++ Canvas-nametowidget(self, name):
  1493.  
  1494. +++ Canvas-option_add(self, pattern, value, priority=None):
  1495.  
  1496. +++ Canvas-option_clear(self):
  1497.  
  1498. +++ Canvas-option_get(self, name, className):
  1499.  
  1500. +++ Canvas-option_readfile(self, fileName, priority=None):
  1501.  
  1502. +++ Canvas-pack_propagate(self, flag=['_noarg_']):
  1503.  
  1504. +++ Canvas-pack_slaves(self):
  1505.  
  1506. +++ Canvas-place_slaves(self):
  1507.  
  1508. +++ Canvas-propagate = pack_propagate(self, flag=['_noarg_']):
  1509.  
  1510. +++ Canvas-quit(self):
  1511.  
  1512. +++ Canvas-register = _register(self, func, subst=1):
  1513.  
  1514. +++ Canvas-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
  1515.  
  1516. +++ Canvas-selection_clear(self, **kw):
  1517.  
  1518. +++ Canvas-selection_get(self, **kw):
  1519.  
  1520. +++ Canvas-selection_handle(self, command, **kw):
  1521.  
  1522. +++ Canvas-selection_own(self, **kw):
  1523.  
  1524. +++ Canvas-selection_own_get(self, **kw):
  1525.  
  1526. +++ Canvas-send(self, interp, cmd, *args):
  1527.  
  1528. +++ Canvas-setvar(self, name='1'):
  1529.  
  1530. +++ Canvas-size = grid_size(self):
  1531.  
  1532. +++ Canvas-slaves = pack_slaves(self):
  1533.  
  1534. +++ Canvas-tk_bisque(self):
  1535.  
  1536. +++ Canvas-tk_focusFollowsMouse(self):
  1537.  
  1538. +++ Canvas-tk_focusNext(self):
  1539.  
  1540. +++ Canvas-tk_focusPrev(self):
  1541.  
  1542. +++ Canvas-tk_menuBar(self, *args):
  1543.  
  1544. +++ Canvas-tk_setPalette(self, *args, **kw):
  1545.  
  1546. +++ Canvas-tk_strictMotif(self, boolean=None):
  1547.  
  1548. +++ Canvas-unbind(self, sequence, funcid=None):
  1549.  
  1550. +++ Canvas-unbind_all(self, sequence):
  1551.  
  1552. +++ Canvas-unbind_class(self, className, sequence):
  1553.  
  1554. +++ Canvas-update(self):
  1555.  
  1556. +++ Canvas-update_idletasks(self):
  1557.  
  1558. +++ Canvas-wait_variable(self, name='PY_VAR'):
  1559.  
  1560. +++ Canvas-wait_visibility(self, window=None):
  1561.  
  1562. +++ Canvas-wait_window(self, window=None):
  1563.  
  1564. +++ Canvas-waitvar = wait_variable(self, name='PY_VAR'):
  1565.  
  1566. +++ Canvas-winfo_atom(self, name, display of=0):
  1567.  
  1568. +++ Canvas-winfo_atomname(self, id, display of=0):
  1569.  
  1570. +++ Canvas-winfo_cells(self):
  1571.  
  1572. +++ Canvas-winfo_children(self):
  1573.  
  1574. +++ Canvas-winfo_class(self):
  1575.  
  1576. +++ Canvas-winfo_colormapfull(self):
  1577.  
  1578. +++ Canvas-winfo_containing(self, rootX, rootY, display of=0):
  1579.  
  1580. +++ Canvas-winfo_depth(self):
  1581.  
  1582. +++ Canvas-winfo_exists(self):
  1583.  
  1584. +++ Canvas-winfo_fpixels(self, number):
  1585.  
  1586. +++ Canvas-winfo_geometry(self):
  1587.  
  1588. +++ Canvas-winfo_height(self):
  1589.  
  1590. +++ Canvas-winfo_id(self):
  1591.  
  1592. +++ Canvas-winfo_interps(self, display of=0):
  1593.  
  1594. +++ Canvas-winfo_ismapped(self):
  1595.  
  1596. +++ Canvas-winfo_manager(self):
  1597.  
  1598. +++ Canvas-winfo_name(self):
  1599.  
  1600. +++ Canvas-winfo_parent(self):
  1601.  
  1602. +++ Canvas-winfo_pathname(self, id, display of=0):
  1603.  
  1604. +++ Canvas-winfo_pixels(self, number):
  1605.  
  1606. +++ Canvas-winfo_pointerx(self):
  1607.  
  1608. +++ Canvas-winfo_pointerxy(self):
  1609.  
  1610. +++ Canvas-winfo_pointery(self):
  1611.  
  1612. +++ Canvas-winfo_reqheight(self):
  1613.  
  1614. +++ Canvas-winfo_reqwidth(self):
  1615.  
  1616. +++ Canvas-winfo_rgb(self, color):
  1617.  
  1618. +++ Canvas-winfo_rootx(self):
  1619.  
  1620. +++ Canvas-winfo_rooty(self):
  1621.  
  1622. +++ Canvas-winfo_screen(self):
  1623.  
  1624. +++ Canvas-winfo_screencells(self):
  1625.  
  1626. +++ Canvas-winfo_screendepth(self):
  1627.  
  1628. +++ Canvas-winfo_screenheight(self):
  1629.  
  1630. +++ Canvas-winfo_screenmmheight(self):
  1631.  
  1632. +++ Canvas-winfo_screenmmwidth(self):
  1633.  
  1634. +++ Canvas-winfo_screenvisual(self):
  1635.  
  1636. +++ Canvas-winfo_screenwidth(self):
  1637.  
  1638. +++ Canvas-winfo_server(self):
  1639.  
  1640. +++ Canvas-winfo_toplevel(self):
  1641.  
  1642. +++ Canvas-winfo_viewable(self):
  1643.  
  1644. +++ Canvas-winfo_visual(self):
  1645.  
  1646. +++ Canvas-winfo_visualid(self):
  1647.  
  1648. +++ Canvas-winfo_visualsavailable(self, includeids=0):
  1649.  
  1650. +++ Canvas-winfo_vrootheight(self):
  1651.  
  1652. +++ Canvas-winfo_vrootwidth(self):
  1653.  
  1654. +++ Canvas-winfo_vrootx(self):
  1655.  
  1656. +++ Canvas-winfo_vrooty(self):
  1657.  
  1658. +++ Canvas-winfo_width(self):
  1659.  
  1660. +++ Canvas-winfo_x(self):
  1661.  
  1662. +++ Canvas-winfo_y(self):
  1663.  
  1664. +++ Canvas-forget = pack_forget(self):
  1665.  
  1666. +++ Canvas-info = pack_info(self):
  1667.  
  1668. +++ Canvas-pack = pack_configure(self, cnf={}, **kw):
  1669.  
  1670. +++ Canvas-pack_configure(self, cnf={}, **kw):
  1671.  
  1672. +++ Canvas-pack_forget(self):
  1673.  
  1674. +++ Canvas-pack_info(self):Canvas-place = place_configure(self, cnf={}, **kw):
  1675.  
  1676. +++ Canvas-place_configure(self, cnf={}, **kw):
  1677.  
  1678. +++ Canvas-place_forget(self):
  1679.  
  1680. +++ Canvas-place_info(self):Canvas-grid = grid_configure(self, cnf={}, **kw):
  1681.  
  1682. +++ Canvas-grid_configure(self, cnf={}, **kw):
  1683.  
  1684. +++ Canvas-grid_forget(self):
  1685.  
  1686. +++ Canvas-grid_info(self):
  1687.  
  1688. +++ Canvas-grid_remove(self):
  1689.  
  1690. +++ Canvas-location = grid_location(self, x, y):Methods inherited from XView:
  1691.  
  1692. +++ Canvas-xview(self, *args):
  1693.     Query and change the horizontal position of the view.
  1694.  
  1695. +++ Canvas-xview_moveto(self, fraction):
  1696.     Adjusts the view in the window so that FRACTION of the
  1697.     total width of the canvas is off-screen to the left.
  1698.  
  1699. +++ Canvas-xview_scroll(self, number, what):
  1700.     Shift the x-view according to NUMBER which is measured in "units"
  1701.     or "pages" (WHAT).Methods inherited from YView:
  1702.  
  1703. +++ Canvas-yview(self, *args):
  1704.     Query and change the vertical position of the view.
  1705.  
  1706. +++ Canvas-yview_moveto(self, fraction):
  1707.     total height of the canvas is off-screen to the top.
  1708.  
  1709. +++ Canvas-yview_scroll(self, number, what):
  1710.     Shift the y-view according to NUMBER which is measured in
  1711.     "units" or "pages" (WHAT).
  1712.     Checkbutton widget which is either in on- or off-state.
  1713.     Checkbutton
  1714.  
  1715. ...
  1716. +++ Checkbutton-__init__(self, master={}, **kw):
  1717.     Construct a checkbutton widget with the parent MASTER.
  1718.     Valid resource names: activebackground, activeforeground, anchor,
  1719.     background, bd, bg, bitmap, borderwidth, command, cursor,
  1720.     disabledforeground, fg, font, foreground, height,
  1721.     highlightbackground, highlightcolor, highlightthickness, image,
  1722.     indicatoron, justify, offvalue, onvalue, padx, pady, relief,
  1723.     selectcolor, selectimage, state, takefocus, text, textvariable,
  1724.     underline, variable, width, wraplength.
  1725.  
  1726. +++ Checkbutton-deselect(self):
  1727.     Put the button in off-state.
  1728.  
  1729. +++ Checkbutton-flash(self):
  1730.  
  1731. +++ Checkbutton-invoke(self):
  1732.     Toggle the button and invoke a command if given as resource.
  1733.  
  1734. +++ Checkbutton-select(self):
  1735.     Put the button in on-state.
  1736.  
  1737. +++ Checkbutton-toggle(self):
  1738.     Toggle the button.Checkbutton-destroy(self):Checkbutton-__contains__(self, key)
  1739.  
  1740. +++ Checkbutton-__getitem__ = cget(self, key):
  1741.  
  1742. +++ Checkbutton-__setitem__(self, key, value)
  1743.  
  1744. +++ Checkbutton-__str__(self):
  1745.  
  1746. +++ Checkbutton-after(self, ms, func=None, *args):
  1747.  
  1748. +++ Checkbutton-after_cancel(self, id):
  1749.  
  1750. +++ Checkbutton-after_idle(self, func, *args):
  1751.  
  1752. +++ Checkbutton-bbox = grid_bbox(self, column=None):
  1753.  
  1754. +++ Checkbutton-bell(self, display of=0):
  1755.  
  1756. +++ Checkbutton-bind(self, sequence=None):Checkbutton-bind_all(self, sequence=None):
  1757.  
  1758. +++ Checkbutton-bind_class(self, className, sequence=None):
  1759.  
  1760. +++ Checkbutton-bindtags(self, tagList=None):
  1761.  
  1762. +++ Checkbutton-cget(self, key):
  1763.  
  1764. +++ Checkbutton-clipboard_append(self, string, **kw):
  1765.  
  1766. +++ Checkbutton-clipboard_clear(self, **kw):
  1767.  
  1768. +++ Checkbutton-clipboard_get(self, **kw):Checkbutton-colormodel(self, value=None):
  1769.  
  1770. +++ Checkbutton-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
  1771.  
  1772. +++ Checkbutton-config = configure(self, cnf=None, **kw):
  1773.  
  1774. +++ Checkbutton-configure(self, cnf=None, **kw):
  1775.  
  1776. +++ Checkbutton-deletecommand(self, name):
  1777.  
  1778. +++ Checkbutton-event_add(self, virtual, *sequences):
  1779.  
  1780. +++ Checkbutton-event_delete(self, virtual, *sequences):
  1781.  
  1782. +++ Checkbutton-event_generate(self, sequence, **kw):
  1783.  
  1784. +++ Checkbutton-event_info(self, virtual=None):
  1785.  
  1786. +++ Checkbutton-focus = focus_set(self):
  1787.  
  1788. +++ Checkbutton-focus_display of(self):
  1789.  
  1790. +++ Checkbutton-focus_force(self):
  1791.  
  1792. +++ Checkbutton-focus_get(self):
  1793.  
  1794. +++ Checkbutton-focus_lastfor(self):
  1795.  
  1796. +++ Checkbutton-focus_set(self):
  1797.  
  1798. +++ Checkbutton-getboolean(self, s):
  1799.  
  1800. +++ Checkbutton-getvar(self, name='PY_VAR'):
  1801.  
  1802. +++ Checkbutton-grab_current(self):
  1803.  
  1804. +++ Checkbutton-grab_release(self):
  1805.  
  1806. +++ Checkbutton-grab_set(self):
  1807.  
  1808. +++ Checkbutton-grab_set_global(self):
  1809.  
  1810. +++ Checkbutton-grab_status(self):
  1811.  
  1812. +++ Checkbutton-grid_bbox(self, column=None):
  1813.  
  1814. +++ Checkbutton-grid_columnconfigure(self, index, cnf={}, **kw):
  1815.  
  1816. +++ Checkbutton-grid_location(self, x, y):
  1817.  
  1818. +++ Checkbutton-grid_propagate(self, flag=['_noarg_']):
  1819.  
  1820. +++ Checkbutton-grid_rowconfigure(self, index, cnf={}, **kw):
  1821.  
  1822. +++ Checkbutton-grid_size(self):
  1823.  
  1824. +++ Checkbutton-grid_slaves(self, row=None):
  1825.  
  1826. +++ Checkbutton-image_names(self):
  1827.  
  1828. +++ Checkbutton-image_types(self):
  1829.  
  1830. +++ Checkbutton-keys(self):
  1831.  
  1832. +++ Checkbutton-lift = tkraise(self, aboveThis=None):
  1833.  
  1834. +++ Checkbutton-lower(self, belowThis=None):
  1835.  
  1836. +++ Checkbutton-mainloop(self, n=0):
  1837.  
  1838. +++ Checkbutton-nametowidget(self, name):
  1839.  
  1840. +++ Checkbutton-option_add(self, pattern, value, priority=None):
  1841.  
  1842. +++ Checkbutton-option_clear(self):
  1843.  
  1844. +++ Checkbutton-option_get(self, name, className):
  1845.  
  1846. +++ Checkbutton-option_readfile(self, fileName, priority=None):
  1847.  
  1848. +++ Checkbutton-pack_propagate(self, flag=['_noarg_']):
  1849.  
  1850. +++ Checkbutton-pack_slaves(self):
  1851.  
  1852. +++ Checkbutton-place_slaves(self):
  1853.  
  1854. +++ Checkbutton-propagate = pack_propagate(self, flag=['_noarg_']):
  1855.  
  1856. +++ Checkbutton-quit(self):
  1857.  
  1858. +++ Checkbutton-register = _register(self, func, subst=1):
  1859.  
  1860. +++ Checkbutton-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
  1861.  
  1862. +++ Checkbutton-selection_clear(self, **kw):
  1863.  
  1864. +++ Checkbutton-selection_get(self, **kw):
  1865.  
  1866. +++ Checkbutton-selection_handle(self, command, **kw):
  1867.  
  1868. +++ Checkbutton-selection_own(self, **kw):
  1869.  
  1870. +++ Checkbutton-selection_own_get(self, **kw):
  1871.  
  1872. +++ Checkbutton-send(self, interp, cmd, *args):
  1873.  
  1874. +++ Checkbutton-setvar(self, name='1'):
  1875.  
  1876. +++ Checkbutton-size = grid_size(self):
  1877.  
  1878. +++ Checkbutton-slaves = pack_slaves(self):
  1879.  
  1880. +++ Checkbutton-tk_bisque(self):
  1881.  
  1882. +++ Checkbutton-tk_focusFollowsMouse(self):
  1883.  
  1884. +++ Checkbutton-tk_focusNext(self):
  1885.  
  1886. +++ Checkbutton-tk_focusPrev(self):
  1887.  
  1888. +++ Checkbutton-tk_menuBar(self, *args):
  1889.  
  1890. +++ Checkbutton-tk_setPalette(self, *args, **kw):
  1891.  
  1892. +++ Checkbutton-tk_strictMotif(self, boolean=None):
  1893.  
  1894. +++ Checkbutton-tkraise(self, aboveThis=None):
  1895.  
  1896. +++ Checkbutton-unbind(self, sequence, funcid=None):
  1897.  
  1898. +++ Checkbutton-unbind_all(self, sequence):
  1899.  
  1900. +++ Checkbutton-unbind_class(self, className, sequence):
  1901.  
  1902. +++ Checkbutton-update(self):
  1903.  
  1904. +++ Checkbutton-update_idletasks(self):
  1905.  
  1906. +++ Checkbutton-wait_variable(self, name='PY_VAR'):
  1907.  
  1908. +++ Checkbutton-wait_visibility(self, window=None):
  1909.  
  1910. +++ Checkbutton-wait_window(self, window=None):
  1911.  
  1912. +++ Checkbutton-waitvar = wait_variable(self, name='PY_VAR'):
  1913.  
  1914. +++ Checkbutton-winfo_atom(self, name, display of=0):
  1915.  
  1916. +++ Checkbutton-winfo_atomname(self, id, display of=0):
  1917.  
  1918. +++ Checkbutton-winfo_cells(self):
  1919.  
  1920. +++ Checkbutton-winfo_children(self):
  1921.  
  1922. +++ Checkbutton-winfo_class(self):
  1923.  
  1924. +++ Checkbutton-winfo_colormapfull(self):
  1925.  
  1926. +++ Checkbutton-winfo_containing(self, rootX, rootY, display of=0):
  1927.  
  1928. +++ Checkbutton-winfo_depth(self):
  1929.  
  1930. +++ Checkbutton-winfo_exists(self):
  1931.  
  1932. +++ Checkbutton-winfo_fpixels(self, number):
  1933.  
  1934. +++ Checkbutton-winfo_geometry(self):
  1935.  
  1936. +++ Checkbutton-winfo_height(self):
  1937.  
  1938. +++ Checkbutton-winfo_id(self):
  1939.  
  1940. +++ Checkbutton-winfo_interps(self, display of=0):
  1941.  
  1942. +++ Checkbutton-winfo_ismapped(self):
  1943.  
  1944. +++ Checkbutton-winfo_manager(self):
  1945.  
  1946. +++ Checkbutton-winfo_name(self):
  1947.  
  1948. +++ Checkbutton-winfo_parent(self):
  1949.  
  1950. +++ Checkbutton-winfo_pathname(self, id, display of=0):
  1951.  
  1952. +++ Checkbutton-winfo_pixels(self, number):
  1953.  
  1954. +++ Checkbutton-winfo_pointerx(self):
  1955.  
  1956. +++ Checkbutton-winfo_pointerxy(self):
  1957.  
  1958. +++ Checkbutton-winfo_pointery(self):
  1959.  
  1960. +++ Checkbutton-winfo_reqheight(self):
  1961.  
  1962. +++ Checkbutton-winfo_reqwidth(self):
  1963.  
  1964. +++ Checkbutton-winfo_rgb(self, color):
  1965.  
  1966. +++ Checkbutton-winfo_rootx(self):
  1967.  
  1968. +++ Checkbutton-winfo_rooty(self):
  1969.  
  1970. +++ Checkbutton-winfo_screen(self):
  1971.  
  1972. +++ Checkbutton-winfo_screencells(self):
  1973.  
  1974. +++ Checkbutton-winfo_screendepth(self):
  1975.  
  1976. +++ Checkbutton-winfo_screenheight(self):
  1977.  
  1978. +++ Checkbutton-winfo_screenmmheight(self):
  1979.  
  1980. +++ Checkbutton-winfo_screenmmwidth(self):
  1981.  
  1982. +++ Checkbutton-winfo_screenvisual(self):
  1983.  
  1984. +++ Checkbutton-winfo_screenwidth(self):
  1985.  
  1986. +++ Checkbutton-winfo_server(self):
  1987.  
  1988. +++ Checkbutton-winfo_toplevel(self):
  1989.  
  1990. +++ Checkbutton-winfo_viewable(self):
  1991.  
  1992. +++ Checkbutton-winfo_visual(self):
  1993.  
  1994. +++ Checkbutton-winfo_visualid(self):
  1995.  
  1996. +++ Checkbutton-winfo_visualsavailable(self, includeids=0):
  1997.  
  1998. +++ Checkbutton-winfo_vrootheight(self):
  1999.  
  2000. +++ Checkbutton-winfo_vrootwidth(self):
  2001.  
  2002. +++ Checkbutton-winfo_vrootx(self):
  2003.  
  2004. +++ Checkbutton-winfo_vrooty(self):
  2005.  
  2006. +++ Checkbutton-winfo_width(self):
  2007.  
  2008. +++ Checkbutton-winfo_x(self):
  2009.  
  2010. +++ Checkbutton-winfo_y(self):
  2011.  
  2012. +++ Checkbutton-forget = pack_forget(self):
  2013.  
  2014. +++ Checkbutton-info = pack_info(self):
  2015.  
  2016. +++ Checkbutton-pack = pack_configure(self, cnf={}, **kw):
  2017.  
  2018. +++ Checkbutton-pack_configure(self, cnf={}, **kw):
  2019.  
  2020. +++ Checkbutton-pack_forget(self):
  2021.  
  2022. +++ Checkbutton-pack_info(self):Checkbutton-place = place_configure(self, cnf={}, **kw):
  2023.  
  2024. +++ Checkbutton-place_configure(self, cnf={}, **kw):
  2025.  
  2026. +++ Checkbutton-place_forget(self):
  2027.  
  2028. +++ Checkbutton-place_info(self):Checkbutton-grid = grid_configure(self, cnf={}, **kw):
  2029.  
  2030. +++ Checkbutton-grid_configure(self, cnf={}, **kw):
  2031.  
  2032. +++ Checkbutton-grid_forget(self):
  2033.  
  2034. +++ Checkbutton-grid_info(self):
  2035.  
  2036. +++ Checkbutton-grid_remove(self):
  2037.  
  2038. +++ Checkbutton-location = grid_location(self, x, y):
  2039.     Value holder for float variables.
  2040.  
  2041. +++ DoubleVar-__init__(self, master=None):
  2042.     Construct a float variable.
  2043.     VALUE is an optional value (defaults to 0.0)
  2044.  
  2045. +++ DoubleVar-get(self):
  2046.     Return the value of the variable as a float.DoubleVar-__del__(self):
  2047.  
  2048. +++ DoubleVar-__eq__(self, other):
  2049.  
  2050. +++ DoubleVar-__str__(self):
  2051.  
  2052. +++ DoubleVar-set(self, value):
  2053.  
  2054. +++ DoubleVar-trace = trace_variable(self, mode, callback):
  2055.  
  2056. +++ DoubleVar-trace_variable(self, mode, callback):
  2057.  
  2058. +++ DoubleVar-trace_vdelete(self, mode, cbname):
  2059.  
  2060. +++ DoubleVar-trace_vinfo(self):
  2061.  
  2062. XView *****
  2063.  
  2064.     Entry widget which allows to display simple text.
  2065.     Entry
  2066.  
  2067. +++ Entry-__init__(self, master={}, **kw):
  2068.     Construct an entry widget with the parent MASTER.
  2069.     Valid resource names: background, bd, bg, borderwidth, cursor,
  2070.     exportselection, fg, font, foreground, highlightbackground,
  2071.     highlightcolor, highlightthickness, insertbackground,
  2072.     insertborderwidth, insertofftime, insertontime, insertwidth,
  2073.     invalidcommand, invcmd, justify, relief, selectbackground,
  2074.     selectborderwidth, selectforeground, show, state, takefocus,
  2075.     textvariable, validate, validatecommand, vcmd, width,
  2076.     xscrollcommand.
  2077.  
  2078. +++ Entry-delete(self, first, last=None):
  2079.     Delete text from FIRST to LAST (not included).
  2080.  
  2081. +++ Entry-get(self):
  2082.     Return the text.
  2083.  
  2084. +++ Entry-icursor(self, index):
  2085.     Insert cursor at INDEX.
  2086.  
  2087. +++ Entry-index(self, index):
  2088.     Return position of cursor.
  2089.  
  2090. +++ Entry-insert(self, index, string):
  2091.     Insert STRING at INDEX.
  2092.  
  2093. +++ Entry-scan_dragto(self, x):
  2094.     Adjust the view of the canvas to 10 times the
  2095.  
  2096. +++ Entry-scan_mark(self, x):
  2097.  
  2098. +++ Entry-select_adjust = selection_adjust(self, index)
  2099.  
  2100. +++ Entry-select_clear = selection_clear(self)
  2101.  
  2102. +++ Entry-select_from = selection_from(self, index)
  2103.  
  2104. +++ Entry-select_present = selection_present(self)
  2105.  
  2106. +++ Entry-select_range = selection_range(self, start, end)
  2107.  
  2108. +++ Entry-select_to = selection_to(self, index)
  2109.  
  2110. +++ Entry-selection_adjust(self, index):
  2111.     Adjust the end of the selection near the cursor to INDEX.
  2112.  
  2113. +++ Entry-selection_clear(self):
  2114.  
  2115. +++ Entry-selection_from(self, index):
  2116.     Set the fixed end of a selection to INDEX.
  2117.  
  2118. +++ Entry-selection_present(self):
  2119.     Return True if there are characters selected in the entry, False
  2120.     otherwise.
  2121.  
  2122. +++ Entry-selection_range(self, start, end):
  2123.     Set the selection from START to END (not included).
  2124.  
  2125. +++ Entry-selection_to(self, index):
  2126.     Set the variable end of a selection to INDEX.Entry-destroy(self):Entry-__contains__(self, key)
  2127.  
  2128. +++ Entry-__getitem__ = cget(self, key):
  2129.  
  2130. +++ Entry-__setitem__(self, key, value)
  2131.  
  2132. +++ Entry-__str__(self):
  2133.  
  2134. +++ Entry-after(self, ms, func=None, *args):
  2135.  
  2136. +++ Entry-after_cancel(self, id):
  2137.  
  2138. +++ Entry-after_idle(self, func, *args):
  2139.  
  2140. +++ Entry-bbox = grid_bbox(self, column=None):
  2141.  
  2142. +++ Entry-bell(self, display of=0):
  2143.  
  2144. +++ Entry-bind(self, sequence=None):Entry-bind_all(self, sequence=None):
  2145.  
  2146. +++ Entry-bind_class(self, className, sequence=None):
  2147.  
  2148. +++ Entry-bindtags(self, tagList=None):
  2149.  
  2150. +++ Entry-cget(self, key):
  2151.  
  2152. +++ Entry-clipboard_append(self, string, **kw):
  2153.  
  2154. +++ Entry-clipboard_clear(self, **kw):
  2155.  
  2156. +++ Entry-clipboard_get(self, **kw):Entry-colormodel(self, value=None):
  2157.  
  2158. +++ Entry-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
  2159.  
  2160. +++ Entry-config = configure(self, cnf=None, **kw):
  2161.  
  2162. +++ Entry-configure(self, cnf=None, **kw):
  2163.  
  2164. +++ Entry-deletecommand(self, name):
  2165.  
  2166. +++ Entry-event_add(self, virtual, *sequences):
  2167.  
  2168. +++ Entry-event_delete(self, virtual, *sequences):
  2169.  
  2170. +++ Entry-event_generate(self, sequence, **kw):
  2171.  
  2172. +++ Entry-event_info(self, virtual=None):
  2173.  
  2174. +++ Entry-focus = focus_set(self):
  2175.  
  2176. +++ Entry-focus_display of(self):
  2177.  
  2178. +++ Entry-focus_force(self):
  2179.  
  2180. +++ Entry-focus_get(self):
  2181.  
  2182. +++ Entry-focus_lastfor(self):
  2183.  
  2184. +++ Entry-focus_set(self):
  2185.  
  2186. +++ Entry-getboolean(self, s):
  2187.  
  2188. +++ Entry-getvar(self, name='PY_VAR'):
  2189.  
  2190. +++ Entry-grab_current(self):
  2191.  
  2192. +++ Entry-grab_release(self):
  2193.  
  2194. +++ Entry-grab_set(self):
  2195.  
  2196. +++ Entry-grab_set_global(self):
  2197.  
  2198. +++ Entry-grab_status(self):
  2199.  
  2200. +++ Entry-grid_bbox(self, column=None):
  2201.  
  2202. +++ Entry-grid_columnconfigure(self, index, cnf={}, **kw):
  2203.  
  2204. +++ Entry-grid_location(self, x, y):
  2205.  
  2206. +++ Entry-grid_propagate(self, flag=['_noarg_']):
  2207.  
  2208. +++ Entry-grid_rowconfigure(self, index, cnf={}, **kw):
  2209.  
  2210. +++ Entry-grid_size(self):
  2211.  
  2212. +++ Entry-grid_slaves(self, row=None):
  2213.  
  2214. +++ Entry-image_names(self):
  2215.  
  2216. +++ Entry-image_types(self):
  2217.  
  2218. +++ Entry-keys(self):
  2219.  
  2220. +++ Entry-lift = tkraise(self, aboveThis=None):
  2221.  
  2222. +++ Entry-lower(self, belowThis=None):
  2223.  
  2224. +++ Entry-mainloop(self, n=0):
  2225.  
  2226. +++ Entry-nametowidget(self, name):
  2227.  
  2228. +++ Entry-option_add(self, pattern, value, priority=None):
  2229.  
  2230. +++ Entry-option_clear(self):
  2231.  
  2232. +++ Entry-option_get(self, name, className):
  2233.  
  2234. +++ Entry-option_readfile(self, fileName, priority=None):
  2235.  
  2236. +++ Entry-pack_propagate(self, flag=['_noarg_']):
  2237.  
  2238. +++ Entry-pack_slaves(self):
  2239.  
  2240. +++ Entry-place_slaves(self):
  2241.  
  2242. +++ Entry-propagate = pack_propagate(self, flag=['_noarg_']):
  2243.  
  2244. +++ Entry-quit(self):
  2245.  
  2246. +++ Entry-register = _register(self, func, subst=1):
  2247.  
  2248. +++ Entry-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
  2249.  
  2250. +++ Entry-selection_get(self, **kw):
  2251.  
  2252. +++ Entry-selection_handle(self, command, **kw):
  2253.  
  2254. +++ Entry-selection_own(self, **kw):
  2255.  
  2256. +++ Entry-selection_own_get(self, **kw):
  2257.  
  2258. +++ Entry-send(self, interp, cmd, *args):
  2259.  
  2260. +++ Entry-setvar(self, name='1'):
  2261.  
  2262. +++ Entry-size = grid_size(self):
  2263.  
  2264. +++ Entry-slaves = pack_slaves(self):
  2265.  
  2266. +++ Entry-tk_bisque(self):
  2267.  
  2268. +++ Entry-tk_focusFollowsMouse(self):
  2269.  
  2270. +++ Entry-tk_focusNext(self):
  2271.  
  2272. +++ Entry-tk_focusPrev(self):
  2273.  
  2274. +++ Entry-tk_menuBar(self, *args):
  2275.  
  2276. +++ Entry-tk_setPalette(self, *args, **kw):
  2277.  
  2278. +++ Entry-tk_strictMotif(self, boolean=None):
  2279.  
  2280. +++ Entry-tkraise(self, aboveThis=None):
  2281.  
  2282. +++ Entry-unbind(self, sequence, funcid=None):
  2283.  
  2284. +++ Entry-unbind_all(self, sequence):
  2285.  
  2286. +++ Entry-unbind_class(self, className, sequence):
  2287.  
  2288. +++ Entry-update(self):
  2289.  
  2290. +++ Entry-update_idletasks(self):
  2291.  
  2292. +++ Entry-wait_variable(self, name='PY_VAR'):
  2293.  
  2294. +++ Entry-wait_visibility(self, window=None):
  2295.  
  2296. +++ Entry-wait_window(self, window=None):
  2297.  
  2298. +++ Entry-waitvar = wait_variable(self, name='PY_VAR'):
  2299.  
  2300. +++ Entry-winfo_atom(self, name, display of=0):
  2301.  
  2302. +++ Entry-winfo_atomname(self, id, display of=0):
  2303.  
  2304. +++ Entry-winfo_cells(self):
  2305.  
  2306. +++ Entry-winfo_children(self):
  2307.  
  2308. +++ Entry-winfo_class(self):
  2309.  
  2310. +++ Entry-winfo_colormapfull(self):
  2311.  
  2312. +++ Entry-winfo_containing(self, rootX, rootY, display of=0):
  2313.  
  2314. +++ Entry-winfo_depth(self):
  2315.  
  2316. +++ Entry-winfo_exists(self):
  2317.  
  2318. +++ Entry-winfo_fpixels(self, number):
  2319.  
  2320. +++ Entry-winfo_geometry(self):
  2321.  
  2322. +++ Entry-winfo_height(self):
  2323.  
  2324. +++ Entry-winfo_id(self):
  2325.  
  2326. +++ Entry-winfo_interps(self, display of=0):
  2327.  
  2328. +++ Entry-winfo_ismapped(self):
  2329.  
  2330. +++ Entry-winfo_manager(self):
  2331.  
  2332. +++ Entry-winfo_name(self):
  2333.  
  2334. +++ Entry-winfo_parent(self):
  2335.  
  2336. +++ Entry-winfo_pathname(self, id, display of=0):
  2337.  
  2338. +++ Entry-winfo_pixels(self, number):
  2339.  
  2340. +++ Entry-winfo_pointerx(self):
  2341.  
  2342. +++ Entry-winfo_pointerxy(self):
  2343.  
  2344. +++ Entry-winfo_pointery(self):
  2345.  
  2346. +++ Entry-winfo_reqheight(self):
  2347.  
  2348. +++ Entry-winfo_reqwidth(self):
  2349.  
  2350. +++ Entry-winfo_rgb(self, color):
  2351.  
  2352. +++ Entry-winfo_rootx(self):
  2353.  
  2354. +++ Entry-winfo_rooty(self):
  2355.  
  2356. +++ Entry-winfo_screen(self):
  2357.  
  2358. +++ Entry-winfo_screencells(self):
  2359.  
  2360. +++ Entry-winfo_screendepth(self):
  2361.  
  2362. +++ Entry-winfo_screenheight(self):
  2363.  
  2364. +++ Entry-winfo_screenmmheight(self):
  2365.  
  2366. +++ Entry-winfo_screenmmwidth(self):
  2367.  
  2368. +++ Entry-winfo_screenvisual(self):
  2369.  
  2370. +++ Entry-winfo_screenwidth(self):
  2371.  
  2372. +++ Entry-winfo_server(self):
  2373.  
  2374. +++ Entry-winfo_toplevel(self):
  2375.  
  2376. +++ Entry-winfo_viewable(self):
  2377.  
  2378. +++ Entry-winfo_visual(self):
  2379.  
  2380. +++ Entry-winfo_visualid(self):
  2381.  
  2382. +++ Entry-winfo_visualsavailable(self, includeids=0):
  2383.  
  2384. +++ Entry-winfo_vrootheight(self):
  2385.  
  2386. +++ Entry-winfo_vrootwidth(self):
  2387.  
  2388. +++ Entry-winfo_vrootx(self):
  2389.  
  2390. +++ Entry-winfo_vrooty(self):
  2391.  
  2392. +++ Entry-winfo_width(self):
  2393.  
  2394. +++ Entry-winfo_x(self):
  2395.  
  2396. +++ Entry-winfo_y(self):
  2397.  
  2398. +++ Entry-forget = pack_forget(self):
  2399.  
  2400. +++ Entry-info = pack_info(self):
  2401.  
  2402. +++ Entry-pack = pack_configure(self, cnf={}, **kw):
  2403.  
  2404. +++ Entry-pack_configure(self, cnf={}, **kw):
  2405.  
  2406. +++ Entry-pack_forget(self):
  2407.  
  2408. +++ Entry-pack_info(self):Entry-place = place_configure(self, cnf={}, **kw):
  2409.  
  2410. +++ Entry-place_configure(self, cnf={}, **kw):
  2411.  
  2412. +++ Entry-place_forget(self):
  2413.  
  2414. +++ Entry-place_info(self):Entry-grid = grid_configure(self, cnf={}, **kw):
  2415.  
  2416. +++ Entry-grid_configure(self, cnf={}, **kw):
  2417.  
  2418. +++ Entry-grid_forget(self):
  2419.  
  2420. +++ Entry-grid_info(self):
  2421.  
  2422. +++ Entry-grid_remove(self):
  2423.  
  2424. +++ Entry-location = grid_location(self, x, y):Entry-xview(self, *args):
  2425.  
  2426. +++ Entry-xview_moveto(self, fraction):
  2427.  
  2428. +++ Entry-xview_scroll(self, number, what):
  2429.  
  2430. *** class Event
  2431.  
  2432.     Container for the properties of an event.
  2433.     Instances of this type are generated if one of the following events occurs:
  2434.     KeyPress, KeyRelease - for keyboard events
  2435.     ButtonPress, ButtonRelease, Motion, Enter, Leave, MouseWheel - for mouse events
  2436.     Visibility, Unmap, Map, Expose, FocusIn, FocusOut, Circulate,
  2437.     Colormap, Gravity, Reparent, Property, Destroy, Activate,
  2438.     Deactivate - for window events.
  2439.     If a callback function for one of these events is registered
  2440.     using bind, bind_all, bind_class, or tag_bind, the callback is
  2441.     called with an Event as first argument. It will have the
  2442.     following attributes (in braces are the event types for which
  2443.     the attribute is valid):
  2444.         serial - serial number of event
  2445.     num - mouse button pressed (ButtonPress, ButtonRelease)
  2446.     focus - whether the window has the focus (Enter, Leave)
  2447.     height - height of the exposed window (Configure, Expose)
  2448.     width - width of the exposed window (Configure, Expose)
  2449.     keycode - keycode of the pressed key (KeyPress, KeyRelease)
  2450.     state - state of the event as a number (ButtonPress, ButtonRelease,
  2451.                             Enter, KeyPress, KeyRelease,
  2452.                             Leave, Motion)
  2453.     state - state as a string (Visibility)
  2454.     time - when the event occurred
  2455.     x - x-position of the mouse
  2456.     y - y-position of the mouse
  2457.     x_root - x-position of the mouse on the screen
  2458.              (ButtonPress, ButtonRelease, KeyPress, KeyRelease, Motion)
  2459.     y_root - y-position of the mouse on the screen
  2460.     char - pressed character (KeyPress, KeyRelease)
  2461.     send_event - see X/Windows documentation
  2462.     keysym - keysym of the event as a string (KeyPress, KeyRelease)
  2463.     keysym_num - keysym of the event as a number (KeyPress, KeyRelease)
  2464.     type - type of the event as a number
  2465.     widget - widget in which the event occurred
  2466.     delta - delta of wheel movement (MouseWheel)
  2467.  
  2468.     Frame widget which may contain other widgets and can have a 3D border.
  2469.     Frame
  2470.  
  2471. +++ Frame-__init__(self, master={}, **kw):
  2472.     Construct a frame widget with the parent MASTER.
  2473.     Valid resource names: background, bd, bg, borderwidth, class,
  2474.     colormap, container, cursor, height, highlightbackground,
  2475.     highlightcolor, highlightthickness, relief, takefocus, visual, width
  2476.  
  2477. Methods inherited from BaseWidget:
  2478.  
  2479. +++ Frame-destroy(self):Frame-__contains__(self, key)
  2480.  
  2481. +++ Frame-__getitem__ = cget(self, key):
  2482.  
  2483. +++ Frame-__setitem__(self, key, value)
  2484.  
  2485. +++ Frame-__str__(self):
  2486.  
  2487. +++ Frame-after(self, ms, func=None, *args):
  2488.  
  2489. +++ Frame-after_cancel(self, id):
  2490.  
  2491. +++ Frame-after_idle(self, func, *args):
  2492.  
  2493. +++ Frame-bbox = grid_bbox(self, column=None):
  2494.  
  2495. +++ Frame-bell(self, display of=0):
  2496.  
  2497. +++ Frame-bind(self, sequence=None):Frame-bind_all(self, sequence=None):
  2498.  
  2499. +++ Frame-bind_class(self, className, sequence=None):
  2500.  
  2501. +++ Frame-bindtags(self, tagList=None):
  2502.  
  2503. +++ Frame-cget(self, key):
  2504.  
  2505. +++ Frame-clipboard_append(self, string, **kw):
  2506.  
  2507. +++ Frame-clipboard_clear(self, **kw):
  2508.  
  2509. +++ Frame-clipboard_get(self, **kw):
  2510.  
  2511.         selection_get(CLIPBOARD)
  2512.  
  2513. +++ Frame-colormodel(self, value=None):
  2514.  
  2515. +++ Frame-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
  2516.  
  2517. +++ Frame-config = configure(self, cnf=None, **kw):
  2518.  
  2519. +++ Frame-configure(self, cnf=None, **kw):
  2520.  
  2521. +++ Frame-deletecommand(self, name):
  2522.  
  2523. +++ Frame-event_add(self, virtual, *sequences):
  2524.  
  2525. +++ Frame-event_delete(self, virtual, *sequences):
  2526.  
  2527. +++ Frame-event_generate(self, sequence, **kw):
  2528.  
  2529. +++ Frame-event_info(self, virtual=None):
  2530.  
  2531. +++ Frame-focus = focus_set(self):
  2532.  
  2533. +++ Frame-focus_display of(self):
  2534.  
  2535. +++ Frame-focus_force(self):
  2536.  
  2537. +++ Frame-focus_get(self):
  2538.  
  2539. +++ Frame-focus_lastfor(self):
  2540.  
  2541. +++ Frame-focus_set(self):
  2542.  
  2543. +++ Frame-getboolean(self, s):
  2544.  
  2545. +++ Frame-getvar(self, name='PY_VAR'):
  2546.  
  2547. +++ Frame-grab_current(self):
  2548.  
  2549. +++ Frame-grab_release(self):
  2550.  
  2551. +++ Frame-grab_set(self):
  2552.  
  2553. +++ Frame-grab_set_global(self):
  2554.  
  2555. +++ Frame-grab_status(self):
  2556.  
  2557. +++ Frame-grid_bbox(self, column=None):
  2558.  
  2559. +++ Frame-grid_columnconfigure(self, index, cnf={}, **kw):
  2560.  
  2561. +++ Frame-grid_location(self, x, y):
  2562.  
  2563. +++ Frame-grid_propagate(self, flag=['_noarg_']):
  2564.  
  2565. +++ Frame-grid_rowconfigure(self, index, cnf={}, **kw):
  2566.  
  2567. +++ Frame-grid_size(self):
  2568.  
  2569. +++ Frame-grid_slaves(self, row=None):
  2570.  
  2571. +++ Frame-image_names(self):
  2572.  
  2573. +++ Frame-image_types(self):
  2574.  
  2575. +++ Frame-keys(self):
  2576.  
  2577. +++ Frame-lift = tkraise(self, aboveThis=None):
  2578.  
  2579. +++ Frame-lower(self, belowThis=None):
  2580.  
  2581. +++ Frame-mainloop(self, n=0):
  2582.  
  2583. +++ Frame-nametowidget(self, name):
  2584.  
  2585. +++ Frame-option_add(self, pattern, value, priority=None):
  2586.  
  2587. +++ Frame-option_clear(self):
  2588.  
  2589. +++ Frame-option_get(self, name, className):
  2590.  
  2591. +++ Frame-option_readfile(self, fileName, priority=None):
  2592.  
  2593. +++ Frame-pack_propagate(self, flag=['_noarg_']):
  2594.  
  2595. +++ Frame-pack_slaves(self):
  2596.  
  2597. +++ Frame-place_slaves(self):
  2598.  
  2599. +++ Frame-propagate = pack_propagate(self, flag=['_noarg_']):
  2600.  
  2601. +++ Frame-quit(self):
  2602.  
  2603. +++ Frame-register = _register(self, func, subst=1):
  2604.  
  2605. +++ Frame-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
  2606.  
  2607. +++ Frame-selection_clear(self, **kw):
  2608.  
  2609. +++ Frame-selection_get(self, **kw):
  2610.  
  2611. +++ Frame-selection_handle(self, command, **kw):
  2612.  
  2613. +++ Frame-selection_own(self, **kw):
  2614.  
  2615. +++ Frame-selection_own_get(self, **kw):
  2616.  
  2617. +++ Frame-send(self, interp, cmd, *args):
  2618.  
  2619. +++ Frame-setvar(self, name='1'):
  2620.  
  2621. +++ Frame-size = grid_size(self):
  2622.  
  2623. +++ Frame-slaves = pack_slaves(self):
  2624.  
  2625. +++ Frame-tk_bisque(self):
  2626.  
  2627. +++ Frame-tk_focusFollowsMouse(self):
  2628.  
  2629. +++ Frame-tk_focusNext(self):
  2630.  
  2631. +++ Frame-tk_focusPrev(self):
  2632.  
  2633. +++ Frame-tk_menuBar(self, *args):
  2634.  
  2635. +++ Frame-tk_setPalette(self, *args, **kw):
  2636.  
  2637. +++ Frame-tk_strictMotif(self, boolean=None):
  2638.  
  2639. +++ Frame-tkraise(self, aboveThis=None):
  2640.  
  2641. +++ Frame-unbind(self, sequence, funcid=None):
  2642.  
  2643. +++ Frame-unbind_all(self, sequence):
  2644.  
  2645. +++ Frame-unbind_class(self, className, sequence):
  2646.  
  2647. +++ Frame-update(self):
  2648.  
  2649. +++ Frame-update_idletasks(self):
  2650.  
  2651. +++ Frame-wait_variable(self, name='PY_VAR'):
  2652.  
  2653. +++ Frame-wait_visibility(self, window=None):
  2654.  
  2655. +++ Frame-wait_window(self, window=None):
  2656.  
  2657. +++ Frame-waitvar = wait_variable(self, name='PY_VAR'):
  2658.  
  2659. +++ Frame-winfo_atom(self, name, display of=0):
  2660.  
  2661. +++ Frame-winfo_atomname(self, id, display of=0):
  2662.  
  2663. +++ Frame-winfo_cells(self):
  2664.  
  2665. +++ Frame-winfo_children(self):
  2666.  
  2667. +++ Frame-winfo_class(self):
  2668.  
  2669. +++ Frame-winfo_colormapfull(self):
  2670.  
  2671. +++ Frame-winfo_containing(self, rootX, rootY, display of=0):
  2672.  
  2673. +++ Frame-winfo_depth(self):
  2674.  
  2675. +++ Frame-winfo_exists(self):
  2676.  
  2677. +++ Frame-winfo_fpixels(self, number):
  2678.  
  2679. +++ Frame-winfo_geometry(self):
  2680.  
  2681. +++ Frame-winfo_height(self):
  2682.  
  2683. +++ Frame-winfo_id(self):
  2684.  
  2685. +++ Frame-winfo_interps(self, display of=0):
  2686.  
  2687. +++ Frame-winfo_ismapped(self):
  2688.  
  2689. +++ Frame-winfo_manager(self):
  2690.  
  2691. +++ Frame-winfo_name(self):
  2692.  
  2693. +++ Frame-winfo_parent(self):
  2694.  
  2695. +++ Frame-winfo_pathname(self, id, display of=0):
  2696.  
  2697. +++ Frame-winfo_pixels(self, number):
  2698.  
  2699. +++ Frame-winfo_pointerx(self):
  2700.  
  2701. +++ Frame-winfo_pointerxy(self):
  2702.  
  2703. +++ Frame-winfo_pointery(self):
  2704.  
  2705. +++ Frame-winfo_reqheight(self):
  2706.  
  2707. +++ Frame-winfo_reqwidth(self):
  2708.  
  2709. +++ Frame-winfo_rgb(self, color):
  2710.  
  2711. +++ Frame-winfo_rootx(self):
  2712.  
  2713. +++ Frame-winfo_rooty(self):
  2714.  
  2715. +++ Frame-winfo_screen(self):
  2716.  
  2717. +++ Frame-winfo_screencells(self):
  2718.  
  2719. +++ Frame-winfo_screendepth(self):
  2720.  
  2721. +++ Frame-winfo_screenheight(self):
  2722.  
  2723. +++ Frame-winfo_screenmmheight(self):
  2724.  
  2725. +++ Frame-winfo_screenmmwidth(self):
  2726.  
  2727. +++ Frame-winfo_screenvisual(self):
  2728.  
  2729. +++ Frame-winfo_screenwidth(self):
  2730.  
  2731. +++ Frame-winfo_server(self):
  2732.  
  2733. +++ Frame-winfo_toplevel(self):
  2734.  
  2735. +++ Frame-winfo_viewable(self):
  2736.  
  2737. +++ Frame-winfo_visual(self):
  2738.  
  2739. +++ Frame-winfo_visualid(self):
  2740.  
  2741. +++ Frame-winfo_visualsavailable(self, includeids=0):
  2742.  
  2743. +++ Frame-winfo_vrootheight(self):
  2744.  
  2745. +++ Frame-winfo_vrootwidth(self):
  2746.  
  2747. +++ Frame-winfo_vrootx(self):
  2748.  
  2749. +++ Frame-winfo_vrooty(self):
  2750.  
  2751. +++ Frame-winfo_width(self):
  2752.  
  2753. +++ Frame-winfo_x(self):
  2754.  
  2755. +++ Frame-winfo_y(self):
  2756.  
  2757.  
  2758. +++ Frame-forget = pack_forget(self):
  2759.  
  2760. +++ Frame-info = pack_info(self):
  2761.  
  2762. +++ Frame-pack = pack_configure(self, cnf={}, **kw):
  2763.  
  2764. +++ Frame-pack_configure(self, cnf={}, **kw):
  2765.  
  2766. +++ Frame-pack_forget(self):
  2767.  
  2768. +++ Frame-pack_info(self):Frame-place = place_configure(self, cnf={}, **kw):
  2769.  
  2770. +++ Frame-place_configure(self, cnf={}, **kw):
  2771.  
  2772. +++ Frame-place_forget(self):
  2773.  
  2774. +++ Frame-place_info(self):Frame-grid = grid_configure(self, cnf={}, **kw):
  2775.  
  2776. +++ Frame-grid_configure(self, cnf={}, **kw):
  2777.  
  2778. +++ Frame-grid_forget(self):
  2779.  
  2780. +++ Frame-grid_info(self):
  2781.  
  2782. +++ Frame-grid_remove(self):
  2783.  
  2784. +++ Frame-location = grid_location(self, x, y):
  2785.  
  2786. *** class Grid
  2787.  
  2788.     Geometry manager Grid.
  2789.     Base class to use the methods grid_* in every widget.
  2790.  
  2791. +++ Grid-bbox = grid_bbox(self, columnMisc:
  2792.  
  2793. +++ Grid-columnconfigure = grid_columnconfigure(self, index, cnfMisc:
  2794.  
  2795. +++ Grid-config = grid_configure(self, cnf={}, **kw)
  2796.  
  2797. +++ Grid-configure = grid_configure(self, cnf={}, **kw)
  2798.  
  2799. +++ Grid-forget = grid_forget(self)
  2800.  
  2801. +++ Grid-grid = grid_configure(self, cnf={}, **kw)
  2802.  
  2803. +++ Grid-grid_bbox(self, columnMisc:
  2804.  
  2805. +++ Grid-grid_columnconfigure(self, index, cnfMisc:
  2806.  
  2807. +++ Grid-grid_configure(self, cnf={}, **kw):
  2808.  
  2809. +++ Grid-grid_forget(self):
  2810.  
  2811. +++ Grid-grid_info(self):
  2812.  
  2813. +++ Grid-grid_location(self, x, y)Misc:
  2814.  
  2815. +++ Grid-grid_propagate(self, flagMisc:
  2816.  
  2817. +++ Grid-grid_remove(self):
  2818.  
  2819. +++ Grid-grid_rowconfigure(self, index, cnfMisc:
  2820.  
  2821. +++ Grid-grid_size(self)Misc:
  2822.  
  2823. +++ Grid-grid_slaves(self, rowMisc:
  2824.  
  2825. +++ Grid-info = grid_info(self)
  2826.  
  2827. +++ Grid-location = grid_location(self, x, y)Misc:
  2828.  
  2829. +++ Grid-propagate = grid_propagate(self, flagMisc:
  2830.  
  2831. +++ Grid-rowconfigure = grid_rowconfigure(self, index, cnfMisc:
  2832.  
  2833. +++ Grid-size = grid_size(self)Misc:
  2834.  
  2835. +++ Grid-slaves = grid_slaves(self, rowMisc:
  2836.  
  2837. *** class Image
  2838.  
  2839.     Base class for images.
  2840.  
  2841. +++ Image-__del__(self)
  2842.  
  2843. +++ Image-__getitem__(self, key)
  2844.  
  2845. +++ Image-__init__(self, imgtype, name=None, **kw)
  2846.  
  2847. +++ Image-__setitem__(self, key, value)
  2848.  
  2849. +++ Image-__str__(self)
  2850.  
  2851. +++ Image-config = configure(self, **kw)
  2852.  
  2853. +++ Image-configure(self, **kw):
  2854.  
  2855. +++ Image-height(self):
  2856.  
  2857. +++ Image-type(self):
  2858.  
  2859. +++ Image-width(self):
  2860.     Value holder for integer variables.
  2861.  
  2862. +++ IntVar-__init__(self, master=None):
  2863.     Construct an integer variable.
  2864.     VALUE is an optional value (defaults to 0)
  2865.  
  2866. +++ IntVar-get(self):
  2867.     Return the value of the variable as an integer.
  2868.  
  2869. +++ IntVar-set(self, value):
  2870.     Set the variable to value, converting booleans to integers.IntVar-__del__(self):
  2871.  
  2872. +++ IntVar-__eq__(self, other):
  2873.  
  2874. +++ IntVar-__str__(self):
  2875.  
  2876. +++ IntVar-trace = trace_variable(self, mode, callback):
  2877.  
  2878. +++ IntVar-trace_variable(self, mode, callback):
  2879.  
  2880. +++ IntVar-trace_vdelete(self, mode, cbname):
  2881.  
  2882. +++ IntVar-trace_vinfo(self):
  2883.     Label widget which can display text and bitmaps.
  2884.     Label
  2885.  
  2886. ...
  2887. +++ Label-__init__(self, master={}, **kw):
  2888.     Construct a label widget with the parent MASTER.
  2889.         disabledforeground, font, foreground,
  2890.         padx, pady, relief, takefocus, text,
  2891.         height, state, width
  2892.  
  2893. +++ Label-destroy(self):Label-__contains__(self, key)
  2894.  
  2895. +++ Label-__getitem__ = cget(self, key):
  2896.  
  2897. +++ Label-__setitem__(self, key, value)
  2898.  
  2899. +++ Label-__str__(self):
  2900.  
  2901. +++ Label-after(self, ms, func=None, *args):
  2902.  
  2903. +++ Label-after_cancel(self, id):
  2904.  
  2905. +++ Label-after_idle(self, func, *args):
  2906.  
  2907. +++ Label-bbox = grid_bbox(self, column=None):
  2908.  
  2909. +++ Label-bell(self, display of=0):
  2910.  
  2911. +++ Label-bind(self, sequence=None):Label-bind_all(self, sequence=None):
  2912.  
  2913. +++ Label-bind_class(self, className, sequence=None):
  2914.  
  2915. +++ Label-bindtags(self, tagList=None):
  2916.  
  2917. +++ Label-cget(self, key):
  2918.  
  2919. +++ Label-clipboard_append(self, string, **kw):
  2920.  
  2921. +++ Label-clipboard_clear(self, **kw):
  2922.  
  2923. +++ Label-clipboard_get(self, **kw):Label-colormodel(self, value=None):
  2924.  
  2925. +++ Label-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
  2926.  
  2927. +++ Label-config = configure(self, cnf=None, **kw):
  2928.  
  2929. +++ Label-configure(self, cnf=None, **kw):
  2930.  
  2931. +++ Label-deletecommand(self, name):
  2932.  
  2933. +++ Label-event_add(self, virtual, *sequences):
  2934.  
  2935. +++ Label-event_delete(self, virtual, *sequences):
  2936.  
  2937. +++ Label-event_generate(self, sequence, **kw):
  2938.  
  2939. +++ Label-event_info(self, virtual=None):
  2940.  
  2941. +++ Label-focus = focus_set(self):
  2942.  
  2943. +++ Label-focus_display of(self):
  2944.  
  2945. +++ Label-focus_force(self):
  2946.  
  2947. +++ Label-focus_get(self):
  2948.  
  2949. +++ Label-focus_lastfor(self):
  2950.  
  2951. +++ Label-focus_set(self):
  2952.  
  2953. +++ Label-getboolean(self, s):
  2954.  
  2955. +++ Label-getvar(self, name='PY_VAR'):
  2956.  
  2957. +++ Label-grab_current(self):
  2958.  
  2959. +++ Label-grab_release(self):
  2960.  
  2961. +++ Label-grab_set(self):
  2962.  
  2963. +++ Label-grab_set_global(self):
  2964.  
  2965. +++ Label-grab_status(self):
  2966.  
  2967. +++ Label-grid_bbox(self, column=None):
  2968.  
  2969. +++ Label-grid_columnconfigure(self, index, cnf={}, **kw):
  2970.  
  2971. +++ Label-grid_location(self, x, y):
  2972.  
  2973. +++ Label-grid_propagate(self, flag=['_noarg_']):
  2974.  
  2975. +++ Label-grid_rowconfigure(self, index, cnf={}, **kw):
  2976.  
  2977. +++ Label-grid_size(self):
  2978.  
  2979. +++ Label-grid_slaves(self, row=None):
  2980.  
  2981. +++ Label-image_names(self):
  2982.  
  2983. +++ Label-image_types(self):
  2984.  
  2985. +++ Label-keys(self):
  2986.  
  2987. +++ Label-lift = tkraise(self, aboveThis=None):
  2988.  
  2989. +++ Label-lower(self, belowThis=None):
  2990.  
  2991. +++ Label-mainloop(self, n=0):
  2992.  
  2993. +++ Label-nametowidget(self, name):
  2994.  
  2995. +++ Label-option_add(self, pattern, value, priority=None):
  2996.  
  2997. +++ Label-option_clear(self):
  2998.  
  2999. +++ Label-option_get(self, name, className):
  3000.  
  3001. +++ Label-option_readfile(self, fileName, priority=None):
  3002.  
  3003. +++ Label-pack_propagate(self, flag=['_noarg_']):
  3004.  
  3005. +++ Label-pack_slaves(self):
  3006.  
  3007. +++ Label-place_slaves(self):
  3008.  
  3009. +++ Label-propagate = pack_propagate(self, flag=['_noarg_']):
  3010.  
  3011. +++ Label-quit(self):
  3012.  
  3013. +++ Label-register = _register(self, func, subst=1):
  3014.  
  3015. +++ Label-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
  3016.  
  3017. +++ Label-selection_clear(self, **kw):
  3018.  
  3019. +++ Label-selection_get(self, **kw):
  3020.  
  3021. +++ Label-selection_handle(self, command, **kw):
  3022.  
  3023. +++ Label-selection_own(self, **kw):
  3024.  
  3025. +++ Label-selection_own_get(self, **kw):
  3026.  
  3027. +++ Label-send(self, interp, cmd, *args):
  3028.  
  3029. +++ Label-setvar(self, name='1'):
  3030.  
  3031. +++ Label-size = grid_size(self):
  3032.  
  3033. +++ Label-slaves = pack_slaves(self):
  3034.  
  3035. +++ Label-tk_bisque(self):
  3036.  
  3037. +++ Label-tk_focusFollowsMouse(self):
  3038.  
  3039. +++ Label-tk_focusNext(self):
  3040.  
  3041. +++ Label-tk_focusPrev(self):
  3042.  
  3043. +++ Label-tk_menuBar(self, *args):
  3044.  
  3045. +++ Label-tk_setPalette(self, *args, **kw):
  3046.  
  3047. +++ Label-tk_strictMotif(self, boolean=None):
  3048.  
  3049. +++ Label-tkraise(self, aboveThis=None):
  3050.  
  3051. +++ Label-unbind(self, sequence, funcid=None):
  3052.  
  3053. +++ Label-unbind_all(self, sequence):
  3054.  
  3055. +++ Label-unbind_class(self, className, sequence):
  3056.  
  3057. +++ Label-update(self):
  3058.  
  3059. +++ Label-update_idletasks(self):
  3060.  
  3061. +++ Label-wait_variable(self, name='PY_VAR'):
  3062.  
  3063. +++ Label-wait_visibility(self, window=None):
  3064.  
  3065. +++ Label-wait_window(self, window=None):
  3066.  
  3067. +++ Label-waitvar = wait_variable(self, name='PY_VAR'):
  3068.  
  3069. +++ Label-winfo_atom(self, name, display of=0):
  3070.  
  3071. +++ Label-winfo_atomname(self, id, display of=0):
  3072.  
  3073. +++ Label-winfo_cells(self):
  3074.  
  3075. +++ Label-winfo_children(self):
  3076.  
  3077. +++ Label-winfo_class(self):
  3078.  
  3079. +++ Label-winfo_colormapfull(self):
  3080.  
  3081. +++ Label-winfo_containing(self, rootX, rootY, display of=0):
  3082.  
  3083. +++ Label-winfo_depth(self):
  3084.  
  3085. +++ Label-winfo_exists(self):
  3086.  
  3087. +++ Label-winfo_fpixels(self, number):
  3088.  
  3089. +++ Label-winfo_geometry(self):
  3090.  
  3091. +++ Label-winfo_height(self):
  3092.  
  3093. +++ Label-winfo_id(self):
  3094.  
  3095. +++ Label-winfo_interps(self, display of=0):
  3096.  
  3097. +++ Label-winfo_ismapped(self):
  3098.  
  3099. +++ Label-winfo_manager(self):
  3100.  
  3101. +++ Label-winfo_name(self):
  3102.  
  3103. +++ Label-winfo_parent(self):
  3104.  
  3105. +++ Label-winfo_pathname(self, id, display of=0):
  3106.  
  3107. +++ Label-winfo_pixels(self, number):
  3108.  
  3109. +++ Label-winfo_pointerx(self):
  3110.  
  3111. +++ Label-winfo_pointerxy(self):
  3112.  
  3113. +++ Label-winfo_pointery(self):
  3114.  
  3115. +++ Label-winfo_reqheight(self):
  3116.  
  3117. +++ Label-winfo_reqwidth(self):
  3118.  
  3119. +++ Label-winfo_rgb(self, color):
  3120.  
  3121. +++ Label-winfo_rootx(self):
  3122.  
  3123. +++ Label-winfo_rooty(self):
  3124.  
  3125. +++ Label-winfo_screen(self):
  3126.  
  3127. +++ Label-winfo_screencells(self):
  3128.  
  3129. +++ Label-winfo_screendepth(self):
  3130.  
  3131. +++ Label-winfo_screenheight(self):
  3132.  
  3133. +++ Label-winfo_screenmmheight(self):
  3134.  
  3135. +++ Label-winfo_screenmmwidth(self):
  3136.  
  3137. +++ Label-winfo_screenvisual(self):
  3138.  
  3139. +++ Label-winfo_screenwidth(self):
  3140.  
  3141. +++ Label-winfo_server(self):
  3142.  
  3143. +++ Label-winfo_toplevel(self):
  3144.  
  3145. +++ Label-winfo_viewable(self):
  3146.  
  3147. +++ Label-winfo_visual(self):
  3148.  
  3149. +++ Label-winfo_visualid(self):
  3150.  
  3151. +++ Label-winfo_visualsavailable(self, includeids=0):
  3152.  
  3153. +++ Label-winfo_vrootheight(self):
  3154.  
  3155. +++ Label-winfo_vrootwidth(self):
  3156.  
  3157. +++ Label-winfo_vrootx(self):
  3158.  
  3159. +++ Label-winfo_vrooty(self):
  3160.  
  3161. +++ Label-winfo_width(self):
  3162.  
  3163. +++ Label-winfo_x(self):
  3164.  
  3165. +++ Label-winfo_y(self):
  3166.  
  3167. +++ Label-forget = pack_forget(self):
  3168.  
  3169. +++ Label-info = pack_info(self):
  3170.  
  3171. +++ Label-pack = pack_configure(self, cnf={}, **kw):
  3172.  
  3173. +++ Label-pack_configure(self, cnf={}, **kw):
  3174.  
  3175. +++ Label-pack_forget(self):
  3176.  
  3177. +++ Label-pack_info(self):Label-place = place_configure(self, cnf={}, **kw):
  3178.  
  3179. +++ Label-place_configure(self, cnf={}, **kw):
  3180.  
  3181. +++ Label-place_forget(self):
  3182.  
  3183. +++ Label-place_info(self):Label-grid = grid_configure(self, cnf={}, **kw):
  3184.  
  3185. +++ Label-grid_configure(self, cnf={}, **kw):
  3186.  
  3187. +++ Label-grid_forget(self):
  3188.  
  3189. +++ Label-grid_info(self):
  3190.  
  3191. +++ Label-grid_remove(self):
  3192.  
  3193. +++ Label-location = grid_location(self, x, y):
  3194.     labelframe widget.
  3195.     LabelFrame
  3196.  
  3197. +++ LabelFrame-__init__(self, master={}, **kw):
  3198.     Construct a labelframe widget with the parent MASTER.
  3199.         borderwidth, cursor, font, foreground,
  3200.         highlightthickness, padx, pady, relief,
  3201.         takefocus, text
  3202.         background, class, colormap, container,
  3203.         height, labelanchor, labelwidget,
  3204.         visual, width
  3205.  
  3206. +++ LabelFrame-destroy(self):LabelFrame-__contains__(self, key)
  3207.  
  3208. +++ LabelFrame-__getitem__ = cget(self, key):
  3209.  
  3210. +++ LabelFrame-__setitem__(self, key, value)
  3211.  
  3212. +++ LabelFrame-__str__(self):
  3213.  
  3214. +++ LabelFrame-after(self, ms, func=None, *args):
  3215.  
  3216. +++ LabelFrame-after_cancel(self, id):
  3217.  
  3218. +++ LabelFrame-after_idle(self, func, *args):
  3219.  
  3220. +++ LabelFrame-bbox = grid_bbox(self, column=None):
  3221.  
  3222. +++ LabelFrame-bell(self, display of=0):
  3223.  
  3224. +++ LabelFrame-bind(self, sequence=None):LabelFrame-bind_all(self, sequence=None):
  3225.  
  3226. +++ LabelFrame-bind_class(self, className, sequence=None):
  3227.  
  3228. +++ LabelFrame-bindtags(self, tagList=None):
  3229.  
  3230. +++ LabelFrame-cget(self, key):
  3231.  
  3232. +++ LabelFrame-clipboard_append(self, string, **kw):
  3233.  
  3234. +++ LabelFrame-clipboard_clear(self, **kw):
  3235.  
  3236. +++ LabelFrame-clipboard_get(self, **kw):LabelFrame-colormodel(self, value=None):
  3237.  
  3238. +++ LabelFrame-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
  3239.  
  3240. +++ LabelFrame-config = configure(self, cnf=None, **kw):
  3241.  
  3242. +++ LabelFrame-configure(self, cnf=None, **kw):
  3243.  
  3244. +++ LabelFrame-deletecommand(self, name):
  3245.  
  3246. +++ LabelFrame-event_add(self, virtual, *sequences):
  3247.  
  3248. +++ LabelFrame-event_delete(self, virtual, *sequences):
  3249.  
  3250. +++ LabelFrame-event_generate(self, sequence, **kw):
  3251.  
  3252. +++ LabelFrame-event_info(self, virtual=None):
  3253.  
  3254. +++ LabelFrame-focus = focus_set(self):
  3255.  
  3256. +++ LabelFrame-focus_display of(self):
  3257.  
  3258. +++ LabelFrame-focus_force(self):
  3259.  
  3260. +++ LabelFrame-focus_get(self):
  3261.  
  3262. +++ LabelFrame-focus_lastfor(self):
  3263.  
  3264. +++ LabelFrame-focus_set(self):
  3265.  
  3266. +++ LabelFrame-getboolean(self, s):
  3267.  
  3268. +++ LabelFrame-getvar(self, name='PY_VAR'):
  3269.  
  3270. +++ LabelFrame-grab_current(self):
  3271.  
  3272. +++ LabelFrame-grab_release(self):
  3273.  
  3274. +++ LabelFrame-grab_set(self):
  3275.  
  3276. +++ LabelFrame-grab_set_global(self):
  3277.  
  3278. +++ LabelFrame-grab_status(self):
  3279.  
  3280. +++ LabelFrame-grid_bbox(self, column=None):
  3281.  
  3282. +++ LabelFrame-grid_columnconfigure(self, index, cnf={}, **kw):
  3283.  
  3284. +++ LabelFrame-grid_location(self, x, y):
  3285.  
  3286. +++ LabelFrame-grid_propagate(self, flag=['_noarg_']):
  3287.  
  3288. +++ LabelFrame-grid_rowconfigure(self, index, cnf={}, **kw):
  3289.  
  3290. +++ LabelFrame-grid_size(self):
  3291.  
  3292. +++ LabelFrame-grid_slaves(self, row=None):
  3293.  
  3294. +++ LabelFrame-image_names(self):
  3295.  
  3296. +++ LabelFrame-image_types(self):
  3297.  
  3298. +++ LabelFrame-keys(self):
  3299.  
  3300. +++ LabelFrame-lift = tkraise(self, aboveThis=None):
  3301.  
  3302. +++ LabelFrame-lower(self, belowThis=None):
  3303.  
  3304. +++ LabelFrame-mainloop(self, n=0):
  3305.  
  3306. +++ LabelFrame-nametowidget(self, name):
  3307.  
  3308. +++ LabelFrame-option_add(self, pattern, value, priority=None):
  3309.  
  3310. +++ LabelFrame-option_clear(self):
  3311.  
  3312. +++ LabelFrame-option_get(self, name, className):
  3313.  
  3314. +++ LabelFrame-option_readfile(self, fileName, priority=None):
  3315.  
  3316. +++ LabelFrame-pack_propagate(self, flag=['_noarg_']):
  3317.  
  3318. +++ LabelFrame-pack_slaves(self):
  3319.  
  3320. +++ LabelFrame-place_slaves(self):
  3321.  
  3322. +++ LabelFrame-propagate = pack_propagate(self, flag=['_noarg_']):
  3323.  
  3324. +++ LabelFrame-quit(self):
  3325.  
  3326. +++ LabelFrame-register = _register(self, func, subst=1):
  3327.  
  3328. +++ LabelFrame-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
  3329.  
  3330. +++ LabelFrame-selection_clear(self, **kw):
  3331.  
  3332. +++ LabelFrame-selection_get(self, **kw):
  3333.  
  3334. +++ LabelFrame-selection_handle(self, command, **kw):
  3335.  
  3336. +++ LabelFrame-selection_own(self, **kw):
  3337.  
  3338. +++ LabelFrame-selection_own_get(self, **kw):
  3339.  
  3340. +++ LabelFrame-send(self, interp, cmd, *args):
  3341.  
  3342. +++ LabelFrame-setvar(self, name='1'):
  3343.  
  3344. +++ LabelFrame-size = grid_size(self):
  3345.  
  3346. +++ LabelFrame-slaves = pack_slaves(self):
  3347.  
  3348. +++ LabelFrame-tk_bisque(self):
  3349.  
  3350. +++ LabelFrame-tk_focusFollowsMouse(self):
  3351.  
  3352. +++ LabelFrame-tk_focusNext(self):
  3353.  
  3354. +++ LabelFrame-tk_focusPrev(self):
  3355.  
  3356. +++ LabelFrame-tk_menuBar(self, *args):
  3357.  
  3358. +++ LabelFrame-tk_setPalette(self, *args, **kw):
  3359.  
  3360. +++ LabelFrame-tk_strictMotif(self, boolean=None):
  3361.  
  3362. +++ LabelFrame-tkraise(self, aboveThis=None):
  3363.  
  3364. +++ LabelFrame-unbind(self, sequence, funcid=None):
  3365.  
  3366. +++ LabelFrame-unbind_all(self, sequence):
  3367.  
  3368. +++ LabelFrame-unbind_class(self, className, sequence):
  3369.  
  3370. +++ LabelFrame-update(self):
  3371.  
  3372. +++ LabelFrame-update_idletasks(self):
  3373.  
  3374. +++ LabelFrame-wait_variable(self, name='PY_VAR'):
  3375.  
  3376. +++ LabelFrame-wait_visibility(self, window=None):
  3377.  
  3378. +++ LabelFrame-wait_window(self, window=None):
  3379.  
  3380. +++ LabelFrame-waitvar = wait_variable(self, name='PY_VAR'):
  3381.  
  3382. +++ LabelFrame-winfo_atom(self, name, display of=0):
  3383.  
  3384. +++ LabelFrame-winfo_atomname(self, id, display of=0):
  3385.  
  3386. +++ LabelFrame-winfo_cells(self):
  3387.  
  3388. +++ LabelFrame-winfo_children(self):
  3389.  
  3390. +++ LabelFrame-winfo_class(self):
  3391.  
  3392. +++ LabelFrame-winfo_colormapfull(self):
  3393.  
  3394. +++ LabelFrame-winfo_containing(self, rootX, rootY, display of=0):
  3395.  
  3396. +++ LabelFrame-winfo_depth(self):
  3397.  
  3398. +++ LabelFrame-winfo_exists(self):
  3399.  
  3400. +++ LabelFrame-winfo_fpixels(self, number):
  3401.  
  3402. +++ LabelFrame-winfo_geometry(self):
  3403.  
  3404. +++ LabelFrame-winfo_height(self):
  3405.  
  3406. +++ LabelFrame-winfo_id(self):
  3407.  
  3408. +++ LabelFrame-winfo_interps(self, display of=0):
  3409.  
  3410. +++ LabelFrame-winfo_ismapped(self):
  3411.  
  3412. +++ LabelFrame-winfo_manager(self):
  3413.  
  3414. +++ LabelFrame-winfo_name(self):
  3415.  
  3416. +++ LabelFrame-winfo_parent(self):
  3417.  
  3418. +++ LabelFrame-winfo_pathname(self, id, display of=0):
  3419.  
  3420. +++ LabelFrame-winfo_pixels(self, number):
  3421.  
  3422. +++ LabelFrame-winfo_pointerx(self):
  3423.  
  3424. +++ LabelFrame-winfo_pointerxy(self):
  3425.  
  3426. +++ LabelFrame-winfo_pointery(self):
  3427.  
  3428. +++ LabelFrame-winfo_reqheight(self):
  3429.  
  3430. +++ LabelFrame-winfo_reqwidth(self):
  3431.  
  3432. +++ LabelFrame-winfo_rgb(self, color):
  3433.  
  3434. +++ LabelFrame-winfo_rootx(self):
  3435.  
  3436. +++ LabelFrame-winfo_rooty(self):
  3437.  
  3438. +++ LabelFrame-winfo_screen(self):
  3439.  
  3440. +++ LabelFrame-winfo_screencells(self):
  3441.  
  3442. +++ LabelFrame-winfo_screendepth(self):
  3443.  
  3444. +++ LabelFrame-winfo_screenheight(self):
  3445.  
  3446. +++ LabelFrame-winfo_screenmmheight(self):
  3447.  
  3448. +++ LabelFrame-winfo_screenmmwidth(self):
  3449.  
  3450. +++ LabelFrame-winfo_screenvisual(self):
  3451.  
  3452. +++ LabelFrame-winfo_screenwidth(self):
  3453.  
  3454. +++ LabelFrame-winfo_server(self):
  3455.  
  3456. +++ LabelFrame-winfo_toplevel(self):
  3457.  
  3458. +++ LabelFrame-winfo_viewable(self):
  3459.  
  3460. +++ LabelFrame-winfo_visual(self):
  3461.  
  3462. +++ LabelFrame-winfo_visualid(self):
  3463.  
  3464. +++ LabelFrame-winfo_visualsavailable(self, includeids=0):
  3465.  
  3466. +++ LabelFrame-winfo_vrootheight(self):
  3467.  
  3468. +++ LabelFrame-winfo_vrootwidth(self):
  3469.  
  3470. +++ LabelFrame-winfo_vrootx(self):
  3471.  
  3472. +++ LabelFrame-winfo_vrooty(self):
  3473.  
  3474. +++ LabelFrame-winfo_width(self):
  3475.  
  3476. +++ LabelFrame-winfo_x(self):
  3477.  
  3478. +++ LabelFrame-winfo_y(self):
  3479.  
  3480. +++ LabelFrame-forget = pack_forget(self):
  3481.  
  3482. +++ LabelFrame-info = pack_info(self):
  3483.  
  3484. +++ LabelFrame-pack = pack_configure(self, cnf={}, **kw):
  3485.  
  3486. +++ LabelFrame-pack_configure(self, cnf={}, **kw):
  3487.  
  3488. +++ LabelFrame-pack_forget(self):
  3489.  
  3490. +++ LabelFrame-pack_info(self):LabelFrame-place = place_configure(self, cnf={}, **kw):
  3491.  
  3492. +++ LabelFrame-place_configure(self, cnf={}, **kw):
  3493.  
  3494. +++ LabelFrame-place_forget(self):
  3495.  
  3496. +++ LabelFrame-place_info(self):LabelFrame-grid = grid_configure(self, cnf={}, **kw):
  3497.  
  3498. +++ LabelFrame-grid_configure(self, cnf={}, **kw):
  3499.  
  3500. +++ LabelFrame-grid_forget(self):
  3501.  
  3502. +++ LabelFrame-grid_info(self):
  3503.  
  3504. +++ LabelFrame-grid_remove(self):
  3505.  
  3506. +++ LabelFrame-location = grid_location(self, x, y):
  3507.     Listbox widget which can display a list of strings.
  3508.     Listbox
  3509.  
  3510. +++ Listbox-__init__(self, master={}, **kw):
  3511.     Construct a listbox widget with the parent MASTER.
  3512.     exportselection, fg, font, foreground, height, highlightbackground,
  3513.     highlightcolor, highlightthickness, relief, selectbackground,
  3514.     selectborderwidth, selectforeground, selectmode, setgrid, takefocus,
  3515.     width, xscrollcommand, yscrollcommand, listvariable.
  3516.  
  3517. +++ Listbox-activate(self, index):
  3518.     Activate item identified by INDEX.
  3519.  
  3520. +++ Listbox-bbox(self, index):
  3521.     which encloses the item identified by the given index.
  3522.  
  3523. +++ Listbox-curselection(self):
  3524.     Return the indices of currently selected item.
  3525.  
  3526. +++ Listbox-delete(self, first, last=None):
  3527.     Delete items from FIRST to LAST (included).
  3528.  
  3529. +++ Listbox-get(self, first, last=None):
  3530.     Get list of items from FIRST to LAST (included).
  3531.  
  3532. +++ Listbox-index(self, index):
  3533.     Return index of item identified with INDEX.
  3534.  
  3535. +++ Listbox-insert(self, index, *elements):
  3536.     Insert ELEMENTS at INDEX.
  3537.  
  3538. +++ Listbox-itemcget(self, index, option):
  3539.     Return the resource value for an ITEM and an OPTION.
  3540.  
  3541. +++ Listbox-itemconfig = itemconfigure(self, index, cnf=None, **kw)
  3542.  
  3543. +++ Listbox-itemconfigure(self, index, cnf=None, **kw):
  3544.     Configure resources of an ITEM.
  3545.     The values for resources are specified as keyword arguments.
  3546.     To get an overview about the allowed keyword arguments
  3547.     call the method without arguments.
  3548.     Valid resource names: background, bg, foreground, fg,
  3549.     selectbackground, selectforeground.
  3550.  
  3551. +++ Listbox-nearest(self, y):
  3552.     Get index of item which is nearest to y coordinate Y.
  3553.  
  3554. +++ Listbox-scan_dragto(self, x, y):
  3555.     Adjust the view of the listbox to 10 times the
  3556.  
  3557. +++ Listbox-scan_mark(self, x, y):
  3558.  
  3559. +++ Listbox-see(self, index):
  3560.     Scroll such that INDEX is visible.
  3561.  
  3562. +++ Listbox-select_anchor = selection_anchor(self, index)
  3563.  
  3564. +++ Listbox-select_clear = selection_clear(self, first, last=None)
  3565.  
  3566. +++ Listbox-select_includes = selection_includes(self, index)
  3567.  
  3568. +++ Listbox-select_set = selection_set(self, first, last=None)
  3569.  
  3570. +++ Listbox-selection_anchor(self, index):
  3571.     Set the fixed end oft the selection to INDEX.
  3572.  
  3573. +++ Listbox-selection_clear(self, first, last=None):
  3574.     Clear the selection from FIRST to LAST (included).
  3575.  
  3576. +++ Listbox-selection_includes(self, index):
  3577.     Return 1 if INDEX is part of the selection.
  3578.  
  3579. +++ Listbox-selection_set(self, first, last=None):
  3580.     Set the selection from FIRST to LAST (included) without
  3581.     changing the currently selected elements.
  3582.  
  3583. +++ Listbox-size(self):
  3584.     Return the number of elements in the listbox.Listbox-destroy(self):Listbox-__contains__(self, key)
  3585.  
  3586. +++ Listbox-__getitem__ = cget(self, key):
  3587.  
  3588. +++ Listbox-__setitem__(self, key, value)
  3589.  
  3590. +++ Listbox-__str__(self):
  3591.  
  3592. +++ Listbox-after(self, ms, func=None, *args):
  3593.  
  3594. +++ Listbox-after_cancel(self, id):
  3595.  
  3596. +++ Listbox-after_idle(self, func, *args):
  3597.  
  3598. +++ Listbox-bell(self, display of=0):
  3599.  
  3600. +++ Listbox-bind(self, sequence=None):Listbox-bind_all(self, sequence=None):
  3601.  
  3602. +++ Listbox-bind_class(self, className, sequence=None):
  3603.  
  3604. +++ Listbox-bindtags(self, tagList=None):
  3605.  
  3606. +++ Listbox-cget(self, key):
  3607.  
  3608. +++ Listbox-clipboard_append(self, string, **kw):
  3609.  
  3610. +++ Listbox-clipboard_clear(self, **kw):
  3611.  
  3612. +++ Listbox-clipboard_get(self, **kw):Listbox-colormodel(self, value=None):
  3613.  
  3614. +++ Listbox-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
  3615.  
  3616. +++ Listbox-config = configure(self, cnf=None, **kw):
  3617.  
  3618. +++ Listbox-configure(self, cnf=None, **kw):
  3619.  
  3620. +++ Listbox-deletecommand(self, name):
  3621.  
  3622. +++ Listbox-event_add(self, virtual, *sequences):
  3623.  
  3624. +++ Listbox-event_delete(self, virtual, *sequences):
  3625.  
  3626. +++ Listbox-event_generate(self, sequence, **kw):
  3627.  
  3628. +++ Listbox-event_info(self, virtual=None):
  3629.  
  3630. +++ Listbox-focus = focus_set(self):
  3631.  
  3632. +++ Listbox-focus_display of(self):
  3633.  
  3634. +++ Listbox-focus_force(self):
  3635.  
  3636. +++ Listbox-focus_get(self):
  3637.  
  3638. +++ Listbox-focus_lastfor(self):
  3639.  
  3640. +++ Listbox-focus_set(self):
  3641.  
  3642. +++ Listbox-getboolean(self, s):
  3643.  
  3644. +++ Listbox-getvar(self, name='PY_VAR'):
  3645.  
  3646. +++ Listbox-grab_current(self):
  3647.  
  3648. +++ Listbox-grab_release(self):
  3649.  
  3650. +++ Listbox-grab_set(self):
  3651.  
  3652. +++ Listbox-grab_set_global(self):
  3653.  
  3654. +++ Listbox-grab_status(self):
  3655.  
  3656. +++ Listbox-grid_bbox(self, column=None):
  3657.  
  3658. +++ Listbox-grid_columnconfigure(self, index, cnf={}, **kw):
  3659.  
  3660. +++ Listbox-grid_location(self, x, y):
  3661.  
  3662. +++ Listbox-grid_propagate(self, flag=['_noarg_']):
  3663.  
  3664. +++ Listbox-grid_rowconfigure(self, index, cnf={}, **kw):
  3665.  
  3666. +++ Listbox-grid_size(self):
  3667.  
  3668. +++ Listbox-grid_slaves(self, row=None):
  3669.  
  3670. +++ Listbox-image_names(self):
  3671.  
  3672. +++ Listbox-image_types(self):
  3673.  
  3674. +++ Listbox-keys(self):
  3675.  
  3676. +++ Listbox-lift = tkraise(self, aboveThis=None):
  3677.  
  3678. +++ Listbox-lower(self, belowThis=None):
  3679.  
  3680. +++ Listbox-mainloop(self, n=0):
  3681.  
  3682. +++ Listbox-nametowidget(self, name):
  3683.  
  3684. +++ Listbox-option_add(self, pattern, value, priority=None):
  3685.  
  3686. +++ Listbox-option_clear(self):
  3687.  
  3688. +++ Listbox-option_get(self, name, className):
  3689.  
  3690. +++ Listbox-option_readfile(self, fileName, priority=None):
  3691.  
  3692. +++ Listbox-pack_propagate(self, flag=['_noarg_']):
  3693.  
  3694. +++ Listbox-pack_slaves(self):
  3695.  
  3696. +++ Listbox-place_slaves(self):
  3697.  
  3698. +++ Listbox-propagate = pack_propagate(self, flag=['_noarg_']):
  3699.  
  3700. +++ Listbox-quit(self):
  3701.  
  3702. +++ Listbox-register = _register(self, func, subst=1):
  3703.  
  3704. +++ Listbox-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
  3705.  
  3706. +++ Listbox-selection_get(self, **kw):
  3707.  
  3708. +++ Listbox-selection_handle(self, command, **kw):
  3709.  
  3710. +++ Listbox-selection_own(self, **kw):
  3711.  
  3712. +++ Listbox-selection_own_get(self, **kw):
  3713.  
  3714. +++ Listbox-send(self, interp, cmd, *args):
  3715.  
  3716. +++ Listbox-setvar(self, name='1'):
  3717.  
  3718. +++ Listbox-slaves = pack_slaves(self):
  3719.  
  3720. +++ Listbox-tk_bisque(self):
  3721.  
  3722. +++ Listbox-tk_focusFollowsMouse(self):
  3723.  
  3724. +++ Listbox-tk_focusNext(self):
  3725.  
  3726. +++ Listbox-tk_focusPrev(self):
  3727.  
  3728. +++ Listbox-tk_menuBar(self, *args):
  3729.  
  3730. +++ Listbox-tk_setPalette(self, *args, **kw):
  3731.  
  3732. +++ Listbox-tk_strictMotif(self, boolean=None):
  3733.  
  3734. +++ Listbox-tkraise(self, aboveThis=None):
  3735.  
  3736. +++ Listbox-unbind(self, sequence, funcid=None):
  3737.  
  3738. +++ Listbox-unbind_all(self, sequence):
  3739.  
  3740. +++ Listbox-unbind_class(self, className, sequence):
  3741.  
  3742. +++ Listbox-update(self):
  3743.  
  3744. +++ Listbox-update_idletasks(self):
  3745.  
  3746. +++ Listbox-wait_variable(self, name='PY_VAR'):
  3747.  
  3748. +++ Listbox-wait_visibility(self, window=None):
  3749.  
  3750. +++ Listbox-wait_window(self, window=None):
  3751.  
  3752. +++ Listbox-waitvar = wait_variable(self, name='PY_VAR'):
  3753.  
  3754. +++ Listbox-winfo_atom(self, name, display of=0):
  3755.  
  3756. +++ Listbox-winfo_atomname(self, id, display of=0):
  3757.  
  3758. +++ Listbox-winfo_cells(self):
  3759.  
  3760. +++ Listbox-winfo_children(self):
  3761.  
  3762. +++ Listbox-winfo_class(self):
  3763.  
  3764. +++ Listbox-winfo_colormapfull(self):
  3765.  
  3766. +++ Listbox-winfo_containing(self, rootX, rootY, display of=0):
  3767.  
  3768. +++ Listbox-winfo_depth(self):
  3769.  
  3770. +++ Listbox-winfo_exists(self):
  3771.  
  3772. +++ Listbox-winfo_fpixels(self, number):
  3773.  
  3774. +++ Listbox-winfo_geometry(self):
  3775.  
  3776. +++ Listbox-winfo_height(self):
  3777.  
  3778. +++ Listbox-winfo_id(self):
  3779.  
  3780. +++ Listbox-winfo_interps(self, display of=0):
  3781.  
  3782. +++ Listbox-winfo_ismapped(self):
  3783.  
  3784. +++ Listbox-winfo_manager(self):
  3785.  
  3786. +++ Listbox-winfo_name(self):
  3787.  
  3788. +++ Listbox-winfo_parent(self):
  3789.  
  3790. +++ Listbox-winfo_pathname(self, id, display of=0):
  3791.  
  3792. +++ Listbox-winfo_pixels(self, number):
  3793.  
  3794. +++ Listbox-winfo_pointerx(self):
  3795.  
  3796. +++ Listbox-winfo_pointerxy(self):
  3797.  
  3798. +++ Listbox-winfo_pointery(self):
  3799.  
  3800. +++ Listbox-winfo_reqheight(self):
  3801.  
  3802. +++ Listbox-winfo_reqwidth(self):
  3803.  
  3804. +++ Listbox-winfo_rgb(self, color):
  3805.  
  3806. +++ Listbox-winfo_rootx(self):
  3807.  
  3808. +++ Listbox-winfo_rooty(self):
  3809.  
  3810. +++ Listbox-winfo_screen(self):
  3811.  
  3812. +++ Listbox-winfo_screencells(self):
  3813.  
  3814. +++ Listbox-winfo_screendepth(self):
  3815.  
  3816. +++ Listbox-winfo_screenheight(self):
  3817.  
  3818. +++ Listbox-winfo_screenmmheight(self):
  3819.  
  3820. +++ Listbox-winfo_screenmmwidth(self):
  3821.  
  3822. +++ Listbox-winfo_screenvisual(self):
  3823.  
  3824. +++ Listbox-winfo_screenwidth(self):
  3825.  
  3826. +++ Listbox-winfo_server(self):
  3827.  
  3828. +++ Listbox-winfo_toplevel(self):
  3829.  
  3830. +++ Listbox-winfo_viewable(self):
  3831.  
  3832. +++ Listbox-winfo_visual(self):
  3833.  
  3834. +++ Listbox-winfo_visualid(self):
  3835.  
  3836. +++ Listbox-winfo_visualsavailable(self, includeids=0):
  3837.  
  3838. +++ Listbox-winfo_vrootheight(self):
  3839.  
  3840. +++ Listbox-winfo_vrootwidth(self):
  3841.  
  3842. +++ Listbox-winfo_vrootx(self):
  3843.  
  3844. +++ Listbox-winfo_vrooty(self):
  3845.  
  3846. +++ Listbox-winfo_width(self):
  3847.  
  3848. +++ Listbox-winfo_x(self):
  3849.  
  3850. +++ Listbox-winfo_y(self):
  3851.  
  3852. +++ Listbox-forget = pack_forget(self):
  3853.  
  3854. +++ Listbox-info = pack_info(self):
  3855.  
  3856. +++ Listbox-pack = pack_configure(self, cnf={}, **kw):
  3857.  
  3858. +++ Listbox-pack_configure(self, cnf={}, **kw):
  3859.  
  3860. +++ Listbox-pack_forget(self):
  3861.  
  3862. +++ Listbox-pack_info(self):Listbox-place = place_configure(self, cnf={}, **kw):
  3863.  
  3864. +++ Listbox-place_configure(self, cnf={}, **kw):
  3865.  
  3866. +++ Listbox-place_forget(self):
  3867.  
  3868. +++ Listbox-place_info(self):Listbox-grid = grid_configure(self, cnf={}, **kw):
  3869.  
  3870. +++ Listbox-grid_configure(self, cnf={}, **kw):
  3871.  
  3872. +++ Listbox-grid_forget(self):
  3873.  
  3874. +++ Listbox-grid_info(self):
  3875.  
  3876. +++ Listbox-grid_remove(self):
  3877.  
  3878. +++ Listbox-location = grid_location(self, x, y):Listbox-xview(self, *args):
  3879.  
  3880. +++ Listbox-xview_moveto(self, fraction):
  3881.  
  3882. +++ Listbox-xview_scroll(self, number, what):Listbox-yview(self, *args):
  3883.  
  3884. +++ Listbox-yview_moveto(self, fraction):
  3885.  
  3886. +++ Listbox-yview_scroll(self, number, what):
  3887.     Menu widget which allows to display menu bars, pull-down menus and pop-up menus.
  3888.    
  3889. *** Menu
  3890.  
  3891. +++ Menu-__init__(self, master={}, **kw):
  3892.     Construct menu widget with the parent MASTER.
  3893.     Valid resource names: activebackground, activeborderwidth,
  3894.     activeforeground, background, bd, bg, borderwidth, cursor,
  3895.     disabledforeground, fg, font, foreground, postcommand, relief,
  3896.     selectcolor, takefocus, tearoff, tearoffcommand, title, type.
  3897.  
  3898. +++ Menu-activate(self, index):
  3899.     Activate entry at INDEX.
  3900.  
  3901. +++ Menu-add(self, itemType, cnf={}, **kw):
  3902.  
  3903. +++ Menu-add_cascade(self, cnf={}, **kw):
  3904.     Add hierarchical menu item.
  3905.  
  3906. +++ Menu-add_checkbutton(self, cnf={}, **kw):
  3907.     Add checkbutton menu item.
  3908.  
  3909. +++ Menu-add_command(self, cnf={}, **kw):
  3910.     Add command menu item.
  3911.  
  3912. +++ Menu-add_radiobutton(self, cnf={}, **kw):
  3913.     Addd radio menu item.
  3914.  
  3915. +++ Menu-add_separator(self, cnf={}, **kw):
  3916.     Add separator.
  3917.  
  3918. +++ Menu-delete(self, index1, index2=None):
  3919.     Delete menu items between INDEX1 and INDEX2 (included).
  3920.  
  3921. +++ Menu-entrycget(self, index, option):
  3922.     Return the resource value of an menu item for OPTION at INDEX.
  3923.  
  3924. +++ Menu-entryconfig = entryconfigure(self, index, cnf=None, **kw)
  3925.  
  3926. +++ Menu-entryconfigure(self, index, cnf=None, **kw):
  3927.     Configure a menu item at INDEX.
  3928.  
  3929. +++ Menu-index(self, index):
  3930.     Return the index of a menu item identified by INDEX.
  3931.  
  3932. +++ Menu-insert(self, index, itemType, cnf={}, **kw):
  3933.  
  3934. +++ Menu-insert_cascade(self, index, cnf={}, **kw):
  3935.     Add hierarchical menu item at INDEX.
  3936.  
  3937. +++ Menu-insert_checkbutton(self, index, cnf={}, **kw):
  3938.     Add checkbutton menu item at INDEX.
  3939.  
  3940. +++ Menu-insert_command(self, index, cnf={}, **kw):
  3941.     Add command menu item at INDEX.
  3942.  
  3943. +++ Menu-insert_radiobutton(self, index, cnf={}, **kw):
  3944.     Addd radio menu item at INDEX.
  3945.  
  3946. +++ Menu-insert_separator(self, index, cnf={}, **kw):
  3947.     Add separator at INDEX.
  3948.  
  3949. +++ Menu-invoke(self, index):
  3950.     Invoke a menu item identified by INDEX and execute
  3951.     the associated command.
  3952.  
  3953. +++ Menu-post(self, x, y):
  3954.     Display a menu at position X,Y.
  3955.  
  3956. +++ Menu-tk_bindForTraversal(self)
  3957.  
  3958. +++ Menu-tk_firstMenu(self)
  3959.  
  3960. +++ Menu-tk_getMenuButtons(self)
  3961.  
  3962. +++ Menu-tk_invokeMenu(self)
  3963.  
  3964. +++ Menu-tk_mbButtonDown(self)
  3965.  
  3966. +++ Menu-tk_mbPost(self)
  3967.  
  3968. +++ Menu-tk_mbUnpost(self)
  3969.  
  3970. +++ Menu-tk_nextMenu(self, count)
  3971.  
  3972. +++ Menu-tk_nextMenuEntry(self, count)
  3973.  
  3974. +++ Menu-tk_popup(self, x, y, entry=''):
  3975.     Post the menu at position X,Y with entry ENTRY.
  3976.  
  3977. +++ Menu-tk_traverseToMenu(self, char)
  3978.  
  3979. +++ Menu-tk_traverseWithinMenu(self, char)
  3980.  
  3981. +++ Menu-type(self, index):
  3982.     Return the type of the menu item at INDEX.
  3983.  
  3984. +++ Menu-unpost(self):
  3985.     Unmap a menu.
  3986.  
  3987. +++ Menu-yposition(self, index):
  3988.     Return the y-position of the topmost pixel of the menu item at INDEX.Menu-destroy(self):Menu-__contains__(self, key)
  3989.  
  3990. +++ Menu-__getitem__ = cget(self, key):
  3991.  
  3992. +++ Menu-__setitem__(self, key, value)
  3993.  
  3994. +++ Menu-__str__(self):
  3995.  
  3996. +++ Menu-after(self, ms, func=None, *args):
  3997.  
  3998. +++ Menu-after_cancel(self, id):
  3999.  
  4000. +++ Menu-after_idle(self, func, *args):
  4001.  
  4002. +++ Menu-bbox = grid_bbox(self, column=None):
  4003.  
  4004. +++ Menu-bell(self, display of=0):
  4005.  
  4006. +++ Menu-bind(self, sequence=None):Menu-bind_all(self, sequence=None):
  4007.  
  4008. +++ Menu-bind_class(self, className, sequence=None):
  4009.  
  4010. +++ Menu-bindtags(self, tagList=None):
  4011.  
  4012. +++ Menu-cget(self, key):
  4013.  
  4014. +++ Menu-clipboard_append(self, string, **kw):
  4015.  
  4016. +++ Menu-clipboard_clear(self, **kw):
  4017.  
  4018. +++ Menu-clipboard_get(self, **kw):Menu-colormodel(self, value=None):
  4019.  
  4020. +++ Menu-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
  4021.  
  4022. +++ Menu-config = configure(self, cnf=None, **kw):
  4023.  
  4024. +++ Menu-configure(self, cnf=None, **kw):
  4025.  
  4026. +++ Menu-deletecommand(self, name):
  4027.  
  4028. +++ Menu-event_add(self, virtual, *sequences):
  4029.  
  4030. +++ Menu-event_delete(self, virtual, *sequences):
  4031.  
  4032. +++ Menu-event_generate(self, sequence, **kw):
  4033.  
  4034. +++ Menu-event_info(self, virtual=None):
  4035.  
  4036. +++ Menu-focus = focus_set(self):
  4037.  
  4038. +++ Menu-focus_display of(self):
  4039.  
  4040. +++ Menu-focus_force(self):
  4041.  
  4042. +++ Menu-focus_get(self):
  4043.  
  4044. +++ Menu-focus_lastfor(self):
  4045.  
  4046. +++ Menu-focus_set(self):
  4047.  
  4048. +++ Menu-getboolean(self, s):
  4049.  
  4050. +++ Menu-getvar(self, name='PY_VAR'):
  4051.  
  4052. +++ Menu-grab_current(self):
  4053.  
  4054. +++ Menu-grab_release(self):
  4055.  
  4056. +++ Menu-grab_set(self):
  4057.  
  4058. +++ Menu-grab_set_global(self):
  4059.  
  4060. +++ Menu-grab_status(self):
  4061.  
  4062. +++ Menu-grid_bbox(self, column=None):
  4063.  
  4064. +++ Menu-grid_columnconfigure(self, index, cnf={}, **kw):
  4065.  
  4066. +++ Menu-grid_location(self, x, y):
  4067.  
  4068. +++ Menu-grid_propagate(self, flag=['_noarg_']):
  4069.  
  4070. +++ Menu-grid_rowconfigure(self, index, cnf={}, **kw):
  4071.  
  4072. +++ Menu-grid_size(self):
  4073.  
  4074. +++ Menu-grid_slaves(self, row=None):
  4075.  
  4076. +++ Menu-image_names(self):
  4077.  
  4078. +++ Menu-image_types(self):
  4079.  
  4080. +++ Menu-keys(self):
  4081.  
  4082. +++ Menu-lift = tkraise(self, aboveThis=None):
  4083.  
  4084. +++ Menu-lower(self, belowThis=None):
  4085.  
  4086. +++ Menu-mainloop(self, n=0):
  4087.  
  4088. +++ Menu-nametowidget(self, name):
  4089.  
  4090. +++ Menu-option_add(self, pattern, value, priority=None):
  4091.  
  4092. +++ Menu-option_clear(self):
  4093.  
  4094. +++ Menu-option_get(self, name, className):
  4095.  
  4096. +++ Menu-option_readfile(self, fileName, priority=None):
  4097.  
  4098. +++ Menu-pack_propagate(self, flag=['_noarg_']):
  4099.  
  4100. +++ Menu-pack_slaves(self):
  4101.  
  4102. +++ Menu-place_slaves(self):
  4103.  
  4104. +++ Menu-propagate = pack_propagate(self, flag=['_noarg_']):
  4105.  
  4106. +++ Menu-quit(self):
  4107.  
  4108. +++ Menu-register = _register(self, func, subst=1):
  4109.  
  4110. +++ Menu-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
  4111.  
  4112. +++ Menu-selection_clear(self, **kw):
  4113.  
  4114. +++ Menu-selection_get(self, **kw):
  4115.  
  4116. +++ Menu-selection_handle(self, command, **kw):
  4117.  
  4118. +++ Menu-selection_own(self, **kw):
  4119.  
  4120. +++ Menu-selection_own_get(self, **kw):
  4121.  
  4122. +++ Menu-send(self, interp, cmd, *args):
  4123.  
  4124. +++ Menu-setvar(self, name='1'):
  4125.  
  4126. +++ Menu-size = grid_size(self):
  4127.  
  4128. +++ Menu-slaves = pack_slaves(self):
  4129.  
  4130. +++ Menu-tk_bisque(self):
  4131.  
  4132. +++ Menu-tk_focusFollowsMouse(self):
  4133.  
  4134. +++ Menu-tk_focusNext(self):
  4135.  
  4136. +++ Menu-tk_focusPrev(self):
  4137.  
  4138. +++ Menu-tk_menuBar(self, *args):
  4139.  
  4140. +++ Menu-tk_setPalette(self, *args, **kw):
  4141.  
  4142. +++ Menu-tk_strictMotif(self, boolean=None):
  4143.  
  4144. +++ Menu-tkraise(self, aboveThis=None):
  4145.  
  4146. +++ Menu-unbind(self, sequence, funcid=None):
  4147.  
  4148. +++ Menu-unbind_all(self, sequence):
  4149.  
  4150. +++ Menu-unbind_class(self, className, sequence):
  4151.  
  4152. +++ Menu-update(self):
  4153.  
  4154. +++ Menu-update_idletasks(self):
  4155.  
  4156. +++ Menu-wait_variable(self, name='PY_VAR'):
  4157.  
  4158. +++ Menu-wait_visibility(self, window=None):
  4159.  
  4160. +++ Menu-wait_window(self, window=None):
  4161.  
  4162. +++ Menu-waitvar = wait_variable(self, name='PY_VAR'):
  4163.  
  4164. +++ Menu-winfo_atom(self, name, display of=0):
  4165.  
  4166. +++ Menu-winfo_atomname(self, id, display of=0):
  4167.  
  4168. +++ Menu-winfo_cells(self):
  4169.  
  4170. +++ Menu-winfo_children(self):
  4171.  
  4172. +++ Menu-winfo_class(self):
  4173.  
  4174. +++ Menu-winfo_colormapfull(self):
  4175.  
  4176. +++ Menu-winfo_containing(self, rootX, rootY, display of=0):
  4177.  
  4178. +++ Menu-winfo_depth(self):
  4179.  
  4180. +++ Menu-winfo_exists(self):
  4181.  
  4182. +++ Menu-winfo_fpixels(self, number):
  4183.  
  4184. +++ Menu-winfo_geometry(self):
  4185.  
  4186. +++ Menu-winfo_height(self):
  4187.  
  4188. +++ Menu-winfo_id(self):
  4189.  
  4190. +++ Menu-winfo_interps(self, display of=0):
  4191.  
  4192. +++ Menu-winfo_ismapped(self):
  4193.  
  4194. +++ Menu-winfo_manager(self):
  4195.  
  4196. +++ Menu-winfo_name(self):
  4197.  
  4198. +++ Menu-winfo_parent(self):
  4199.  
  4200. +++ Menu-winfo_pathname(self, id, display of=0):
  4201.  
  4202. +++ Menu-winfo_pixels(self, number):
  4203.  
  4204. +++ Menu-winfo_pointerx(self):
  4205.  
  4206. +++ Menu-winfo_pointerxy(self):
  4207.  
  4208. +++ Menu-winfo_pointery(self):
  4209.  
  4210. +++ Menu-winfo_reqheight(self):
  4211.  
  4212. +++ Menu-winfo_reqwidth(self):
  4213.  
  4214. +++ Menu-winfo_rgb(self, color):
  4215.  
  4216. +++ Menu-winfo_rootx(self):
  4217.  
  4218. +++ Menu-winfo_rooty(self):
  4219.  
  4220. +++ Menu-winfo_screen(self):
  4221.  
  4222. +++ Menu-winfo_screencells(self):
  4223.  
  4224. +++ Menu-winfo_screendepth(self):
  4225.  
  4226. +++ Menu-winfo_screenheight(self):
  4227.  
  4228. +++ Menu-winfo_screenmmheight(self):
  4229.  
  4230. +++ Menu-winfo_screenmmwidth(self):
  4231.  
  4232. +++ Menu-winfo_screenvisual(self):
  4233.  
  4234. +++ Menu-winfo_screenwidth(self):
  4235.  
  4236. +++ Menu-winfo_server(self):
  4237.  
  4238. +++ Menu-winfo_toplevel(self):
  4239.  
  4240. +++ Menu-winfo_viewable(self):
  4241.  
  4242. +++ Menu-winfo_visual(self):
  4243.  
  4244. +++ Menu-winfo_visualid(self):
  4245.  
  4246. +++ Menu-winfo_visualsavailable(self, includeids=0):
  4247.  
  4248. +++ Menu-winfo_vrootheight(self):
  4249.  
  4250. +++ Menu-winfo_vrootwidth(self):
  4251.  
  4252. +++ Menu-winfo_vrootx(self):
  4253.  
  4254. +++ Menu-winfo_vrooty(self):
  4255.  
  4256. +++ Menu-winfo_width(self):
  4257.  
  4258. +++ Menu-winfo_x(self):
  4259.  
  4260. +++ Menu-winfo_y(self):
  4261.  
  4262. +++ Menu-forget = pack_forget(self):
  4263.  
  4264. +++ Menu-info = pack_info(self):
  4265.  
  4266. +++ Menu-pack = pack_configure(self, cnf={}, **kw):
  4267.  
  4268. +++ Menu-pack_configure(self, cnf={}, **kw):
  4269.  
  4270. +++ Menu-pack_forget(self):
  4271.  
  4272. +++ Menu-pack_info(self):Menu-place = place_configure(self, cnf={}, **kw):
  4273.  
  4274. +++ Menu-place_configure(self, cnf={}, **kw):
  4275.  
  4276. +++ Menu-place_forget(self):
  4277.  
  4278. +++ Menu-place_info(self):Menu-grid = grid_configure(self, cnf={}, **kw):
  4279.  
  4280. +++ Menu-grid_configure(self, cnf={}, **kw):
  4281.  
  4282. +++ Menu-grid_forget(self):
  4283.  
  4284. +++ Menu-grid_info(self):
  4285.  
  4286. +++ Menu-grid_remove(self):
  4287.  
  4288. +++ Menu-location = grid_location(self, x, y):
  4289.  
  4290.     Menubutton widget, obsolete since Tk8.0.
  4291. *** Menubutton
  4292.  
  4293. +++ Menubutton-__init__(self, master={}, **kw)Menubutton-destroy(self):Menubutton-__contains__(self, key)
  4294.  
  4295. +++ Menubutton-__getitem__ = cget(self, key):
  4296.  
  4297. +++ Menubutton-__setitem__(self, key, value)
  4298.  
  4299. +++ Menubutton-__str__(self):
  4300.  
  4301. +++ Menubutton-after(self, ms, func=None, *args):
  4302.  
  4303. +++ Menubutton-after_cancel(self, id):
  4304.  
  4305. +++ Menubutton-after_idle(self, func, *args):
  4306.  
  4307. +++ Menubutton-bbox = grid_bbox(self, column=None):
  4308.  
  4309. +++ Menubutton-bell(self, display of=0):
  4310.  
  4311. +++ Menubutton-bind(self, sequence=None):Menubutton-bind_all(self, sequence=None):
  4312.  
  4313. +++ Menubutton-bind_class(self, className, sequence=None):
  4314.  
  4315. +++ Menubutton-bindtags(self, tagList=None):
  4316.  
  4317. +++ Menubutton-cget(self, key):
  4318.  
  4319. +++ Menubutton-clipboard_append(self, string, **kw):
  4320.  
  4321. +++ Menubutton-clipboard_clear(self, **kw):
  4322.  
  4323. +++ Menubutton-clipboard_get(self, **kw):Menubutton-colormodel(self, value=None):
  4324.  
  4325. +++ Menubutton-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
  4326.  
  4327. +++ Menubutton-config = configure(self, cnf=None, **kw):
  4328.  
  4329. +++ Menubutton-configure(self, cnf=None, **kw):
  4330.  
  4331. +++ Menubutton-deletecommand(self, name):
  4332.  
  4333. +++ Menubutton-event_add(self, virtual, *sequences):
  4334.  
  4335. +++ Menubutton-event_delete(self, virtual, *sequences):
  4336.  
  4337. +++ Menubutton-event_generate(self, sequence, **kw):
  4338.  
  4339. +++ Menubutton-event_info(self, virtual=None):
  4340.  
  4341. +++ Menubutton-focus = focus_set(self):
  4342.  
  4343. +++ Menubutton-focus_display of(self):
  4344.  
  4345. +++ Menubutton-focus_force(self):
  4346.  
  4347. +++ Menubutton-focus_get(self):
  4348.  
  4349. +++ Menubutton-focus_lastfor(self):
  4350.  
  4351. +++ Menubutton-focus_set(self):
  4352.  
  4353. +++ Menubutton-getboolean(self, s):
  4354.  
  4355. +++ Menubutton-getvar(self, name='PY_VAR'):
  4356.  
  4357. +++ Menubutton-grab_current(self):
  4358.  
  4359. +++ Menubutton-grab_release(self):
  4360.  
  4361. +++ Menubutton-grab_set(self):
  4362.  
  4363. +++ Menubutton-grab_set_global(self):
  4364.  
  4365. +++ Menubutton-grab_status(self):
  4366.  
  4367. +++ Menubutton-grid_bbox(self, column=None):
  4368.  
  4369. +++ Menubutton-grid_columnconfigure(self, index, cnf={}, **kw):
  4370.  
  4371. +++ Menubutton-grid_location(self, x, y):
  4372.  
  4373. +++ Menubutton-grid_propagate(self, flag=['_noarg_']):
  4374.  
  4375. +++ Menubutton-grid_rowconfigure(self, index, cnf={}, **kw):
  4376.  
  4377. +++ Menubutton-grid_size(self):
  4378.  
  4379. +++ Menubutton-grid_slaves(self, row=None):
  4380.  
  4381. +++ Menubutton-image_names(self):
  4382.  
  4383. +++ Menubutton-image_types(self):
  4384.  
  4385. +++ Menubutton-keys(self):
  4386.  
  4387. +++ Menubutton-lift = tkraise(self, aboveThis=None):
  4388.  
  4389. +++ Menubutton-lower(self, belowThis=None):
  4390.  
  4391. +++ Menubutton-mainloop(self, n=0):
  4392.  
  4393. +++ Menubutton-nametowidget(self, name):
  4394.  
  4395. +++ Menubutton-option_add(self, pattern, value, priority=None):
  4396.  
  4397. +++ Menubutton-option_clear(self):
  4398.  
  4399. +++ Menubutton-option_get(self, name, className):
  4400.  
  4401. +++ Menubutton-option_readfile(self, fileName, priority=None):
  4402.  
  4403. +++ Menubutton-pack_propagate(self, flag=['_noarg_']):
  4404.  
  4405. +++ Menubutton-pack_slaves(self):
  4406.  
  4407. +++ Menubutton-place_slaves(self):
  4408.  
  4409. +++ Menubutton-propagate = pack_propagate(self, flag=['_noarg_']):
  4410.  
  4411. +++ Menubutton-quit(self):
  4412.  
  4413. +++ Menubutton-register = _register(self, func, subst=1):
  4414.  
  4415. +++ Menubutton-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
  4416.  
  4417. +++ Menubutton-selection_clear(self, **kw):
  4418.  
  4419. +++ Menubutton-selection_get(self, **kw):
  4420.  
  4421. +++ Menubutton-selection_handle(self, command, **kw):
  4422.  
  4423. +++ Menubutton-selection_own(self, **kw):
  4424.  
  4425. +++ Menubutton-selection_own_get(self, **kw):
  4426.  
  4427. +++ Menubutton-send(self, interp, cmd, *args):
  4428.  
  4429. +++ Menubutton-setvar(self, name='1'):
  4430.  
  4431. +++ Menubutton-size = grid_size(self):
  4432.  
  4433. +++ Menubutton-slaves = pack_slaves(self):
  4434.  
  4435. +++ Menubutton-tk_bisque(self):
  4436.  
  4437. +++ Menubutton-tk_focusFollowsMouse(self):
  4438.  
  4439. +++ Menubutton-tk_focusNext(self):
  4440.  
  4441. +++ Menubutton-tk_focusPrev(self):
  4442.  
  4443. +++ Menubutton-tk_menuBar(self, *args):
  4444.  
  4445. +++ Menubutton-tk_setPalette(self, *args, **kw):
  4446.  
  4447. +++ Menubutton-tk_strictMotif(self, boolean=None):
  4448.  
  4449. +++ Menubutton-tkraise(self, aboveThis=None):
  4450.  
  4451. +++ Menubutton-unbind(self, sequence, funcid=None):
  4452.  
  4453. +++ Menubutton-unbind_all(self, sequence):
  4454.  
  4455. +++ Menubutton-unbind_class(self, className, sequence):
  4456.  
  4457. +++ Menubutton-update(self):
  4458.  
  4459. +++ Menubutton-update_idletasks(self):
  4460.  
  4461. +++ Menubutton-wait_variable(self, name='PY_VAR'):
  4462.  
  4463. +++ Menubutton-wait_visibility(self, window=None):
  4464.  
  4465. +++ Menubutton-wait_window(self, window=None):
  4466.  
  4467. +++ Menubutton-waitvar = wait_variable(self, name='PY_VAR'):
  4468.  
  4469. +++ Menubutton-winfo_atom(self, name, display of=0):
  4470.  
  4471. +++ Menubutton-winfo_atomname(self, id, display of=0):
  4472.  
  4473. +++ Menubutton-winfo_cells(self):
  4474.  
  4475. +++ Menubutton-winfo_children(self):
  4476.  
  4477. +++ Menubutton-winfo_class(self):
  4478.  
  4479. +++ Menubutton-winfo_colormapfull(self):
  4480.  
  4481. +++ Menubutton-winfo_containing(self, rootX, rootY, display of=0):
  4482.  
  4483. +++ Menubutton-winfo_depth(self):
  4484.  
  4485. +++ Menubutton-winfo_exists(self):
  4486.  
  4487. +++ Menubutton-winfo_fpixels(self, number):
  4488.  
  4489. +++ Menubutton-winfo_geometry(self):
  4490.  
  4491. +++ Menubutton-winfo_height(self):
  4492.  
  4493. +++ Menubutton-winfo_id(self):
  4494.  
  4495. +++ Menubutton-winfo_interps(self, display of=0):
  4496.  
  4497. +++ Menubutton-winfo_ismapped(self):
  4498.  
  4499. +++ Menubutton-winfo_manager(self):
  4500.  
  4501. +++ Menubutton-winfo_name(self):
  4502.  
  4503. +++ Menubutton-winfo_parent(self):
  4504.  
  4505. +++ Menubutton-winfo_pathname(self, id, display of=0):
  4506.  
  4507. +++ Menubutton-winfo_pixels(self, number):
  4508.  
  4509. +++ Menubutton-winfo_pointerx(self):
  4510.  
  4511. +++ Menubutton-winfo_pointerxy(self):
  4512.  
  4513. +++ Menubutton-winfo_pointery(self):
  4514.  
  4515. +++ Menubutton-winfo_reqheight(self):
  4516.  
  4517. +++ Menubutton-winfo_reqwidth(self):
  4518.  
  4519. +++ Menubutton-winfo_rgb(self, color):
  4520.  
  4521. +++ Menubutton-winfo_rootx(self):
  4522.  
  4523. +++ Menubutton-winfo_rooty(self):
  4524.  
  4525. +++ Menubutton-winfo_screen(self):
  4526.  
  4527. +++ Menubutton-winfo_screencells(self):
  4528.  
  4529. +++ Menubutton-winfo_screendepth(self):
  4530.  
  4531. +++ Menubutton-winfo_screenheight(self):
  4532.  
  4533. +++ Menubutton-winfo_screenmmheight(self):
  4534.  
  4535. +++ Menubutton-winfo_screenmmwidth(self):
  4536.  
  4537. +++ Menubutton-winfo_screenvisual(self):
  4538.  
  4539. +++ Menubutton-winfo_screenwidth(self):
  4540.  
  4541. +++ Menubutton-winfo_server(self):
  4542.  
  4543. +++ Menubutton-winfo_toplevel(self):
  4544.  
  4545. +++ Menubutton-winfo_viewable(self):
  4546.  
  4547. +++ Menubutton-winfo_visual(self):
  4548.  
  4549. +++ Menubutton-winfo_visualid(self):
  4550.  
  4551. +++ Menubutton-winfo_visualsavailable(self, includeids=0):
  4552.  
  4553. +++ Menubutton-winfo_vrootheight(self):
  4554.  
  4555. +++ Menubutton-winfo_vrootwidth(self):
  4556.  
  4557. +++ Menubutton-winfo_vrootx(self):
  4558.  
  4559. +++ Menubutton-winfo_vrooty(self):
  4560.  
  4561. +++ Menubutton-winfo_width(self):
  4562.  
  4563. +++ Menubutton-winfo_x(self):
  4564.  
  4565. +++ Menubutton-winfo_y(self):
  4566.  
  4567. +++ Menubutton-forget = pack_forget(self):
  4568.  
  4569. +++ Menubutton-info = pack_info(self):
  4570.  
  4571. +++ Menubutton-pack = pack_configure(self, cnf={}, **kw):
  4572.  
  4573. +++ Menubutton-pack_configure(self, cnf={}, **kw):
  4574.  
  4575. +++ Menubutton-pack_forget(self):
  4576.  
  4577. +++ Menubutton-pack_info(self):Menubutton-place = place_configure(self, cnf={}, **kw):
  4578.  
  4579. +++ Menubutton-place_configure(self, cnf={}, **kw):
  4580.  
  4581. +++ Menubutton-place_forget(self):
  4582.  
  4583. +++ Menubutton-place_info(self):Menubutton-grid = grid_configure(self, cnf={}, **kw):
  4584.  
  4585. +++ Menubutton-grid_configure(self, cnf={}, **kw):
  4586.  
  4587. +++ Menubutton-grid_forget(self):
  4588.  
  4589. +++ Menubutton-grid_info(self):
  4590.  
  4591. +++ Menubutton-grid_remove(self):
  4592.  
  4593. +++ Menubutton-location = grid_location(self, x, y):
  4594.     Label does it too.
  4595.    
  4596. *** Message
  4597.  
  4598. +++ Message-__init__(self, master={}, **kw)Message-destroy(self):Message-__contains__(self, key)
  4599.  
  4600. +++ Message-__getitem__ = cget(self, key):
  4601.  
  4602. +++ Message-__setitem__(self, key, value)
  4603.  
  4604. +++ Message-__str__(self):
  4605.  
  4606. +++ Message-after(self, ms, func=None, *args):
  4607.  
  4608. +++ Message-after_cancel(self, id):
  4609.  
  4610. +++ Message-after_idle(self, func, *args):
  4611.  
  4612. +++ Message-bbox = grid_bbox(self, column=None):
  4613.  
  4614. +++ Message-bell(self, display of=0):
  4615.  
  4616. +++ Message-bind(self, sequence=None):Message-bind_all(self, sequence=None):
  4617.  
  4618. +++ Message-bind_class(self, className, sequence=None):
  4619.  
  4620. +++ Message-bindtags(self, tagList=None):
  4621.  
  4622. +++ Message-cget(self, key):
  4623.  
  4624. +++ Message-clipboard_append(self, string, **kw):
  4625.  
  4626. +++ Message-clipboard_clear(self, **kw):
  4627.  
  4628. +++ Message-clipboard_get(self, **kw):Message-colormodel(self, value=None):
  4629.  
  4630. +++ Message-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
  4631.  
  4632. +++ Message-config = configure(self, cnf=None, **kw):
  4633.  
  4634. +++ Message-configure(self, cnf=None, **kw):
  4635.  
  4636. +++ Message-deletecommand(self, name):
  4637.  
  4638. +++ Message-event_add(self, virtual, *sequences):
  4639.  
  4640. +++ Message-event_delete(self, virtual, *sequences):
  4641.  
  4642. +++ Message-event_generate(self, sequence, **kw):
  4643.  
  4644. +++ Message-event_info(self, virtual=None):
  4645.  
  4646. +++ Message-focus = focus_set(self):
  4647.  
  4648. +++ Message-focus_display of(self):
  4649.  
  4650. +++ Message-focus_force(self):
  4651.  
  4652. +++ Message-focus_get(self):
  4653.  
  4654. +++ Message-focus_lastfor(self):
  4655.  
  4656. +++ Message-focus_set(self):
  4657.  
  4658. +++ Message-getboolean(self, s):
  4659.  
  4660. +++ Message-getvar(self, name='PY_VAR'):
  4661.  
  4662. +++ Message-grab_current(self):
  4663.  
  4664. +++ Message-grab_release(self):
  4665.  
  4666. +++ Message-grab_set(self):
  4667.  
  4668. +++ Message-grab_set_global(self):
  4669.  
  4670. +++ Message-grab_status(self):
  4671.  
  4672. +++ Message-grid_bbox(self, column=None):
  4673.  
  4674. +++ Message-grid_columnconfigure(self, index, cnf={}, **kw):
  4675.  
  4676. +++ Message-grid_location(self, x, y):
  4677.  
  4678. +++ Message-grid_propagate(self, flag=['_noarg_']):
  4679.  
  4680. +++ Message-grid_rowconfigure(self, index, cnf={}, **kw):
  4681.  
  4682. +++ Message-grid_size(self):
  4683.  
  4684. +++ Message-grid_slaves(self, row=None):
  4685.  
  4686. +++ Message-image_names(self):
  4687.  
  4688. +++ Message-image_types(self):
  4689.  
  4690. +++ Message-keys(self):
  4691.  
  4692. +++ Message-lift = tkraise(self, aboveThis=None):
  4693.  
  4694. +++ Message-lower(self, belowThis=None):
  4695.  
  4696. +++ Message-mainloop(self, n=0):
  4697.  
  4698. +++ Message-nametowidget(self, name):
  4699.  
  4700. +++ Message-option_add(self, pattern, value, priority=None):
  4701.  
  4702. +++ Message-option_clear(self):
  4703.  
  4704. +++ Message-option_get(self, name, className):
  4705.  
  4706. +++ Message-option_readfile(self, fileName, priority=None):
  4707.  
  4708. +++ Message-pack_propagate(self, flag=['_noarg_']):
  4709.  
  4710. +++ Message-pack_slaves(self):
  4711.  
  4712. +++ Message-place_slaves(self):
  4713.  
  4714. +++ Message-propagate = pack_propagate(self, flag=['_noarg_']):
  4715.  
  4716. +++ Message-quit(self):
  4717.  
  4718. +++ Message-register = _register(self, func, subst=1):
  4719.  
  4720. +++ Message-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
  4721.  
  4722. +++ Message-selection_clear(self, **kw):
  4723.  
  4724. +++ Message-selection_get(self, **kw):
  4725.  
  4726. +++ Message-selection_handle(self, command, **kw):
  4727.  
  4728. +++ Message-selection_own(self, **kw):
  4729.  
  4730. +++ Message-selection_own_get(self, **kw):
  4731.  
  4732. +++ Message-send(self, interp, cmd, *args):
  4733.  
  4734. +++ Message-setvar(self, name='1'):
  4735.  
  4736. +++ Message-size = grid_size(self):
  4737.  
  4738. +++ Message-slaves = pack_slaves(self):
  4739.  
  4740. +++ Message-tk_bisque(self):
  4741.  
  4742. +++ Message-tk_focusFollowsMouse(self):
  4743.  
  4744. +++ Message-tk_focusNext(self):
  4745.  
  4746. +++ Message-tk_focusPrev(self):
  4747.  
  4748. +++ Message-tk_menuBar(self, *args):
  4749.  
  4750. +++ Message-tk_setPalette(self, *args, **kw):
  4751.  
  4752. +++ Message-tk_strictMotif(self, boolean=None):
  4753.  
  4754. +++ Message-tkraise(self, aboveThis=None):
  4755.  
  4756. +++ Message-unbind(self, sequence, funcid=None):
  4757.  
  4758. +++ Message-unbind_all(self, sequence):
  4759.  
  4760. +++ Message-unbind_class(self, className, sequence):
  4761.  
  4762. +++ Message-update(self):
  4763.  
  4764. +++ Message-update_idletasks(self):
  4765.  
  4766. +++ Message-wait_variable(self, name='PY_VAR'):
  4767.  
  4768. +++ Message-wait_visibility(self, window=None):
  4769.  
  4770. +++ Message-wait_window(self, window=None):
  4771.  
  4772. +++ Message-waitvar = wait_variable(self, name='PY_VAR'):
  4773.  
  4774. +++ Message-winfo_atom(self, name, display of=0):
  4775.  
  4776. +++ Message-winfo_atomname(self, id, display of=0):
  4777.  
  4778. +++ Message-winfo_cells(self):
  4779.  
  4780. +++ Message-winfo_children(self):
  4781.  
  4782. +++ Message-winfo_class(self):
  4783.  
  4784. +++ Message-winfo_colormapfull(self):
  4785.  
  4786. +++ Message-winfo_containing(self, rootX, rootY, display of=0):
  4787.  
  4788. +++ Message-winfo_depth(self):
  4789.  
  4790. +++ Message-winfo_exists(self):
  4791.  
  4792. +++ Message-winfo_fpixels(self, number):
  4793.  
  4794. +++ Message-winfo_geometry(self):
  4795.  
  4796. +++ Message-winfo_height(self):
  4797.  
  4798. +++ Message-winfo_id(self):
  4799.  
  4800. +++ Message-winfo_interps(self, display of=0):
  4801.  
  4802. +++ Message-winfo_ismapped(self):
  4803.  
  4804. +++ Message-winfo_manager(self):
  4805.  
  4806. +++ Message-winfo_name(self):
  4807.  
  4808. +++ Message-winfo_parent(self):
  4809.  
  4810. +++ Message-winfo_pathname(self, id, display of=0):
  4811.  
  4812. +++ Message-winfo_pixels(self, number):
  4813.  
  4814. +++ Message-winfo_pointerx(self):
  4815.  
  4816. +++ Message-winfo_pointerxy(self):
  4817.  
  4818. +++ Message-winfo_pointery(self):
  4819.  
  4820. +++ Message-winfo_reqheight(self):
  4821.  
  4822. +++ Message-winfo_reqwidth(self):
  4823.  
  4824. +++ Message-winfo_rgb(self, color):
  4825.  
  4826. +++ Message-winfo_rootx(self):
  4827.  
  4828. +++ Message-winfo_rooty(self):
  4829.  
  4830. +++ Message-winfo_screen(self):
  4831.  
  4832. +++ Message-winfo_screencells(self):
  4833.  
  4834. +++ Message-winfo_screendepth(self):
  4835.  
  4836. +++ Message-winfo_screenheight(self):
  4837.  
  4838. +++ Message-winfo_screenmmheight(self):
  4839.  
  4840. +++ Message-winfo_screenmmwidth(self):
  4841.  
  4842. +++ Message-winfo_screenvisual(self):
  4843.  
  4844. +++ Message-winfo_screenwidth(self):
  4845.  
  4846. +++ Message-winfo_server(self):
  4847.  
  4848. +++ Message-winfo_toplevel(self):
  4849.  
  4850. +++ Message-winfo_viewable(self):
  4851.  
  4852. +++ Message-winfo_visual(self):
  4853.  
  4854. +++ Message-winfo_visualid(self):
  4855.  
  4856. +++ Message-winfo_visualsavailable(self, includeids=0):
  4857.  
  4858. +++ Message-winfo_vrootheight(self):
  4859.  
  4860. +++ Message-winfo_vrootwidth(self):
  4861.  
  4862. +++ Message-winfo_vrootx(self):
  4863.  
  4864. +++ Message-winfo_vrooty(self):
  4865.  
  4866. +++ Message-winfo_width(self):
  4867.  
  4868. +++ Message-winfo_x(self):
  4869.  
  4870. +++ Message-winfo_y(self):
  4871.  
  4872. +++ Message-forget = pack_forget(self):
  4873.  
  4874. +++ Message-info = pack_info(self):
  4875.  
  4876. +++ Message-pack = pack_configure(self, cnf={}, **kw):
  4877.  
  4878. +++ Message-pack_configure(self, cnf={}, **kw):
  4879.  
  4880. +++ Message-pack_forget(self):
  4881.  
  4882. +++ Message-pack_info(self):Message-place = place_configure(self, cnf={}, **kw):
  4883.  
  4884. +++ Message-place_configure(self, cnf={}, **kw):
  4885.  
  4886. +++ Message-place_forget(self):
  4887.  
  4888. +++ Message-place_info(self):Message-grid = grid_configure(self, cnf={}, **kw):
  4889.  
  4890. +++ Message-grid_configure(self, cnf={}, **kw):
  4891.  
  4892. +++ Message-grid_forget(self):
  4893.  
  4894. +++ Message-grid_info(self):
  4895.  
  4896. +++ Message-grid_remove(self):
  4897.  
  4898. +++ Message-location = grid_location(self, x, y):
  4899.  
  4900. *** class Misc
  4901.     Base class which defines methods common for interior widgets.
  4902.  
  4903. +++ Misc-__contains__(self, key)
  4904.  
  4905. +++ Misc-__getitem__ = cget(self, key)
  4906.  
  4907. +++ Misc-__setitem__(self, key, value)
  4908.  
  4909. +++ Misc-__str__(self):
  4910.  
  4911. +++ Misc-after(self, ms, func=None, *args):
  4912.  
  4913. +++ Misc-after_cancel(self, id):
  4914.  
  4915. +++ Misc-after_idle(self, func, *args):
  4916.  
  4917. +++ Misc-bbox = grid_bbox(self, column=None)
  4918.  
  4919. +++ Misc-bell(self, display of=0):
  4920.  
  4921. +++ Misc-bind(self, sequence=None):Misc-bind_all(self, sequence=None):
  4922.  
  4923. +++ Misc-bind_class(self, className, sequence=None):
  4924.  
  4925. +++ Misc-bindtags(self, tagList=None):
  4926.  
  4927. +++ Misc-cget(self, key):
  4928.  
  4929. +++ Misc-clipboard_append(self, string, **kw):
  4930.  
  4931. +++ Misc-clipboard_clear(self, **kw):
  4932.  
  4933. +++ Misc-clipboard_get(self, **kw):Misc-colormodel(self, value=None):
  4934.  
  4935. +++ Misc-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw)
  4936.  
  4937. +++ Misc-config = configure(self, cnf=None, **kw)
  4938.  
  4939. +++ Misc-configure(self, cnf=None, **kw):
  4940.  
  4941. +++ Misc-deletecommand(self, name):
  4942.  
  4943. +++ Misc-destroy(self):
  4944.     Delete all Tcl commands created for
  4945.     this widget in the Tcl interpreter.
  4946.  
  4947. +++ Misc-event_add(self, virtual, *sequences):
  4948.  
  4949. +++ Misc-event_delete(self, virtual, *sequences):
  4950.  
  4951. +++ Misc-event_generate(self, sequence, **kw):
  4952.  
  4953. +++ Misc-event_info(self, virtual=None):
  4954.  
  4955. +++ Misc-focus = focus_set(self)
  4956.  
  4957. +++ Misc-focus_display of(self):
  4958.  
  4959. +++ Misc-focus_force(self):
  4960.  
  4961. +++ Misc-focus_get(self):
  4962.  
  4963. +++ Misc-focus_lastfor(self):
  4964.  
  4965. +++ Misc-focus_set(self):
  4966.  
  4967. +++ Misc-getboolean(self, s):
  4968.  
  4969. +++ Misc-getvar(self, name='PY_VAR'):
  4970.  
  4971. +++ Misc-grab_current(self):
  4972.  
  4973. +++ Misc-grab_release(self):
  4974.  
  4975. +++ Misc-grab_set(self):
  4976.  
  4977. +++ Misc-grab_set_global(self):
  4978.  
  4979. +++ Misc-grab_status(self):
  4980.  
  4981. +++ Misc-grid_bbox(self, column=None):
  4982.  
  4983. +++ Misc-grid_columnconfigure(self, index, cnf={}, **kw):
  4984.  
  4985. +++ Misc-grid_location(self, x, y):
  4986.  
  4987. +++ Misc-grid_propagate(self, flag=['_noarg_']):
  4988.  
  4989. +++ Misc-grid_rowconfigure(self, index, cnf={}, **kw):
  4990.  
  4991. +++ Misc-grid_size(self):
  4992.  
  4993. +++ Misc-grid_slaves(self, row=None):
  4994.  
  4995. +++ Misc-image_names(self):
  4996.  
  4997. +++ Misc-image_types(self):
  4998.  
  4999. +++ Misc-keys(self):
  5000.  
  5001. +++ Misc-lift = tkraise(self, aboveThis=None)
  5002.  
  5003. +++ Misc-lower(self, belowThis=None):
  5004.  
  5005. +++ Misc-mainloop(self, n=0):
  5006.  
  5007. +++ Misc-nametowidget(self, name):
  5008.  
  5009. +++ Misc-option_add(self, pattern, value, priority=None):
  5010.  
  5011. +++ Misc-option_clear(self):
  5012.  
  5013. +++ Misc-option_get(self, name, className):
  5014.  
  5015. +++ Misc-option_readfile(self, fileName, priority=None):
  5016.  
  5017. +++ Misc-pack_propagate(self, flag=['_noarg_']):
  5018.  
  5019. +++ Misc-pack_slaves(self):
  5020.  
  5021. +++ Misc-place_slaves(self):
  5022.  
  5023. +++ Misc-propagate = pack_propagate(self, flag=['_noarg_'])
  5024.  
  5025. +++ Misc-quit(self):
  5026.  
  5027. +++ Misc-register = _register(self, func, subst=1)
  5028.  
  5029. +++ Misc-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw)
  5030.  
  5031. +++ Misc-selection_clear(self, **kw):
  5032.  
  5033. +++ Misc-selection_get(self, **kw):
  5034.  
  5035. +++ Misc-selection_handle(self, command, **kw):
  5036.  
  5037. +++ Misc-selection_own(self, **kw):
  5038.  
  5039. +++ Misc-selection_own_get(self, **kw):
  5040.  
  5041. +++ Misc-send(self, interp, cmd, *args):
  5042.  
  5043. +++ Misc-setvar(self, name='1'):
  5044.  
  5045. +++ Misc-size = grid_size(self)
  5046.  
  5047. +++ Misc-slaves = pack_slaves(self)
  5048.  
  5049. +++ Misc-tk_bisque(self):
  5050.  
  5051. +++ Misc-tk_focusFollowsMouse(self):
  5052.  
  5053. +++ Misc-tk_focusNext(self):
  5054.  
  5055. +++ Misc-tk_focusPrev(self):
  5056.  
  5057. +++ Misc-tk_menuBar(self, *args):
  5058.  
  5059. +++ Misc-tk_setPalette(self, *args, **kw):
  5060.  
  5061. +++ Misc-tk_strictMotif(self, boolean=None):
  5062.  
  5063. +++ Misc-tkraise(self, aboveThis=None):
  5064.  
  5065. +++ Misc-unbind(self, sequence, funcid=None):
  5066.  
  5067. +++ Misc-unbind_all(self, sequence):
  5068.  
  5069. +++ Misc-unbind_class(self, className, sequence):
  5070.  
  5071. +++ Misc-update(self):
  5072.  
  5073. +++ Misc-update_idletasks(self):
  5074.  
  5075. +++ Misc-wait_variable(self, name='PY_VAR'):
  5076.  
  5077. +++ Misc-wait_visibility(self, window=None):
  5078.  
  5079. +++ Misc-wait_window(self, window=None):
  5080.  
  5081. +++ Misc-waitvar = wait_variable(self, name='PY_VAR')
  5082.  
  5083. +++ Misc-winfo_atom(self, name, display of=0):
  5084.  
  5085. +++ Misc-winfo_atomname(self, id, display of=0):
  5086.  
  5087. +++ Misc-winfo_cells(self):
  5088.  
  5089. +++ Misc-winfo_children(self):
  5090.  
  5091. +++ Misc-winfo_class(self):
  5092.  
  5093. +++ Misc-winfo_colormapfull(self):
  5094.  
  5095. +++ Misc-winfo_containing(self, rootX, rootY, display of=0):
  5096.  
  5097. +++ Misc-winfo_depth(self):
  5098.  
  5099. +++ Misc-winfo_exists(self):
  5100.  
  5101. +++ Misc-winfo_fpixels(self, number):
  5102.  
  5103. +++ Misc-winfo_geometry(self):
  5104.  
  5105. +++ Misc-winfo_height(self):
  5106.  
  5107. +++ Misc-winfo_id(self):
  5108.  
  5109. +++ Misc-winfo_interps(self, display of=0):
  5110.  
  5111. +++ Misc-winfo_ismapped(self):
  5112.  
  5113. +++ Misc-winfo_manager(self):
  5114.  
  5115. +++ Misc-winfo_name(self):
  5116.  
  5117. +++ Misc-winfo_parent(self):
  5118.  
  5119. +++ Misc-winfo_pathname(self, id, display of=0):
  5120.  
  5121. +++ Misc-winfo_pixels(self, number):
  5122.  
  5123. +++ Misc-winfo_pointerx(self):
  5124.  
  5125. +++ Misc-winfo_pointerxy(self):
  5126.  
  5127. +++ Misc-winfo_pointery(self):
  5128.  
  5129. +++ Misc-winfo_reqheight(self):
  5130.  
  5131. +++ Misc-winfo_reqwidth(self):
  5132.  
  5133. +++ Misc-winfo_rgb(self, color):
  5134.  
  5135. +++ Misc-winfo_rootx(self):
  5136.  
  5137. +++ Misc-winfo_rooty(self):
  5138.  
  5139. +++ Misc-winfo_screen(self):
  5140.  
  5141. +++ Misc-winfo_screencells(self):
  5142.  
  5143. +++ Misc-winfo_screendepth(self):
  5144.  
  5145. +++ Misc-winfo_screenheight(self):
  5146.  
  5147. +++ Misc-winfo_screenmmheight(self):
  5148.  
  5149. +++ Misc-winfo_screenmmwidth(self):
  5150.  
  5151. +++ Misc-winfo_screenvisual(self):
  5152.  
  5153. +++ Misc-winfo_screenwidth(self):
  5154.  
  5155. +++ Misc-winfo_server(self):
  5156.  
  5157. +++ Misc-winfo_toplevel(self):
  5158.  
  5159. +++ Misc-winfo_viewable(self):
  5160.  
  5161. +++ Misc-winfo_visual(self):
  5162.  
  5163. +++ Misc-winfo_visualid(self):
  5164.  
  5165. +++ Misc-winfo_visualsavailable(self, includeids=0):
  5166.  
  5167. +++ Misc-winfo_vrootheight(self):
  5168.  
  5169. +++ Misc-winfo_vrootwidth(self):
  5170.  
  5171. +++ Misc-winfo_vrootx(self):
  5172.  
  5173. +++ Misc-winfo_vrooty(self):
  5174.  
  5175. +++ Misc-winfo_width(self):
  5176.  
  5177. +++ Misc-winfo_x(self):
  5178.  
  5179. +++ Misc-winfo_y(self):Data and other attributes defined here:
  5180. Menubutton *****
  5181.  
  5182.     OptionMenu which allows the user to select a value from a menu.
  5183.     OptionMenu
  5184.  
  5185. +++ OptionMenu-__getitem__(self, name)
  5186.  
  5187. +++ OptionMenu-__init__(self, master, variable, value, *values, **kwargs):
  5188.     Construct an optionmenu widget with the parent MASTER, with
  5189.     the resource textvariable set to VARIABLE, the initially selected
  5190.     value VALUE, the other menu values VALUES and an additional
  5191.     keyword argument command.
  5192.  
  5193. +++ OptionMenu-destroy(self):
  5194.     Destroy this widget and the associated menu.OptionMenu-__contains__(self, key)
  5195.  
  5196. +++ OptionMenu-__setitem__(self, key, value)
  5197.  
  5198. +++ OptionMenu-__str__(self):
  5199.  
  5200. +++ OptionMenu-after(self, ms, func=None, *args):
  5201.  
  5202. +++ OptionMenu-after_cancel(self, id):
  5203.  
  5204. +++ OptionMenu-after_idle(self, func, *args):
  5205.  
  5206. +++ OptionMenu-bbox = grid_bbox(self, column=None):
  5207.  
  5208. +++ OptionMenu-bell(self, display of=0):
  5209.  
  5210. +++ OptionMenu-bind(self, sequence=None):OptionMenu-bind_all(self, sequence=None):
  5211.  
  5212. +++ OptionMenu-bind_class(self, className, sequence=None):
  5213.  
  5214. +++ OptionMenu-bindtags(self, tagList=None):
  5215.  
  5216. +++ OptionMenu-cget(self, key):
  5217.  
  5218. +++ OptionMenu-clipboard_append(self, string, **kw):
  5219.  
  5220. +++ OptionMenu-clipboard_clear(self, **kw):
  5221.  
  5222. +++ OptionMenu-clipboard_get(self, **kw):OptionMenu-colormodel(self, value=None):
  5223.  
  5224. +++ OptionMenu-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
  5225.  
  5226. +++ OptionMenu-config = configure(self, cnf=None, **kw):
  5227.  
  5228. +++ OptionMenu-configure(self, cnf=None, **kw):
  5229.  
  5230. +++ OptionMenu-deletecommand(self, name):
  5231.  
  5232. +++ OptionMenu-event_add(self, virtual, *sequences):
  5233.  
  5234. +++ OptionMenu-event_delete(self, virtual, *sequences):
  5235.  
  5236. +++ OptionMenu-event_generate(self, sequence, **kw):
  5237.  
  5238. +++ OptionMenu-event_info(self, virtual=None):
  5239.  
  5240. +++ OptionMenu-focus = focus_set(self):
  5241.  
  5242. +++ OptionMenu-focus_display of(self):
  5243.  
  5244. +++ OptionMenu-focus_force(self):
  5245.  
  5246. +++ OptionMenu-focus_get(self):
  5247.  
  5248. +++ OptionMenu-focus_lastfor(self):
  5249.  
  5250. +++ OptionMenu-focus_set(self):
  5251.  
  5252. +++ OptionMenu-getboolean(self, s):
  5253.  
  5254. +++ OptionMenu-getvar(self, name='PY_VAR'):
  5255.  
  5256. +++ OptionMenu-grab_current(self):
  5257.  
  5258. +++ OptionMenu-grab_release(self):
  5259.  
  5260. +++ OptionMenu-grab_set(self):
  5261.  
  5262. +++ OptionMenu-grab_set_global(self):
  5263.  
  5264. +++ OptionMenu-grab_status(self):
  5265.  
  5266. +++ OptionMenu-grid_bbox(self, column=None):
  5267.  
  5268. +++ OptionMenu-grid_columnconfigure(self, index, cnf={}, **kw):
  5269.  
  5270. +++ OptionMenu-grid_location(self, x, y):
  5271.  
  5272. +++ OptionMenu-grid_propagate(self, flag=['_noarg_']):
  5273.  
  5274. +++ OptionMenu-grid_rowconfigure(self, index, cnf={}, **kw):
  5275.  
  5276. +++ OptionMenu-grid_size(self):
  5277.  
  5278. +++ OptionMenu-grid_slaves(self, row=None):
  5279.  
  5280. +++ OptionMenu-image_names(self):
  5281.  
  5282. +++ OptionMenu-image_types(self):
  5283.  
  5284. +++ OptionMenu-keys(self):
  5285.  
  5286. +++ OptionMenu-lift = tkraise(self, aboveThis=None):
  5287.  
  5288. +++ OptionMenu-lower(self, belowThis=None):
  5289.  
  5290. +++ OptionMenu-mainloop(self, n=0):
  5291.  
  5292. +++ OptionMenu-nametowidget(self, name):
  5293.  
  5294. +++ OptionMenu-option_add(self, pattern, value, priority=None):
  5295.  
  5296. +++ OptionMenu-option_clear(self):
  5297.  
  5298. +++ OptionMenu-option_get(self, name, className):
  5299.  
  5300. +++ OptionMenu-option_readfile(self, fileName, priority=None):
  5301.  
  5302. +++ OptionMenu-pack_propagate(self, flag=['_noarg_']):
  5303.  
  5304. +++ OptionMenu-pack_slaves(self):
  5305.  
  5306. +++ OptionMenu-place_slaves(self):
  5307.  
  5308. +++ OptionMenu-propagate = pack_propagate(self, flag=['_noarg_']):
  5309.  
  5310. +++ OptionMenu-quit(self):
  5311.  
  5312. +++ OptionMenu-register = _register(self, func, subst=1):
  5313.  
  5314. +++ OptionMenu-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
  5315.  
  5316. +++ OptionMenu-selection_clear(self, **kw):
  5317.  
  5318. +++ OptionMenu-selection_get(self, **kw):
  5319.  
  5320. +++ OptionMenu-selection_handle(self, command, **kw):
  5321.  
  5322. +++ OptionMenu-selection_own(self, **kw):
  5323.  
  5324. +++ OptionMenu-selection_own_get(self, **kw):
  5325.  
  5326. +++ OptionMenu-send(self, interp, cmd, *args):
  5327.  
  5328. +++ OptionMenu-setvar(self, name='1'):
  5329.  
  5330. +++ OptionMenu-size = grid_size(self):
  5331.  
  5332. +++ OptionMenu-slaves = pack_slaves(self):
  5333.  
  5334. +++ OptionMenu-tk_bisque(self):
  5335.  
  5336. +++ OptionMenu-tk_focusFollowsMouse(self):
  5337.  
  5338. +++ OptionMenu-tk_focusNext(self):
  5339.  
  5340. +++ OptionMenu-tk_focusPrev(self):
  5341.  
  5342. +++ OptionMenu-tk_menuBar(self, *args):
  5343.  
  5344. +++ OptionMenu-tk_setPalette(self, *args, **kw):
  5345.  
  5346. +++ OptionMenu-tk_strictMotif(self, boolean=None):
  5347.  
  5348. +++ OptionMenu-tkraise(self, aboveThis=None):
  5349.  
  5350. +++ OptionMenu-unbind(self, sequence, funcid=None):
  5351.  
  5352. +++ OptionMenu-unbind_all(self, sequence):
  5353.  
  5354. +++ OptionMenu-unbind_class(self, className, sequence):
  5355.  
  5356. +++ OptionMenu-update(self):
  5357.  
  5358. +++ OptionMenu-update_idletasks(self):
  5359.  
  5360. +++ OptionMenu-wait_variable(self, name='PY_VAR'):
  5361.  
  5362. +++ OptionMenu-wait_visibility(self, window=None):
  5363.  
  5364. +++ OptionMenu-wait_window(self, window=None):
  5365.  
  5366. +++ OptionMenu-waitvar = wait_variable(self, name='PY_VAR'):
  5367.  
  5368. +++ OptionMenu-winfo_atom(self, name, display of=0):
  5369.  
  5370. +++ OptionMenu-winfo_atomname(self, id, display of=0):
  5371.  
  5372. +++ OptionMenu-winfo_cells(self):
  5373.  
  5374. +++ OptionMenu-winfo_children(self):
  5375.  
  5376. +++ OptionMenu-winfo_class(self):
  5377.  
  5378. +++ OptionMenu-winfo_colormapfull(self):
  5379.  
  5380. +++ OptionMenu-winfo_containing(self, rootX, rootY, display of=0):
  5381.  
  5382. +++ OptionMenu-winfo_depth(self):
  5383.  
  5384. +++ OptionMenu-winfo_exists(self):
  5385.  
  5386. +++ OptionMenu-winfo_fpixels(self, number):
  5387.  
  5388. +++ OptionMenu-winfo_geometry(self):
  5389.  
  5390. +++ OptionMenu-winfo_height(self):
  5391.  
  5392. +++ OptionMenu-winfo_id(self):
  5393.  
  5394. +++ OptionMenu-winfo_interps(self, display of=0):
  5395.  
  5396. +++ OptionMenu-winfo_ismapped(self):
  5397.  
  5398. +++ OptionMenu-winfo_manager(self):
  5399.  
  5400. +++ OptionMenu-winfo_name(self):
  5401.  
  5402. +++ OptionMenu-winfo_parent(self):
  5403.  
  5404. +++ OptionMenu-winfo_pathname(self, id, display of=0):
  5405.  
  5406. +++ OptionMenu-winfo_pixels(self, number):
  5407.  
  5408. +++ OptionMenu-winfo_pointerx(self):
  5409.  
  5410. +++ OptionMenu-winfo_pointerxy(self):
  5411.  
  5412. +++ OptionMenu-winfo_pointery(self):
  5413.  
  5414. +++ OptionMenu-winfo_reqheight(self):
  5415.  
  5416. +++ OptionMenu-winfo_reqwidth(self):
  5417.  
  5418. +++ OptionMenu-winfo_rgb(self, color):
  5419.  
  5420. +++ OptionMenu-winfo_rootx(self):
  5421.  
  5422. +++ OptionMenu-winfo_rooty(self):
  5423.  
  5424. +++ OptionMenu-winfo_screen(self):
  5425.  
  5426. +++ OptionMenu-winfo_screencells(self):
  5427.  
  5428. +++ OptionMenu-winfo_screendepth(self):
  5429.  
  5430. +++ OptionMenu-winfo_screenheight(self):
  5431.  
  5432. +++ OptionMenu-winfo_screenmmheight(self):
  5433.  
  5434. +++ OptionMenu-winfo_screenmmwidth(self):
  5435.  
  5436. +++ OptionMenu-winfo_screenvisual(self):
  5437.  
  5438. +++ OptionMenu-winfo_screenwidth(self):
  5439.  
  5440. +++ OptionMenu-winfo_server(self):
  5441.  
  5442. +++ OptionMenu-winfo_toplevel(self):
  5443.  
  5444. +++ OptionMenu-winfo_viewable(self):
  5445.  
  5446. +++ OptionMenu-winfo_visual(self):
  5447.  
  5448. +++ OptionMenu-winfo_visualid(self):
  5449.  
  5450. +++ OptionMenu-winfo_visualsavailable(self, includeids=0):
  5451.  
  5452. +++ OptionMenu-winfo_vrootheight(self):
  5453.  
  5454. +++ OptionMenu-winfo_vrootwidth(self):
  5455.  
  5456. +++ OptionMenu-winfo_vrootx(self):
  5457.  
  5458. +++ OptionMenu-winfo_vrooty(self):
  5459.  
  5460. +++ OptionMenu-winfo_width(self):
  5461.  
  5462. +++ OptionMenu-winfo_x(self):
  5463.  
  5464. +++ OptionMenu-winfo_y(self):
  5465.  
  5466.  
  5467. +++ OptionMenu-forget = pack_forget(self):
  5468.  
  5469. +++ OptionMenu-info = pack_info(self):
  5470.  
  5471. +++ OptionMenu-pack = pack_configure(self, cnf={}, **kw):
  5472.  
  5473. +++ OptionMenu-pack_configure(self, cnf={}, **kw):
  5474.  
  5475. +++ OptionMenu-pack_forget(self):
  5476.  
  5477. +++ OptionMenu-pack_info(self):OptionMenu-place = place_configure(self, cnf={}, **kw):
  5478.  
  5479. +++ OptionMenu-place_configure(self, cnf={}, **kw):
  5480.  
  5481. +++ OptionMenu-place_forget(self):
  5482.  
  5483. +++ OptionMenu-place_info(self):OptionMenu-grid = grid_configure(self, cnf={}, **kw):
  5484.  
  5485. +++ OptionMenu-grid_configure(self, cnf={}, **kw):
  5486.  
  5487. +++ OptionMenu-grid_forget(self):
  5488.  
  5489. +++ OptionMenu-grid_info(self):
  5490.  
  5491. +++ OptionMenu-grid_remove(self):
  5492.  
  5493. +++ OptionMenu-location = grid_location(self, x, y):
  5494.  
  5495. *** class Pack
  5496.  
  5497.     Geometry manager Pack.
  5498.     Base class to use the methods pack_* in every widget.
  5499.  
  5500. +++ Pack-config = pack_configure(self, cnf={}, **kw)
  5501.  
  5502. +++ Pack-configure = pack_configure(self, cnf={}, **kw)
  5503.  
  5504. +++ Pack-forget = pack_forget(self)
  5505.  
  5506. +++ Pack-info = pack_info(self)
  5507.  
  5508. +++ Pack-pack = pack_configure(self, cnf={}, **kw)
  5509.  
  5510. +++ Pack-pack_configure(self, cnf={}, **kw):
  5511.  
  5512. +++ Pack-pack_forget(self):
  5513.  
  5514. +++ Pack-pack_info(self):
  5515.  
  5516. +++ Pack-pack_propagate(self, flagMisc:
  5517.  
  5518. +++ Pack-pack_slaves(self)Misc:
  5519.  
  5520. +++ Pack-propagate = pack_propagate(self, flagMisc:
  5521.  
  5522. +++ Pack-slaves = pack_slaves(self)Misc:
  5523.     panedwindow widget.
  5524.     PanedWindow
  5525.  
  5526. +++ PanedWindow-__init__(self, master={}, **kw):
  5527.     Construct a panedwindow widget with the parent MASTER.
  5528.         background, borderwidth, cursor, height,
  5529.         orient, relief, width
  5530.         handlepad, handlesize, opaqueresize,
  5531.         sashcursor, sashpad, sashrelief,
  5532.         sashwidth, showhandle,
  5533.  
  5534. +++ PanedWindow-add(self, child, **kw):
  5535.     Add a child widget to the panedwindow in a new pane.
  5536.     The child argument is the name of the child widget
  5537.     followed by pairs of arguments that specify how to
  5538.     manage the windows. The possible options and values
  5539.     are the ones accepted by the paneconfigure method.
  5540.  
  5541. +++ PanedWindow-forget = remove(self, child)
  5542.  
  5543. +++ PanedWindow-identify(self, x, y):
  5544.     Identify the panedwindow component at point x, y
  5545.     If the point is over a sash or a sash handle, the result
  5546.     is a two element list containing the index of the sash or
  5547.     handle, and a word indicating whether it is over a sash
  5548.     or a handle, such as {0 sash} or {2 handle}. If the point
  5549.     is over any other part of the panedwindow, the result is
  5550.     an empty list.
  5551.  
  5552. +++ PanedWindow-panecget(self, child, option):
  5553.     Query a management option for window.
  5554.     Option may be any value allowed by the paneconfigure subcommand
  5555.  
  5556. +++ PanedWindow-paneconfig = paneconfigure(self, tagOrId, cnf=None, **kw)
  5557.  
  5558. +++ PanedWindow-paneconfigure(self, tagOrId, cnf=None, **kw):
  5559.     Query or modify the management options for window.
  5560.     If no option is specified, returns a list describing all
  5561.     of the available options for pathName.  If option is
  5562.     specified with no value, then the command returns a list
  5563.     describing the one named option (this list will be identical
  5564.     to the corresponding sublist of the value returned if no
  5565.     option is specified). If one or more option-value pairs are
  5566.     specified, then the command modifies the given widget
  5567.     option(s) to have the given value(s); in this case the
  5568.     command returns an empty string. The following options
  5569.     are supported:
  5570.     after window
  5571.         Insert the window after the window specified. window
  5572.         should be the name of a window already managed by pathName.
  5573.     before window
  5574.         Insert the window before the window specified. window
  5575.     height size
  5576.         Specify a height for the window. The height will be the
  5577.         outer dimension of the window including its border, if
  5578.         any. If size is an empty string, or if -height is not
  5579.         specified, then the height requested internally by the
  5580.         window will be used initially; the height may later be
  5581.         adjusted by the movement of sashes in the panedwindow.
  5582.         Size may be any value accepted by Tk_GetPixels.
  5583.     minsize n
  5584.         Specifies that the size of the window cannot be made
  5585.         less than n. This constraint only affects the size of
  5586.         the widget in the paned dimension -- the x dimension
  5587.         for horizontal panedwindows, the y dimension for
  5588.         vertical panedwindows. May be any value accepted by
  5589.         Tk_GetPixels.
  5590.     padx n
  5591.         Specifies a non-negative value indicating how much
  5592.         extra space to leave on each side of the window in
  5593.         the X-direction. The value may have any of the forms
  5594.         accepted by Tk_GetPixels.
  5595.     pady n
  5596.         the Y-direction. The value may have any of the forms
  5597.     sticky style
  5598.         If a window's pane is larger than the requested
  5599.         dimensions of the window, this option may be used
  5600.         to position (or stretch) the window within its pane.
  5601.         Style is a string that contains zero or more of the
  5602.         characters n, s, e or w. The string can optionally
  5603.         contains spaces or commas, but they are ignored. Each
  5604.         letter refers to a side (north, south, east, or west)
  5605.         that the window will "stick" to. If both n and s
  5606.         (or e and w) are specified, the window will be
  5607.         stretched to fill the entire height (or width) of
  5608.         its cavity.
  5609.     width size
  5610.         Specify a width for the window. The width will be
  5611.         the outer dimension of the window including its
  5612.         border, if any. If size is an empty string, or
  5613.         if -width is not specified, then the width requested
  5614.         internally by the window will be used initially; the
  5615.         width may later be adjusted by the movement of sashes
  5616.         in the panedwindow. Size may be any value accepted by
  5617.  
  5618. +++ PanedWindow-panes(self):
  5619.     Returns an ordered list of the child panes.
  5620.  
  5621. +++ PanedWindow-proxy(self, *args):
  5622.  
  5623. +++ PanedWindow-proxy_coord(self):
  5624.     Return the x and y pair of the most recent proxy location
  5625.  
  5626. +++ PanedWindow-proxy_forget(self):
  5627.     Remove the proxy from the display.
  5628.  
  5629. +++ PanedWindow-proxy_place(self, x, y):
  5630.     Place the proxy at the given x and y coordinates.
  5631.  
  5632. +++ PanedWindow-remove(self, child):
  5633.     Remove the pane containing child from the panedwindow
  5634.     All geometry management options for child will be forgotten.
  5635.  
  5636. +++ PanedWindow-sash(self, *args):
  5637.  
  5638. +++ PanedWindow-sash_coord(self, index):
  5639.     Return the current x and y pair for the sash given by index.
  5640.     Index must be an integer between 0 and 1 less than the
  5641.     number of panes in the panedwindow. The coordinates given are
  5642.     those of the top left corner of the region containing the sash.
  5643.     pathName sash dragto index x y This command computes the
  5644.     difference between the given coordinates and the coordinates
  5645.     given to the last sash coord command for the given sash. It then
  5646.     moves that sash the computed difference. The return value is the
  5647.     empty string.
  5648.  
  5649. +++ PanedWindow-sash_mark(self, index):
  5650.     Records x and y for the sash given by index;
  5651.     Used in conjunction with later dragto commands to move the sash.
  5652.  
  5653. +++ PanedWindow-sash_place(self, index, x, y):
  5654.     Place the sash given by index at the given coordinatesPanedWindow-destroy(self):PanedWindow-__contains__(self, key)
  5655.  
  5656. +++ PanedWindow-__getitem__ = cget(self, key):
  5657.  
  5658. +++ PanedWindow-__setitem__(self, key, value)
  5659.  
  5660. +++ PanedWindow-__str__(self):
  5661.  
  5662. +++ PanedWindow-after(self, ms, func=None, *args):
  5663.  
  5664. +++ PanedWindow-after_cancel(self, id):
  5665.  
  5666. +++ PanedWindow-after_idle(self, func, *args):
  5667.  
  5668. +++ PanedWindow-bbox = grid_bbox(self, column=None):
  5669.  
  5670. +++ PanedWindow-bell(self, display of=0):
  5671.  
  5672. +++ PanedWindow-bind(self, sequence=None):PanedWindow-bind_all(self, sequence=None):
  5673.  
  5674. +++ PanedWindow-bind_class(self, className, sequence=None):
  5675.  
  5676. +++ PanedWindow-bindtags(self, tagList=None):
  5677.  
  5678. +++ PanedWindow-cget(self, key):
  5679.  
  5680. +++ PanedWindow-clipboard_append(self, string, **kw):
  5681.  
  5682. +++ PanedWindow-clipboard_clear(self, **kw):
  5683.  
  5684. +++ PanedWindow-clipboard_get(self, **kw):PanedWindow-colormodel(self, value=None):
  5685.  
  5686. +++ PanedWindow-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
  5687.  
  5688. +++ PanedWindow-config = configure(self, cnf=None, **kw):
  5689.  
  5690. +++ PanedWindow-configure(self, cnf=None, **kw):
  5691.  
  5692. +++ PanedWindow-deletecommand(self, name):
  5693.  
  5694. +++ PanedWindow-event_add(self, virtual, *sequences):
  5695.  
  5696. +++ PanedWindow-event_delete(self, virtual, *sequences):
  5697.  
  5698. +++ PanedWindow-event_generate(self, sequence, **kw):
  5699.  
  5700. +++ PanedWindow-event_info(self, virtual=None):
  5701.  
  5702. +++ PanedWindow-focus = focus_set(self):
  5703.  
  5704. +++ PanedWindow-focus_display of(self):
  5705.  
  5706. +++ PanedWindow-focus_force(self):
  5707.  
  5708. +++ PanedWindow-focus_get(self):
  5709.  
  5710. +++ PanedWindow-focus_lastfor(self):
  5711.  
  5712. +++ PanedWindow-focus_set(self):
  5713.  
  5714. +++ PanedWindow-getboolean(self, s):
  5715.  
  5716. +++ PanedWindow-getvar(self, name='PY_VAR'):
  5717.  
  5718. +++ PanedWindow-grab_current(self):
  5719.  
  5720. +++ PanedWindow-grab_release(self):
  5721.  
  5722. +++ PanedWindow-grab_set(self):
  5723.  
  5724. +++ PanedWindow-grab_set_global(self):
  5725.  
  5726. +++ PanedWindow-grab_status(self):
  5727.  
  5728. +++ PanedWindow-grid_bbox(self, column=None):
  5729.  
  5730. +++ PanedWindow-grid_columnconfigure(self, index, cnf={}, **kw):
  5731.  
  5732. +++ PanedWindow-grid_location(self, x, y):
  5733.  
  5734. +++ PanedWindow-grid_propagate(self, flag=['_noarg_']):
  5735.  
  5736. +++ PanedWindow-grid_rowconfigure(self, index, cnf={}, **kw):
  5737.  
  5738. +++ PanedWindow-grid_size(self):
  5739.  
  5740. +++ PanedWindow-grid_slaves(self, row=None):
  5741.  
  5742. +++ PanedWindow-image_names(self):
  5743.  
  5744. +++ PanedWindow-image_types(self):
  5745.  
  5746. +++ PanedWindow-keys(self):
  5747.  
  5748. +++ PanedWindow-lift = tkraise(self, aboveThis=None):
  5749.  
  5750. +++ PanedWindow-lower(self, belowThis=None):
  5751.  
  5752. +++ PanedWindow-mainloop(self, n=0):
  5753.  
  5754. +++ PanedWindow-nametowidget(self, name):
  5755.  
  5756. +++ PanedWindow-option_add(self, pattern, value, priority=None):
  5757.  
  5758. +++ PanedWindow-option_clear(self):
  5759.  
  5760. +++ PanedWindow-option_get(self, name, className):
  5761.  
  5762. +++ PanedWindow-option_readfile(self, fileName, priority=None):
  5763.  
  5764. +++ PanedWindow-pack_propagate(self, flag=['_noarg_']):
  5765.  
  5766. +++ PanedWindow-pack_slaves(self):
  5767.  
  5768. +++ PanedWindow-place_slaves(self):
  5769.  
  5770. +++ PanedWindow-propagate = pack_propagate(self, flag=['_noarg_']):
  5771.  
  5772. +++ PanedWindow-quit(self):
  5773.  
  5774. +++ PanedWindow-register = _register(self, func, subst=1):
  5775.  
  5776. +++ PanedWindow-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
  5777.  
  5778. +++ PanedWindow-selection_clear(self, **kw):
  5779.  
  5780. +++ PanedWindow-selection_get(self, **kw):
  5781.  
  5782. +++ PanedWindow-selection_handle(self, command, **kw):
  5783.  
  5784. +++ PanedWindow-selection_own(self, **kw):
  5785.  
  5786. +++ PanedWindow-selection_own_get(self, **kw):
  5787.  
  5788. +++ PanedWindow-send(self, interp, cmd, *args):
  5789.  
  5790. +++ PanedWindow-setvar(self, name='1'):
  5791.  
  5792. +++ PanedWindow-size = grid_size(self):
  5793.  
  5794. +++ PanedWindow-slaves = pack_slaves(self):
  5795.  
  5796. +++ PanedWindow-tk_bisque(self):
  5797.  
  5798. +++ PanedWindow-tk_focusFollowsMouse(self):
  5799.  
  5800. +++ PanedWindow-tk_focusNext(self):
  5801.  
  5802. +++ PanedWindow-tk_focusPrev(self):
  5803.  
  5804. +++ PanedWindow-tk_menuBar(self, *args):
  5805.  
  5806. +++ PanedWindow-tk_setPalette(self, *args, **kw):
  5807.  
  5808. +++ PanedWindow-tk_strictMotif(self, boolean=None):
  5809.  
  5810. +++ PanedWindow-tkraise(self, aboveThis=None):
  5811.  
  5812. +++ PanedWindow-unbind(self, sequence, funcid=None):
  5813.  
  5814. +++ PanedWindow-unbind_all(self, sequence):
  5815.  
  5816. +++ PanedWindow-unbind_class(self, className, sequence):
  5817.  
  5818. +++ PanedWindow-update(self):
  5819.  
  5820. +++ PanedWindow-update_idletasks(self):
  5821.  
  5822. +++ PanedWindow-wait_variable(self, name='PY_VAR'):
  5823.  
  5824. +++ PanedWindow-wait_visibility(self, window=None):
  5825.  
  5826. +++ PanedWindow-wait_window(self, window=None):
  5827.  
  5828. +++ PanedWindow-waitvar = wait_variable(self, name='PY_VAR'):
  5829.  
  5830. +++ PanedWindow-winfo_atom(self, name, display of=0):
  5831.  
  5832. +++ PanedWindow-winfo_atomname(self, id, display of=0):
  5833.  
  5834. +++ PanedWindow-winfo_cells(self):
  5835.  
  5836. +++ PanedWindow-winfo_children(self):
  5837.  
  5838. +++ PanedWindow-winfo_class(self):
  5839.  
  5840. +++ PanedWindow-winfo_colormapfull(self):
  5841.  
  5842. +++ PanedWindow-winfo_containing(self, rootX, rootY, display of=0):
  5843.  
  5844. +++ PanedWindow-winfo_depth(self):
  5845.  
  5846. +++ PanedWindow-winfo_exists(self):
  5847.  
  5848. +++ PanedWindow-winfo_fpixels(self, number):
  5849.  
  5850. +++ PanedWindow-winfo_geometry(self):
  5851.  
  5852. +++ PanedWindow-winfo_height(self):
  5853.  
  5854. +++ PanedWindow-winfo_id(self):
  5855.  
  5856. +++ PanedWindow-winfo_interps(self, display of=0):
  5857.  
  5858. +++ PanedWindow-winfo_ismapped(self):
  5859.  
  5860. +++ PanedWindow-winfo_manager(self):
  5861.  
  5862. +++ PanedWindow-winfo_name(self):
  5863.  
  5864. +++ PanedWindow-winfo_parent(self):
  5865.  
  5866. +++ PanedWindow-winfo_pathname(self, id, display of=0):
  5867.  
  5868. +++ PanedWindow-winfo_pixels(self, number):
  5869.  
  5870. +++ PanedWindow-winfo_pointerx(self):
  5871.  
  5872. +++ PanedWindow-winfo_pointerxy(self):
  5873.  
  5874. +++ PanedWindow-winfo_pointery(self):
  5875.  
  5876. +++ PanedWindow-winfo_reqheight(self):
  5877.  
  5878. +++ PanedWindow-winfo_reqwidth(self):
  5879.  
  5880. +++ PanedWindow-winfo_rgb(self, color):
  5881.  
  5882. +++ PanedWindow-winfo_rootx(self):
  5883.  
  5884. +++ PanedWindow-winfo_rooty(self):
  5885.  
  5886. +++ PanedWindow-winfo_screen(self):
  5887.  
  5888. +++ PanedWindow-winfo_screencells(self):
  5889.  
  5890. +++ PanedWindow-winfo_screendepth(self):
  5891.  
  5892. +++ PanedWindow-winfo_screenheight(self):
  5893.  
  5894. +++ PanedWindow-winfo_screenmmheight(self):
  5895.  
  5896. +++ PanedWindow-winfo_screenmmwidth(self):
  5897.  
  5898. +++ PanedWindow-winfo_screenvisual(self):
  5899.  
  5900. +++ PanedWindow-winfo_screenwidth(self):
  5901.  
  5902. +++ PanedWindow-winfo_server(self):
  5903.  
  5904. +++ PanedWindow-winfo_toplevel(self):
  5905.  
  5906. +++ PanedWindow-winfo_viewable(self):
  5907.  
  5908. +++ PanedWindow-winfo_visual(self):
  5909.  
  5910. +++ PanedWindow-winfo_visualid(self):
  5911.  
  5912. +++ PanedWindow-winfo_visualsavailable(self, includeids=0):
  5913.  
  5914. +++ PanedWindow-winfo_vrootheight(self):
  5915.  
  5916. +++ PanedWindow-winfo_vrootwidth(self):
  5917.  
  5918. +++ PanedWindow-winfo_vrootx(self):
  5919.  
  5920. +++ PanedWindow-winfo_vrooty(self):
  5921.  
  5922. +++ PanedWindow-winfo_width(self):
  5923.  
  5924. +++ PanedWindow-winfo_x(self):
  5925.  
  5926. +++ PanedWindow-winfo_y(self):
  5927.  
  5928.  
  5929. +++ PanedWindow-info = pack_info(self):
  5930.  
  5931. +++ PanedWindow-pack = pack_configure(self, cnf={}, **kw):
  5932.  
  5933. +++ PanedWindow-pack_configure(self, cnf={}, **kw):
  5934.  
  5935. +++ PanedWindow-pack_forget(self):
  5936.  
  5937. +++ PanedWindow-pack_info(self):PanedWindow-place = place_configure(self, cnf={}, **kw):
  5938.  
  5939. +++ PanedWindow-place_configure(self, cnf={}, **kw):
  5940.  
  5941. +++ PanedWindow-place_forget(self):
  5942.  
  5943. +++ PanedWindow-place_info(self):PanedWindow-grid = grid_configure(self, cnf={}, **kw):
  5944.  
  5945. +++ PanedWindow-grid_configure(self, cnf={}, **kw):
  5946.  
  5947. +++ PanedWindow-grid_forget(self):
  5948.  
  5949. +++ PanedWindow-grid_info(self):
  5950.  
  5951. +++ PanedWindow-grid_remove(self):
  5952.  
  5953. +++ PanedWindow-location = grid_location(self, x, y):
  5954.     Widget which can display colored images in GIF, PPM/PGM format.
  5955.  
  5956. +++ PhotoImage-__getitem__(self, key):
  5957.     # XXX config
  5958.  
  5959. +++ PhotoImage-__init__(self, name=None, **kw):
  5960.     Create an image with NAME.
  5961.     Valid resource names: data, format, file, gamma, height, palette,
  5962.     width.
  5963.  
  5964. +++ PhotoImage-blank(self):
  5965.     Display a transparent image.
  5966.  
  5967. +++ PhotoImage-cget(self, option):
  5968.     Return the value of OPTION.
  5969.  
  5970. +++ PhotoImage-copy(self):
  5971.     Return a new PhotoImage with the same image as this widget.
  5972.  
  5973. +++ PhotoImage-get(self, x, y):
  5974.     Return the color (red, green, blue) of the pixel at X,Y.
  5975.  
  5976. +++ PhotoImage-put(self, data, to=None):
  5977.     Put row formatted colors to image starting from
  5978.     position TO, e.g. image.put("{red green} {blue yellow}", to=(4,6))
  5979.  
  5980. +++ PhotoImage-subsample(self, x, y=''):
  5981.     Return a new PhotoImage based on the same image as this widget
  5982.     but use only every Xth or Yth pixel.
  5983.  
  5984. +++ PhotoImage-write(self, filename, format=None):
  5985.     Write image to file FILENAME in FORMAT starting from
  5986.     position FROM_COORDS.
  5987.  
  5988. +++ PhotoImage-zoom(self, x, y=''):
  5989.     Return a new PhotoImage with the same image as this widget
  5990.     but zoom it with X and Y.Methods inherited from Image:
  5991.  
  5992. +++ PhotoImage-__del__(self)
  5993.  
  5994. +++ PhotoImage-__setitem__(self, key, value)
  5995.  
  5996. +++ PhotoImage-__str__(self)
  5997.  
  5998. +++ PhotoImage-config = configure(self, **kw):
  5999.  
  6000. +++ PhotoImage-configure(self, **kw):
  6001.  
  6002. +++ PhotoImage-height(self):
  6003.  
  6004. +++ PhotoImage-type(self):
  6005.  
  6006. +++ PhotoImage-width(self):
  6007.  
  6008. *** class Place
  6009.  
  6010.     Geometry manager Place.
  6011.     Base class to use the methods place_* in every widget.
  6012.  
  6013. +++ Place-config = place_configure(self, cnf={}, **kw)
  6014.  
  6015. +++ Place-configure = place_configure(self, cnf={}, **kw)
  6016.  
  6017. +++ Place-forget = place_forget(self)
  6018.  
  6019. +++ Place-info = place_info(self)
  6020.  
  6021. +++ Place-place = place_configure(self, cnf={}, **kw)
  6022.  
  6023. +++ Place-place_configure(self, cnf={}, **kw):
  6024.  
  6025. +++ Place-place_forget(self):
  6026.  
  6027. +++ Place-place_info(self):
  6028.  
  6029. +++ Place-place_slaves(self)Misc:
  6030.  
  6031. +++ Place-slaves = place_slaves(self)Misc:
  6032.     Radiobutton widget which shows only one of several buttons in on-state.
  6033.     Radiobutton
  6034.  
  6035. +++ Radiobutton-__init__(self, master={}, **kw):
  6036.     Construct a radiobutton widget with the parent MASTER.
  6037.     indicatoron, justify, padx, pady, relief, selectcolor, selectimage,
  6038.     state, takefocus, text, textvariable, underline, value, variable,
  6039.     width, wraplength.
  6040.  
  6041. +++ Radiobutton-deselect(self):
  6042.  
  6043. +++ Radiobutton-flash(self):
  6044.  
  6045. +++ Radiobutton-invoke(self):
  6046.  
  6047. +++ Radiobutton-select(self):Radiobutton-destroy(self):Radiobutton-__contains__(self, key)
  6048.  
  6049. +++ Radiobutton-__getitem__ = cget(self, key):
  6050.  
  6051. +++ Radiobutton-__setitem__(self, key, value)
  6052.  
  6053. +++ Radiobutton-__str__(self):
  6054.  
  6055. +++ Radiobutton-after(self, ms, func=None, *args):
  6056.  
  6057. +++ Radiobutton-after_cancel(self, id):
  6058.  
  6059. +++ Radiobutton-after_idle(self, func, *args):
  6060.  
  6061. +++ Radiobutton-bbox = grid_bbox(self, column=None):
  6062.  
  6063. +++ Radiobutton-bell(self, display of=0):
  6064.  
  6065. +++ Radiobutton-bind(self, sequence=None):Radiobutton-bind_all(self, sequence=None):
  6066.  
  6067. +++ Radiobutton-bind_class(self, className, sequence=None):
  6068.  
  6069. +++ Radiobutton-bindtags(self, tagList=None):
  6070.  
  6071. +++ Radiobutton-cget(self, key):
  6072.  
  6073. +++ Radiobutton-clipboard_append(self, string, **kw):
  6074.  
  6075. +++ Radiobutton-clipboard_clear(self, **kw):
  6076.  
  6077. +++ Radiobutton-clipboard_get(self, **kw):Radiobutton-colormodel(self, value=None):
  6078.  
  6079. +++ Radiobutton-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
  6080.  
  6081. +++ Radiobutton-config = configure(self, cnf=None, **kw):
  6082.  
  6083. +++ Radiobutton-configure(self, cnf=None, **kw):
  6084.  
  6085. +++ Radiobutton-deletecommand(self, name):
  6086.  
  6087. +++ Radiobutton-event_add(self, virtual, *sequences):
  6088.  
  6089. +++ Radiobutton-event_delete(self, virtual, *sequences):
  6090.  
  6091. +++ Radiobutton-event_generate(self, sequence, **kw):
  6092.  
  6093. +++ Radiobutton-event_info(self, virtual=None):
  6094.  
  6095. +++ Radiobutton-focus = focus_set(self):
  6096.  
  6097. +++ Radiobutton-focus_display of(self):
  6098.  
  6099. +++ Radiobutton-focus_force(self):
  6100.  
  6101. +++ Radiobutton-focus_get(self):
  6102.  
  6103. +++ Radiobutton-focus_lastfor(self):
  6104.  
  6105. +++ Radiobutton-focus_set(self):
  6106.  
  6107. +++ Radiobutton-getboolean(self, s):
  6108.  
  6109. +++ Radiobutton-getvar(self, name='PY_VAR'):
  6110.  
  6111. +++ Radiobutton-grab_current(self):
  6112.  
  6113. +++ Radiobutton-grab_release(self):
  6114.  
  6115. +++ Radiobutton-grab_set(self):
  6116.  
  6117. +++ Radiobutton-grab_set_global(self):
  6118.  
  6119. +++ Radiobutton-grab_status(self):
  6120.  
  6121. +++ Radiobutton-grid_bbox(self, column=None):
  6122.  
  6123. +++ Radiobutton-grid_columnconfigure(self, index, cnf={}, **kw):
  6124.  
  6125. +++ Radiobutton-grid_location(self, x, y):
  6126.  
  6127. +++ Radiobutton-grid_propagate(self, flag=['_noarg_']):
  6128.  
  6129. +++ Radiobutton-grid_rowconfigure(self, index, cnf={}, **kw):
  6130.  
  6131. +++ Radiobutton-grid_size(self):
  6132.  
  6133. +++ Radiobutton-grid_slaves(self, row=None):
  6134.  
  6135. +++ Radiobutton-image_names(self):
  6136.  
  6137. +++ Radiobutton-image_types(self):
  6138.  
  6139. +++ Radiobutton-keys(self):
  6140.  
  6141. +++ Radiobutton-lift = tkraise(self, aboveThis=None):
  6142.  
  6143. +++ Radiobutton-lower(self, belowThis=None):
  6144.  
  6145. +++ Radiobutton-mainloop(self, n=0):
  6146.  
  6147. +++ Radiobutton-nametowidget(self, name):
  6148.  
  6149. +++ Radiobutton-option_add(self, pattern, value, priority=None):
  6150.  
  6151. +++ Radiobutton-option_clear(self):
  6152.  
  6153. +++ Radiobutton-option_get(self, name, className):
  6154.  
  6155. +++ Radiobutton-option_readfile(self, fileName, priority=None):
  6156.  
  6157. +++ Radiobutton-pack_propagate(self, flag=['_noarg_']):
  6158.  
  6159. +++ Radiobutton-pack_slaves(self):
  6160.  
  6161. +++ Radiobutton-place_slaves(self):
  6162.  
  6163. +++ Radiobutton-propagate = pack_propagate(self, flag=['_noarg_']):
  6164.  
  6165. +++ Radiobutton-quit(self):
  6166.  
  6167. +++ Radiobutton-register = _register(self, func, subst=1):
  6168.  
  6169. +++ Radiobutton-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
  6170.  
  6171. +++ Radiobutton-selection_clear(self, **kw):
  6172.  
  6173. +++ Radiobutton-selection_get(self, **kw):
  6174.  
  6175. +++ Radiobutton-selection_handle(self, command, **kw):
  6176.  
  6177. +++ Radiobutton-selection_own(self, **kw):
  6178.  
  6179. +++ Radiobutton-selection_own_get(self, **kw):
  6180.  
  6181. +++ Radiobutton-send(self, interp, cmd, *args):
  6182.  
  6183. +++ Radiobutton-setvar(self, name='1'):
  6184.  
  6185. +++ Radiobutton-size = grid_size(self):
  6186.  
  6187. +++ Radiobutton-slaves = pack_slaves(self):
  6188.  
  6189. +++ Radiobutton-tk_bisque(self):
  6190.  
  6191. +++ Radiobutton-tk_focusFollowsMouse(self):
  6192.  
  6193. +++ Radiobutton-tk_focusNext(self):
  6194.  
  6195. +++ Radiobutton-tk_focusPrev(self):
  6196.  
  6197. +++ Radiobutton-tk_menuBar(self, *args):
  6198.  
  6199. +++ Radiobutton-tk_setPalette(self, *args, **kw):
  6200.  
  6201. +++ Radiobutton-tk_strictMotif(self, boolean=None):
  6202.  
  6203. +++ Radiobutton-tkraise(self, aboveThis=None):
  6204.  
  6205. +++ Radiobutton-unbind(self, sequence, funcid=None):
  6206.  
  6207. +++ Radiobutton-unbind_all(self, sequence):
  6208.  
  6209. +++ Radiobutton-unbind_class(self, className, sequence):
  6210.  
  6211. +++ Radiobutton-update(self):
  6212.  
  6213. +++ Radiobutton-update_idletasks(self):
  6214.  
  6215. +++ Radiobutton-wait_variable(self, name='PY_VAR'):
  6216.  
  6217. +++ Radiobutton-wait_visibility(self, window=None):
  6218.  
  6219. +++ Radiobutton-wait_window(self, window=None):
  6220.  
  6221. +++ Radiobutton-waitvar = wait_variable(self, name='PY_VAR'):
  6222.  
  6223. +++ Radiobutton-winfo_atom(self, name, display of=0):
  6224.  
  6225. +++ Radiobutton-winfo_atomname(self, id, display of=0):
  6226.  
  6227. +++ Radiobutton-winfo_cells(self):
  6228.  
  6229. +++ Radiobutton-winfo_children(self):
  6230.  
  6231. +++ Radiobutton-winfo_class(self):
  6232.  
  6233. +++ Radiobutton-winfo_colormapfull(self):
  6234.  
  6235. +++ Radiobutton-winfo_containing(self, rootX, rootY, display of=0):
  6236.  
  6237. +++ Radiobutton-winfo_depth(self):
  6238.  
  6239. +++ Radiobutton-winfo_exists(self):
  6240.  
  6241. +++ Radiobutton-winfo_fpixels(self, number):
  6242.  
  6243. +++ Radiobutton-winfo_geometry(self):
  6244.  
  6245. +++ Radiobutton-winfo_height(self):
  6246.  
  6247. +++ Radiobutton-winfo_id(self):
  6248.  
  6249. +++ Radiobutton-winfo_interps(self, display of=0):
  6250.  
  6251. +++ Radiobutton-winfo_ismapped(self):
  6252.  
  6253. +++ Radiobutton-winfo_manager(self):
  6254.  
  6255. +++ Radiobutton-winfo_name(self):
  6256.  
  6257. +++ Radiobutton-winfo_parent(self):
  6258.  
  6259. +++ Radiobutton-winfo_pathname(self, id, display of=0):
  6260.  
  6261. +++ Radiobutton-winfo_pixels(self, number):
  6262.  
  6263. +++ Radiobutton-winfo_pointerx(self):
  6264.  
  6265. +++ Radiobutton-winfo_pointerxy(self):
  6266.  
  6267. +++ Radiobutton-winfo_pointery(self):
  6268.  
  6269. +++ Radiobutton-winfo_reqheight(self):
  6270.  
  6271. +++ Radiobutton-winfo_reqwidth(self):
  6272.  
  6273. +++ Radiobutton-winfo_rgb(self, color):
  6274.  
  6275. +++ Radiobutton-winfo_rootx(self):
  6276.  
  6277. +++ Radiobutton-winfo_rooty(self):
  6278.  
  6279. +++ Radiobutton-winfo_screen(self):
  6280.  
  6281. +++ Radiobutton-winfo_screencells(self):
  6282.  
  6283. +++ Radiobutton-winfo_screendepth(self):
  6284.  
  6285. +++ Radiobutton-winfo_screenheight(self):
  6286.  
  6287. +++ Radiobutton-winfo_screenmmheight(self):
  6288.  
  6289. +++ Radiobutton-winfo_screenmmwidth(self):
  6290.  
  6291. +++ Radiobutton-winfo_screenvisual(self):
  6292.  
  6293. +++ Radiobutton-winfo_screenwidth(self):
  6294.  
  6295. +++ Radiobutton-winfo_server(self):
  6296.  
  6297. +++ Radiobutton-winfo_toplevel(self):
  6298.  
  6299. +++ Radiobutton-winfo_viewable(self):
  6300.  
  6301. +++ Radiobutton-winfo_visual(self):
  6302.  
  6303. +++ Radiobutton-winfo_visualid(self):
  6304.  
  6305. +++ Radiobutton-winfo_visualsavailable(self, includeids=0):
  6306.  
  6307. +++ Radiobutton-winfo_vrootheight(self):
  6308.  
  6309. +++ Radiobutton-winfo_vrootwidth(self):
  6310.  
  6311. +++ Radiobutton-winfo_vrootx(self):
  6312.  
  6313. +++ Radiobutton-winfo_vrooty(self):
  6314.  
  6315. +++ Radiobutton-winfo_width(self):
  6316.  
  6317. +++ Radiobutton-winfo_x(self):
  6318.  
  6319. +++ Radiobutton-winfo_y(self):
  6320.  
  6321.  
  6322. +++ Radiobutton-forget = pack_forget(self):
  6323.  
  6324. +++ Radiobutton-info = pack_info(self):
  6325.  
  6326. +++ Radiobutton-pack = pack_configure(self, cnf={}, **kw):
  6327.  
  6328. +++ Radiobutton-pack_configure(self, cnf={}, **kw):
  6329.  
  6330. +++ Radiobutton-pack_forget(self):
  6331.  
  6332. +++ Radiobutton-pack_info(self):Radiobutton-place = place_configure(self, cnf={}, **kw):
  6333.  
  6334. +++ Radiobutton-place_configure(self, cnf={}, **kw):
  6335.  
  6336. +++ Radiobutton-place_forget(self):
  6337.  
  6338. +++ Radiobutton-place_info(self):Radiobutton-grid = grid_configure(self, cnf={}, **kw):
  6339.  
  6340. +++ Radiobutton-grid_configure(self, cnf={}, **kw):
  6341.  
  6342. +++ Radiobutton-grid_forget(self):
  6343.  
  6344. +++ Radiobutton-grid_info(self):
  6345.  
  6346. +++ Radiobutton-grid_remove(self):
  6347.  
  6348. +++ Radiobutton-location = grid_location(self, x, y):
  6349.     Scale widget which can display a numerical scale.
  6350.     Scale
  6351.  
  6352. +++ Scale-__init__(self, master={}, **kw):
  6353.     Construct a scale widget with the parent MASTER.
  6354.     Valid resource names: activebackground, background, bigincrement, bd,
  6355.     bg, borderwidth, command, cursor, digits, fg, font, foreground, from,
  6356.     highlightbackground, highlightcolor, highlightthickness, label,
  6357.     length, orient, relief, repeatdelay, repeatinterval, resolution,
  6358.     showvalue, sliderlength, sliderrelief, state, takefocus,
  6359.     tickinterval, to, troughcolor, variable, width.
  6360.  
  6361. +++ Scale-coords(self, value=None):
  6362.     Return a tuple (X,Y) of the point along the centerline of the
  6363.     trough that corresponds to VALUE or the current value if None is
  6364.     given.
  6365.  
  6366. +++ Scale-get(self):
  6367.     Get the current value as integer or float.
  6368.  
  6369. +++ Scale-identify(self, x, y):
  6370.     Return where the point X,Y lies. Valid return values are "slider",
  6371.     "though1" and "though2".
  6372.  
  6373. +++ Scale-set(self, value):
  6374.     Set the value to VALUE.Scale-destroy(self):Scale-__contains__(self, key)
  6375.  
  6376. +++ Scale-__getitem__ = cget(self, key):
  6377.  
  6378. +++ Scale-__setitem__(self, key, value)
  6379.  
  6380. +++ Scale-__str__(self):
  6381.  
  6382. +++ Scale-after(self, ms, func=None, *args):
  6383.  
  6384. +++ Scale-after_cancel(self, id):
  6385.  
  6386. +++ Scale-after_idle(self, func, *args):
  6387.  
  6388. +++ Scale-bbox = grid_bbox(self, column=None):
  6389.  
  6390. +++ Scale-bell(self, display of=0):
  6391.  
  6392. +++ Scale-bind(self, sequence=None):Scale-bind_all(self, sequence=None):
  6393.  
  6394. +++ Scale-bind_class(self, className, sequence=None):
  6395.  
  6396. +++ Scale-bindtags(self, tagList=None):
  6397.  
  6398. +++ Scale-cget(self, key):
  6399.  
  6400. +++ Scale-clipboard_append(self, string, **kw):
  6401.  
  6402. +++ Scale-clipboard_clear(self, **kw):
  6403.  
  6404. +++ Scale-clipboard_get(self, **kw):Scale-colormodel(self, value=None):
  6405.  
  6406. +++ Scale-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
  6407.  
  6408. +++ Scale-config = configure(self, cnf=None, **kw):
  6409.  
  6410. +++ Scale-configure(self, cnf=None, **kw):
  6411.  
  6412. +++ Scale-deletecommand(self, name):
  6413.  
  6414. +++ Scale-event_add(self, virtual, *sequences):
  6415.  
  6416. +++ Scale-event_delete(self, virtual, *sequences):
  6417.  
  6418. +++ Scale-event_generate(self, sequence, **kw):
  6419.  
  6420. +++ Scale-event_info(self, virtual=None):
  6421.  
  6422. +++ Scale-focus = focus_set(self):
  6423.  
  6424. +++ Scale-focus_display of(self):
  6425.  
  6426. +++ Scale-focus_force(self):
  6427.  
  6428. +++ Scale-focus_get(self):
  6429.  
  6430. +++ Scale-focus_lastfor(self):
  6431.  
  6432. +++ Scale-focus_set(self):
  6433.  
  6434. +++ Scale-getboolean(self, s):
  6435.  
  6436. +++ Scale-getvar(self, name='PY_VAR'):
  6437.  
  6438. +++ Scale-grab_current(self):
  6439.  
  6440. +++ Scale-grab_release(self):
  6441.  
  6442. +++ Scale-grab_set(self):
  6443.  
  6444. +++ Scale-grab_set_global(self):
  6445.  
  6446. +++ Scale-grab_status(self):
  6447.  
  6448. +++ Scale-grid_bbox(self, column=None):
  6449.  
  6450. +++ Scale-grid_columnconfigure(self, index, cnf={}, **kw):
  6451.  
  6452. +++ Scale-grid_location(self, x, y):
  6453.  
  6454. +++ Scale-grid_propagate(self, flag=['_noarg_']):
  6455.  
  6456. +++ Scale-grid_rowconfigure(self, index, cnf={}, **kw):
  6457.  
  6458. +++ Scale-grid_size(self):
  6459.  
  6460. +++ Scale-grid_slaves(self, row=None):
  6461.  
  6462. +++ Scale-image_names(self):
  6463.  
  6464. +++ Scale-image_types(self):
  6465.  
  6466. +++ Scale-keys(self):
  6467.  
  6468. +++ Scale-lift = tkraise(self, aboveThis=None):
  6469.  
  6470. +++ Scale-lower(self, belowThis=None):
  6471.  
  6472. +++ Scale-mainloop(self, n=0):
  6473.  
  6474. +++ Scale-nametowidget(self, name):
  6475.  
  6476. +++ Scale-option_add(self, pattern, value, priority=None):
  6477.  
  6478. +++ Scale-option_clear(self):
  6479.  
  6480. +++ Scale-option_get(self, name, className):
  6481.  
  6482. +++ Scale-option_readfile(self, fileName, priority=None):
  6483.  
  6484. +++ Scale-pack_propagate(self, flag=['_noarg_']):
  6485.  
  6486. +++ Scale-pack_slaves(self):
  6487.  
  6488. +++ Scale-place_slaves(self):
  6489.  
  6490. +++ Scale-propagate = pack_propagate(self, flag=['_noarg_']):
  6491.  
  6492. +++ Scale-quit(self):
  6493.  
  6494. +++ Scale-register = _register(self, func, subst=1):
  6495.  
  6496. +++ Scale-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
  6497.  
  6498. +++ Scale-selection_clear(self, **kw):
  6499.  
  6500. +++ Scale-selection_get(self, **kw):
  6501.  
  6502. +++ Scale-selection_handle(self, command, **kw):
  6503.  
  6504. +++ Scale-selection_own(self, **kw):
  6505.  
  6506. +++ Scale-selection_own_get(self, **kw):
  6507.  
  6508. +++ Scale-send(self, interp, cmd, *args):
  6509.  
  6510. +++ Scale-setvar(self, name='1'):
  6511.  
  6512. +++ Scale-size = grid_size(self):
  6513.  
  6514. +++ Scale-slaves = pack_slaves(self):
  6515.  
  6516. +++ Scale-tk_bisque(self):
  6517.  
  6518. +++ Scale-tk_focusFollowsMouse(self):
  6519.  
  6520. +++ Scale-tk_focusNext(self):
  6521.  
  6522. +++ Scale-tk_focusPrev(self):
  6523.  
  6524. +++ Scale-tk_menuBar(self, *args):
  6525.  
  6526. +++ Scale-tk_setPalette(self, *args, **kw):
  6527.  
  6528. +++ Scale-tk_strictMotif(self, boolean=None):
  6529.  
  6530. +++ Scale-tkraise(self, aboveThis=None):
  6531.  
  6532. +++ Scale-unbind(self, sequence, funcid=None):
  6533.  
  6534. +++ Scale-unbind_all(self, sequence):
  6535.  
  6536. +++ Scale-unbind_class(self, className, sequence):
  6537.  
  6538. +++ Scale-update(self):
  6539.  
  6540. +++ Scale-update_idletasks(self):
  6541.  
  6542. +++ Scale-wait_variable(self, name='PY_VAR'):
  6543.  
  6544. +++ Scale-wait_visibility(self, window=None):
  6545.  
  6546. +++ Scale-wait_window(self, window=None):
  6547.  
  6548. +++ Scale-waitvar = wait_variable(self, name='PY_VAR'):
  6549.  
  6550. +++ Scale-winfo_atom(self, name, display of=0):
  6551.  
  6552. +++ Scale-winfo_atomname(self, id, display of=0):
  6553.  
  6554. +++ Scale-winfo_cells(self):
  6555.  
  6556. +++ Scale-winfo_children(self):
  6557.  
  6558. +++ Scale-winfo_class(self):
  6559.  
  6560. +++ Scale-winfo_colormapfull(self):
  6561.  
  6562. +++ Scale-winfo_containing(self, rootX, rootY, display of=0):
  6563.  
  6564. +++ Scale-winfo_depth(self):
  6565.  
  6566. +++ Scale-winfo_exists(self):
  6567.  
  6568. +++ Scale-winfo_fpixels(self, number):
  6569.  
  6570. +++ Scale-winfo_geometry(self):
  6571.  
  6572. +++ Scale-winfo_height(self):
  6573.  
  6574. +++ Scale-winfo_id(self):
  6575.  
  6576. +++ Scale-winfo_interps(self, display of=0):
  6577.  
  6578. +++ Scale-winfo_ismapped(self):
  6579.  
  6580. +++ Scale-winfo_manager(self):
  6581.  
  6582. +++ Scale-winfo_name(self):
  6583.  
  6584. +++ Scale-winfo_parent(self):
  6585.  
  6586. +++ Scale-winfo_pathname(self, id, display of=0):
  6587.  
  6588. +++ Scale-winfo_pixels(self, number):
  6589.  
  6590. +++ Scale-winfo_pointerx(self):
  6591.  
  6592. +++ Scale-winfo_pointerxy(self):
  6593.  
  6594. +++ Scale-winfo_pointery(self):
  6595.  
  6596. +++ Scale-winfo_reqheight(self):
  6597.  
  6598. +++ Scale-winfo_reqwidth(self):
  6599.  
  6600. +++ Scale-winfo_rgb(self, color):
  6601.  
  6602. +++ Scale-winfo_rootx(self):
  6603.  
  6604. +++ Scale-winfo_rooty(self):
  6605.  
  6606. +++ Scale-winfo_screen(self):
  6607.  
  6608. +++ Scale-winfo_screencells(self):
  6609.  
  6610. +++ Scale-winfo_screendepth(self):
  6611.  
  6612. +++ Scale-winfo_screenheight(self):
  6613.  
  6614. +++ Scale-winfo_screenmmheight(self):
  6615.  
  6616. +++ Scale-winfo_screenmmwidth(self):
  6617.  
  6618. +++ Scale-winfo_screenvisual(self):
  6619.  
  6620. +++ Scale-winfo_screenwidth(self):
  6621.  
  6622. +++ Scale-winfo_server(self):
  6623.  
  6624. +++ Scale-winfo_toplevel(self):
  6625.  
  6626. +++ Scale-winfo_viewable(self):
  6627.  
  6628. +++ Scale-winfo_visual(self):
  6629.  
  6630. +++ Scale-winfo_visualid(self):
  6631.  
  6632. +++ Scale-winfo_visualsavailable(self, includeids=0):
  6633.  
  6634. +++ Scale-winfo_vrootheight(self):
  6635.  
  6636. +++ Scale-winfo_vrootwidth(self):
  6637.  
  6638. +++ Scale-winfo_vrootx(self):
  6639.  
  6640. +++ Scale-winfo_vrooty(self):
  6641.  
  6642. +++ Scale-winfo_width(self):
  6643.  
  6644. +++ Scale-winfo_x(self):
  6645.  
  6646. +++ Scale-winfo_y(self):
  6647.  
  6648.  
  6649. +++ Scale-forget = pack_forget(self):
  6650.  
  6651. +++ Scale-info = pack_info(self):
  6652.  
  6653. +++ Scale-pack = pack_configure(self, cnf={}, **kw):
  6654.  
  6655. +++ Scale-pack_configure(self, cnf={}, **kw):
  6656.  
  6657. +++ Scale-pack_forget(self):
  6658.  
  6659. +++ Scale-pack_info(self):Scale-place = place_configure(self, cnf={}, **kw):
  6660.  
  6661. +++ Scale-place_configure(self, cnf={}, **kw):
  6662.  
  6663. +++ Scale-place_forget(self):
  6664.  
  6665. +++ Scale-place_info(self):Scale-grid = grid_configure(self, cnf={}, **kw):
  6666.  
  6667. +++ Scale-grid_configure(self, cnf={}, **kw):
  6668.  
  6669. +++ Scale-grid_forget(self):
  6670.  
  6671. +++ Scale-grid_info(self):
  6672.  
  6673. +++ Scale-grid_remove(self):
  6674.  
  6675. +++ Scale-location = grid_location(self, x, y):
  6676.     Scrollbar widget which displays a slider at a certain position.
  6677.     Scrollbar
  6678.  
  6679. +++ Scrollbar-__init__(self, master={}, **kw):
  6680.     Construct a scrollbar widget with the parent MASTER.
  6681.     Valid resource names: activebackground, activerelief,
  6682.     background, bd, bg, borderwidth, command, cursor,
  6683.     elementborderwidth, highlightbackground,
  6684.     highlightcolor, highlightthickness, jump, orient,
  6685.     relief, repeatdelay, repeatinterval, takefocus,
  6686.     troughcolor, width.
  6687.  
  6688. +++ Scrollbar-activate(self, index):
  6689.     Display the element at INDEX with activebackground and activerelief.
  6690.     INDEX can be "arrow1","slider" or "arrow2".
  6691.  
  6692. +++ Scrollbar-delta(self, deltax, deltay):
  6693.     Return the fractional change of the scrollbar setting if it
  6694.     would be moved by DELTAX or DELTAY pixels.
  6695.  
  6696. +++ Scrollbar-fraction(self, x, y):
  6697.     Return the fractional value which corresponds to a slider
  6698.     position of X,Y.
  6699.  
  6700. +++ Scrollbar-get(self):
  6701.     Return the current fractional values (upper and lower end)
  6702.     of the slider position.
  6703.  
  6704. +++ Scrollbar-identify(self, x, y):
  6705.     Return the element under position X,Y as one of
  6706.     "arrow1","slider","arrow2" or "".
  6707.  
  6708. +++ Scrollbar-set(self, *args):
  6709.     Set the fractional values of the slider position (upper and
  6710.     lower ends as value between 0 and 1).Scrollbar-destroy(self):Scrollbar-__contains__(self, key)
  6711.  
  6712. +++ Scrollbar-__getitem__ = cget(self, key):
  6713.  
  6714. +++ Scrollbar-__setitem__(self, key, value)
  6715.  
  6716. +++ Scrollbar-__str__(self):
  6717.  
  6718. +++ Scrollbar-after(self, ms, func=None, *args):
  6719.  
  6720. +++ Scrollbar-after_cancel(self, id):
  6721.  
  6722. +++ Scrollbar-after_idle(self, func, *args):
  6723.  
  6724. +++ Scrollbar-bbox = grid_bbox(self, column=None):
  6725.  
  6726. +++ Scrollbar-bell(self, display of=0):
  6727.  
  6728. +++ Scrollbar-bind(self, sequence=None):Scrollbar-bind_all(self, sequence=None):
  6729.  
  6730. +++ Scrollbar-bind_class(self, className, sequence=None):
  6731.  
  6732. +++ Scrollbar-bindtags(self, tagList=None):
  6733.  
  6734. +++ Scrollbar-cget(self, key):
  6735.  
  6736. +++ Scrollbar-clipboard_append(self, string, **kw):
  6737.  
  6738. +++ Scrollbar-clipboard_clear(self, **kw):
  6739.  
  6740. +++ Scrollbar-clipboard_get(self, **kw):Scrollbar-colormodel(self, value=None):
  6741.  
  6742. +++ Scrollbar-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
  6743.  
  6744. +++ Scrollbar-config = configure(self, cnf=None, **kw):
  6745.  
  6746. +++ Scrollbar-configure(self, cnf=None, **kw):
  6747.  
  6748. +++ Scrollbar-deletecommand(self, name):
  6749.  
  6750. +++ Scrollbar-event_add(self, virtual, *sequences):
  6751.  
  6752. +++ Scrollbar-event_delete(self, virtual, *sequences):
  6753.  
  6754. +++ Scrollbar-event_generate(self, sequence, **kw):
  6755.  
  6756. +++ Scrollbar-event_info(self, virtual=None):
  6757.  
  6758. +++ Scrollbar-focus = focus_set(self):
  6759.  
  6760. +++ Scrollbar-focus_display of(self):
  6761.  
  6762. +++ Scrollbar-focus_force(self):
  6763.  
  6764. +++ Scrollbar-focus_get(self):
  6765.  
  6766. +++ Scrollbar-focus_lastfor(self):
  6767.  
  6768. +++ Scrollbar-focus_set(self):
  6769.  
  6770. +++ Scrollbar-getboolean(self, s):
  6771.  
  6772. +++ Scrollbar-getvar(self, name='PY_VAR'):
  6773.  
  6774. +++ Scrollbar-grab_current(self):
  6775.  
  6776. +++ Scrollbar-grab_release(self):
  6777.  
  6778. +++ Scrollbar-grab_set(self):
  6779.  
  6780. +++ Scrollbar-grab_set_global(self):
  6781.  
  6782. +++ Scrollbar-grab_status(self):
  6783.  
  6784. +++ Scrollbar-grid_bbox(self, column=None):
  6785.  
  6786. +++ Scrollbar-grid_columnconfigure(self, index, cnf={}, **kw):
  6787.  
  6788. +++ Scrollbar-grid_location(self, x, y):
  6789.  
  6790. +++ Scrollbar-grid_propagate(self, flag=['_noarg_']):
  6791.  
  6792. +++ Scrollbar-grid_rowconfigure(self, index, cnf={}, **kw):
  6793.  
  6794. +++ Scrollbar-grid_size(self):
  6795.  
  6796. +++ Scrollbar-grid_slaves(self, row=None):
  6797.  
  6798. +++ Scrollbar-image_names(self):
  6799.  
  6800. +++ Scrollbar-image_types(self):
  6801.  
  6802. +++ Scrollbar-keys(self):
  6803.  
  6804. +++ Scrollbar-lift = tkraise(self, aboveThis=None):
  6805.  
  6806. +++ Scrollbar-lower(self, belowThis=None):
  6807.  
  6808. +++ Scrollbar-mainloop(self, n=0):
  6809.  
  6810. +++ Scrollbar-nametowidget(self, name):
  6811.  
  6812. +++ Scrollbar-option_add(self, pattern, value, priority=None):
  6813.  
  6814. +++ Scrollbar-option_clear(self):
  6815.  
  6816. +++ Scrollbar-option_get(self, name, className):
  6817.  
  6818. +++ Scrollbar-option_readfile(self, fileName, priority=None):
  6819.  
  6820. +++ Scrollbar-pack_propagate(self, flag=['_noarg_']):
  6821.  
  6822. +++ Scrollbar-pack_slaves(self):
  6823.  
  6824. +++ Scrollbar-place_slaves(self):
  6825.  
  6826. +++ Scrollbar-propagate = pack_propagate(self, flag=['_noarg_']):
  6827.  
  6828. +++ Scrollbar-quit(self):
  6829.  
  6830. +++ Scrollbar-register = _register(self, func, subst=1):
  6831.  
  6832. +++ Scrollbar-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
  6833.  
  6834. +++ Scrollbar-selection_clear(self, **kw):
  6835.  
  6836. +++ Scrollbar-selection_get(self, **kw):
  6837.  
  6838. +++ Scrollbar-selection_handle(self, command, **kw):
  6839.  
  6840. +++ Scrollbar-selection_own(self, **kw):
  6841.  
  6842. +++ Scrollbar-selection_own_get(self, **kw):
  6843.  
  6844. +++ Scrollbar-send(self, interp, cmd, *args):
  6845.  
  6846. +++ Scrollbar-setvar(self, name='1'):
  6847.  
  6848. +++ Scrollbar-size = grid_size(self):
  6849.  
  6850. +++ Scrollbar-slaves = pack_slaves(self):
  6851.  
  6852. +++ Scrollbar-tk_bisque(self):
  6853.  
  6854. +++ Scrollbar-tk_focusFollowsMouse(self):
  6855.  
  6856. +++ Scrollbar-tk_focusNext(self):
  6857.  
  6858. +++ Scrollbar-tk_focusPrev(self):
  6859.  
  6860. +++ Scrollbar-tk_menuBar(self, *args):
  6861.  
  6862. +++ Scrollbar-tk_setPalette(self, *args, **kw):
  6863.  
  6864. +++ Scrollbar-tk_strictMotif(self, boolean=None):
  6865.  
  6866. +++ Scrollbar-tkraise(self, aboveThis=None):
  6867.  
  6868. +++ Scrollbar-unbind(self, sequence, funcid=None):
  6869.  
  6870. +++ Scrollbar-unbind_all(self, sequence):
  6871.  
  6872. +++ Scrollbar-unbind_class(self, className, sequence):
  6873.  
  6874. +++ Scrollbar-update(self):
  6875.  
  6876. +++ Scrollbar-update_idletasks(self):
  6877.  
  6878. +++ Scrollbar-wait_variable(self, name='PY_VAR'):
  6879.  
  6880. +++ Scrollbar-wait_visibility(self, window=None):
  6881.  
  6882. +++ Scrollbar-wait_window(self, window=None):
  6883.  
  6884. +++ Scrollbar-waitvar = wait_variable(self, name='PY_VAR'):
  6885.  
  6886. +++ Scrollbar-winfo_atom(self, name, display of=0):
  6887.  
  6888. +++ Scrollbar-winfo_atomname(self, id, display of=0):
  6889.  
  6890. +++ Scrollbar-winfo_cells(self):
  6891.  
  6892. +++ Scrollbar-winfo_children(self):
  6893.  
  6894. +++ Scrollbar-winfo_class(self):
  6895.  
  6896. +++ Scrollbar-winfo_colormapfull(self):
  6897.  
  6898. +++ Scrollbar-winfo_containing(self, rootX, rootY, display of=0):
  6899.  
  6900. +++ Scrollbar-winfo_depth(self):
  6901.  
  6902. +++ Scrollbar-winfo_exists(self):
  6903.  
  6904. +++ Scrollbar-winfo_fpixels(self, number):
  6905.  
  6906. +++ Scrollbar-winfo_geometry(self):
  6907.  
  6908. +++ Scrollbar-winfo_height(self):
  6909.  
  6910. +++ Scrollbar-winfo_id(self):
  6911.  
  6912. +++ Scrollbar-winfo_interps(self, display of=0):
  6913.  
  6914. +++ Scrollbar-winfo_ismapped(self):
  6915.  
  6916. +++ Scrollbar-winfo_manager(self):
  6917.  
  6918. +++ Scrollbar-winfo_name(self):
  6919.  
  6920. +++ Scrollbar-winfo_parent(self):
  6921.  
  6922. +++ Scrollbar-winfo_pathname(self, id, display of=0):
  6923.  
  6924. +++ Scrollbar-winfo_pixels(self, number):
  6925.  
  6926. +++ Scrollbar-winfo_pointerx(self):
  6927.  
  6928. +++ Scrollbar-winfo_pointerxy(self):
  6929.  
  6930. +++ Scrollbar-winfo_pointery(self):
  6931.  
  6932. +++ Scrollbar-winfo_reqheight(self):
  6933.  
  6934. +++ Scrollbar-winfo_reqwidth(self):
  6935.  
  6936. +++ Scrollbar-winfo_rgb(self, color):
  6937.  
  6938. +++ Scrollbar-winfo_rootx(self):
  6939.  
  6940. +++ Scrollbar-winfo_rooty(self):
  6941.  
  6942. +++ Scrollbar-winfo_screen(self):
  6943.  
  6944. +++ Scrollbar-winfo_screencells(self):
  6945.  
  6946. +++ Scrollbar-winfo_screendepth(self):
  6947.  
  6948. +++ Scrollbar-winfo_screenheight(self):
  6949.  
  6950. +++ Scrollbar-winfo_screenmmheight(self):
  6951.  
  6952. +++ Scrollbar-winfo_screenmmwidth(self):
  6953.  
  6954. +++ Scrollbar-winfo_screenvisual(self):
  6955.  
  6956. +++ Scrollbar-winfo_screenwidth(self):
  6957.  
  6958. +++ Scrollbar-winfo_server(self):
  6959.  
  6960. +++ Scrollbar-winfo_toplevel(self):
  6961.  
  6962. +++ Scrollbar-winfo_viewable(self):
  6963.  
  6964. +++ Scrollbar-winfo_visual(self):
  6965.  
  6966. +++ Scrollbar-winfo_visualid(self):
  6967.  
  6968. +++ Scrollbar-winfo_visualsavailable(self, includeids=0):
  6969.  
  6970. +++ Scrollbar-winfo_vrootheight(self):
  6971.  
  6972. +++ Scrollbar-winfo_vrootwidth(self):
  6973.  
  6974. +++ Scrollbar-winfo_vrootx(self):
  6975.  
  6976. +++ Scrollbar-winfo_vrooty(self):
  6977.  
  6978. +++ Scrollbar-winfo_width(self):
  6979.  
  6980. +++ Scrollbar-winfo_x(self):
  6981.  
  6982. +++ Scrollbar-winfo_y(self):
  6983.  
  6984.  
  6985. +++ Scrollbar-forget = pack_forget(self):
  6986.  
  6987. +++ Scrollbar-info = pack_info(self):
  6988.  
  6989. +++ Scrollbar-pack = pack_configure(self, cnf={}, **kw):
  6990.  
  6991. +++ Scrollbar-pack_configure(self, cnf={}, **kw):
  6992.  
  6993. +++ Scrollbar-pack_forget(self):
  6994.  
  6995. +++ Scrollbar-pack_info(self):Scrollbar-place = place_configure(self, cnf={}, **kw):
  6996.  
  6997. +++ Scrollbar-place_configure(self, cnf={}, **kw):
  6998.  
  6999. +++ Scrollbar-place_forget(self):
  7000.  
  7001. +++ Scrollbar-place_info(self):Scrollbar-grid = grid_configure(self, cnf={}, **kw):
  7002.  
  7003. +++ Scrollbar-grid_configure(self, cnf={}, **kw):
  7004.  
  7005. +++ Scrollbar-grid_forget(self):
  7006.  
  7007. +++ Scrollbar-grid_info(self):
  7008.  
  7009. +++ Scrollbar-grid_remove(self):
  7010.  
  7011. +++ Scrollbar-location = grid_location(self, x, y):
  7012.     spinbox widget.
  7013.     Spinbox
  7014.  
  7015. +++ Spinbox-__init__(self, master={}, **kw):
  7016.     Construct a spinbox widget with the parent MASTER.
  7017.         activebackground, background, borderwidth,
  7018.         cursor, exportselection, font, foreground,
  7019.         highlightthickness, insertbackground,
  7020.         insertborderwidth, insertofftime,
  7021.         insertontime, insertwidth, justify, relief,
  7022.         repeatdelay, repeatinterval,
  7023.         selectbackground, selectborderwidth
  7024.         selectforeground, takefocus, textvariable
  7025.         xscrollcommand.
  7026.         buttonbackground, buttoncursor,
  7027.         buttondownrelief, buttonuprelief,
  7028.         command, disabledbackground,
  7029.         disabledforeground, format, from,
  7030.         invalidcommand, increment,
  7031.         readonlybackground, state, to,
  7032.         validate, validatecommand values,
  7033.         width, wrap,
  7034.  
  7035. +++ Spinbox-bbox(self, index):
  7036.     Return a tuple of X1,Y1,X2,Y2 coordinates for a
  7037.     rectangle which encloses the character given by index.
  7038.     The first two elements of the list give the x and y
  7039.     coordinates of the upper-left corner of the screen
  7040.     area covered by the character (in pixels relative
  7041.     to the widget) and the last two elements give the
  7042.     width and height of the character, in pixels. The
  7043.     bounding box may refer to a region outside the
  7044.     visible area of the window.
  7045.  
  7046. +++ Spinbox-delete(self, first, last=None):
  7047.     Delete one or more elements of the spinbox.
  7048.     First is the index of the first character to delete,
  7049.     and last is the index of the character just after
  7050.     the last one to delete. If last isn't specified it
  7051.     defaults to first+1, i.e. a single character is
  7052.     deleted.  This command returns an empty string.
  7053.  
  7054. +++ Spinbox-get(self):
  7055.     Returns the spinbox's string
  7056.  
  7057. +++ Spinbox-icursor(self, index):
  7058.     Alter the position of the insertion cursor.
  7059.     The insertion cursor will be displayed just before
  7060.     the character given by index. Returns an empty string
  7061.  
  7062. +++ Spinbox-identify(self, x, y):
  7063.     Returns the name of the widget at position x, y
  7064.     Return value is one of: none, buttondown, buttonup, entry
  7065.  
  7066. +++ Spinbox-index(self, index):
  7067.     Returns the numerical index corresponding to index
  7068.  
  7069. +++ Spinbox-insert(self, index, s):
  7070.     Insert string s at index
  7071.     Returns an empty string.
  7072.  
  7073. +++ Spinbox-invoke(self, element):
  7074.     Causes the specified element to be invoked
  7075.     The element could be buttondown or buttonup
  7076.     triggering the action associated with it.
  7077.  
  7078. +++ Spinbox-scan(self, *args):
  7079.  
  7080. +++ Spinbox-scan_dragto(self, x):
  7081.     Compute the difference between the given x argument
  7082.     and the x argument to the last scan mark command
  7083.     It then adjusts the view left or right by 10 times the
  7084.     difference in x-coordinates. This command is typically
  7085.     associated with mouse motion events in the widget, to
  7086.     produce the effect of dragging the spinbox at high speed
  7087.     through the window. The return value is an empty string.
  7088.  
  7089. +++ Spinbox-scan_mark(self, x):
  7090.     Records x and the current view in the spinbox window;
  7091.     used in conjunction with later scan dragto commands.
  7092.     Typically this command is associated with a mouse button
  7093.     press in the widget. It returns an empty string.
  7094.  
  7095. +++ Spinbox-selection(self, *args):
  7096.  
  7097. +++ Spinbox-selection_adjust(self, index):
  7098.     Locate the end of the selection nearest to the character
  7099.     given by index,
  7100.     Then adjust that end of the selection to be at index
  7101.     (i.e including but not going beyond index). The other
  7102.     end of the selection is made the anchor point for future
  7103.     select to commands. If the selection isn't currently in
  7104.     the spinbox, then a new selection is created to include
  7105.     the characters between index and the most recent selection
  7106.     anchor point, inclusive. Returns an empty string.
  7107.  
  7108. +++ Spinbox-selection_clear(self):
  7109.     Clear the selection
  7110.     If the selection isn't in this widget then the
  7111.     command has no effect. Returns an empty string.
  7112.  
  7113. +++ Spinbox-selection_element(self, element=None):
  7114.     Sets or gets the currently selected element.
  7115.     If a spinbutton element is specified, it will be
  7116.     displayed depressed
  7117.  
  7118. +++ Spinbox-destroy(self):Spinbox-__contains__(self, key)
  7119.  
  7120. +++ Spinbox-__getitem__ = cget(self, key):
  7121.  
  7122. +++ Spinbox-__setitem__(self, key, value)
  7123.  
  7124. +++ Spinbox-__str__(self):
  7125.  
  7126. +++ Spinbox-after(self, ms, func=None, *args):
  7127.  
  7128. +++ Spinbox-after_cancel(self, id):
  7129.  
  7130. +++ Spinbox-after_idle(self, func, *args):
  7131.  
  7132. +++ Spinbox-bell(self, display of=0):
  7133.  
  7134. +++ Spinbox-bind(self, sequence=None):Spinbox-bind_all(self, sequence=None):
  7135.  
  7136. +++ Spinbox-bind_class(self, className, sequence=None):
  7137.  
  7138. +++ Spinbox-bindtags(self, tagList=None):
  7139.  
  7140. +++ Spinbox-cget(self, key):
  7141.  
  7142. +++ Spinbox-clipboard_append(self, string, **kw):
  7143.  
  7144. +++ Spinbox-clipboard_clear(self, **kw):
  7145.  
  7146. +++ Spinbox-clipboard_get(self, **kw):Spinbox-colormodel(self, value=None):
  7147.  
  7148. +++ Spinbox-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
  7149.  
  7150. +++ Spinbox-config = configure(self, cnf=None, **kw):
  7151.  
  7152. +++ Spinbox-configure(self, cnf=None, **kw):
  7153.  
  7154. +++ Spinbox-deletecommand(self, name):
  7155.  
  7156. +++ Spinbox-event_add(self, virtual, *sequences):
  7157.  
  7158. +++ Spinbox-event_delete(self, virtual, *sequences):
  7159.  
  7160. +++ Spinbox-event_generate(self, sequence, **kw):
  7161.  
  7162. +++ Spinbox-event_info(self, virtual=None):
  7163.  
  7164. +++ Spinbox-focus = focus_set(self):
  7165.  
  7166. +++ Spinbox-focus_display of(self):
  7167.  
  7168. +++ Spinbox-focus_force(self):
  7169.  
  7170. +++ Spinbox-focus_get(self):
  7171.  
  7172. +++ Spinbox-focus_lastfor(self):
  7173.  
  7174. +++ Spinbox-focus_set(self):
  7175.  
  7176. +++ Spinbox-getboolean(self, s):
  7177.  
  7178. +++ Spinbox-getvar(self, name='PY_VAR'):
  7179.  
  7180. +++ Spinbox-grab_current(self):
  7181.  
  7182. +++ Spinbox-grab_release(self):
  7183.  
  7184. +++ Spinbox-grab_set(self):
  7185.  
  7186. +++ Spinbox-grab_set_global(self):
  7187.  
  7188. +++ Spinbox-grab_status(self):
  7189.  
  7190. +++ Spinbox-grid_bbox(self, column=None):
  7191.  
  7192. +++ Spinbox-grid_columnconfigure(self, index, cnf={}, **kw):
  7193.  
  7194. +++ Spinbox-grid_location(self, x, y):
  7195.  
  7196. +++ Spinbox-grid_propagate(self, flag=['_noarg_']):
  7197.  
  7198. +++ Spinbox-grid_rowconfigure(self, index, cnf={}, **kw):
  7199.  
  7200. +++ Spinbox-grid_size(self):
  7201.  
  7202. +++ Spinbox-grid_slaves(self, row=None):
  7203.  
  7204. +++ Spinbox-image_names(self):
  7205.  
  7206. +++ Spinbox-image_types(self):
  7207.  
  7208. +++ Spinbox-keys(self):
  7209.  
  7210. +++ Spinbox-lift = tkraise(self, aboveThis=None):
  7211.  
  7212. +++ Spinbox-lower(self, belowThis=None):
  7213.  
  7214. +++ Spinbox-mainloop(self, n=0):
  7215.  
  7216. +++ Spinbox-nametowidget(self, name):
  7217.  
  7218. +++ Spinbox-option_add(self, pattern, value, priority=None):
  7219.  
  7220. +++ Spinbox-option_clear(self):
  7221.  
  7222. +++ Spinbox-option_get(self, name, className):
  7223.  
  7224. +++ Spinbox-option_readfile(self, fileName, priority=None):
  7225.  
  7226. +++ Spinbox-pack_propagate(self, flag=['_noarg_']):
  7227.  
  7228. +++ Spinbox-pack_slaves(self):
  7229.  
  7230. +++ Spinbox-place_slaves(self):
  7231.  
  7232. +++ Spinbox-propagate = pack_propagate(self, flag=['_noarg_']):
  7233.  
  7234. +++ Spinbox-quit(self):
  7235.  
  7236. +++ Spinbox-register = _register(self, func, subst=1):
  7237.  
  7238. +++ Spinbox-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
  7239.  
  7240. +++ Spinbox-selection_get(self, **kw):
  7241.  
  7242. +++ Spinbox-selection_handle(self, command, **kw):
  7243.  
  7244. +++ Spinbox-selection_own(self, **kw):
  7245.  
  7246. +++ Spinbox-selection_own_get(self, **kw):
  7247.  
  7248. +++ Spinbox-send(self, interp, cmd, *args):
  7249.  
  7250. +++ Spinbox-setvar(self, name='1'):
  7251.  
  7252. +++ Spinbox-size = grid_size(self):
  7253.  
  7254. +++ Spinbox-slaves = pack_slaves(self):
  7255.  
  7256. +++ Spinbox-tk_bisque(self):
  7257.  
  7258. +++ Spinbox-tk_focusFollowsMouse(self):
  7259.  
  7260. +++ Spinbox-tk_focusNext(self):
  7261.  
  7262. +++ Spinbox-tk_focusPrev(self):
  7263.  
  7264. +++ Spinbox-tk_menuBar(self, *args):
  7265.  
  7266. +++ Spinbox-tk_setPalette(self, *args, **kw):
  7267.  
  7268. +++ Spinbox-tk_strictMotif(self, boolean=None):
  7269.  
  7270. +++ Spinbox-tkraise(self, aboveThis=None):
  7271.  
  7272. +++ Spinbox-unbind(self, sequence, funcid=None):
  7273.  
  7274. +++ Spinbox-unbind_all(self, sequence):
  7275.  
  7276. +++ Spinbox-unbind_class(self, className, sequence):
  7277.  
  7278. +++ Spinbox-update(self):
  7279.  
  7280. +++ Spinbox-update_idletasks(self):
  7281.  
  7282. +++ Spinbox-wait_variable(self, name='PY_VAR'):
  7283.  
  7284. +++ Spinbox-wait_visibility(self, window=None):
  7285.  
  7286. +++ Spinbox-wait_window(self, window=None):
  7287.  
  7288. +++ Spinbox-waitvar = wait_variable(self, name='PY_VAR'):
  7289.  
  7290. +++ Spinbox-winfo_atom(self, name, display of=0):
  7291.  
  7292. +++ Spinbox-winfo_atomname(self, id, display of=0):
  7293.  
  7294. +++ Spinbox-winfo_cells(self):
  7295.  
  7296. +++ Spinbox-winfo_children(self):
  7297.  
  7298. +++ Spinbox-winfo_class(self):
  7299.  
  7300. +++ Spinbox-winfo_colormapfull(self):
  7301.  
  7302. +++ Spinbox-winfo_containing(self, rootX, rootY, display of=0):
  7303.  
  7304. +++ Spinbox-winfo_depth(self):
  7305.  
  7306. +++ Spinbox-winfo_exists(self):
  7307.  
  7308. +++ Spinbox-winfo_fpixels(self, number):
  7309.  
  7310. +++ Spinbox-winfo_geometry(self):
  7311.  
  7312. +++ Spinbox-winfo_height(self):
  7313.  
  7314. +++ Spinbox-winfo_id(self):
  7315.  
  7316. +++ Spinbox-winfo_interps(self, display of=0):
  7317.  
  7318. +++ Spinbox-winfo_ismapped(self):
  7319.  
  7320. +++ Spinbox-winfo_manager(self):
  7321.  
  7322. +++ Spinbox-winfo_name(self):
  7323.  
  7324. +++ Spinbox-winfo_parent(self):
  7325.  
  7326. +++ Spinbox-winfo_pathname(self, id, display of=0):
  7327.  
  7328. +++ Spinbox-winfo_pixels(self, number):
  7329.  
  7330. +++ Spinbox-winfo_pointerx(self):
  7331.  
  7332. +++ Spinbox-winfo_pointerxy(self):
  7333.  
  7334. +++ Spinbox-winfo_pointery(self):
  7335.  
  7336. +++ Spinbox-winfo_reqheight(self):
  7337.  
  7338. +++ Spinbox-winfo_reqwidth(self):
  7339.  
  7340. +++ Spinbox-winfo_rgb(self, color):
  7341.  
  7342. +++ Spinbox-winfo_rootx(self):
  7343.  
  7344. +++ Spinbox-winfo_rooty(self):
  7345.  
  7346. +++ Spinbox-winfo_screen(self):
  7347.  
  7348. +++ Spinbox-winfo_screencells(self):
  7349.  
  7350. +++ Spinbox-winfo_screendepth(self):
  7351.  
  7352. +++ Spinbox-winfo_screenheight(self):
  7353.  
  7354. +++ Spinbox-winfo_screenmmheight(self):
  7355.  
  7356. +++ Spinbox-winfo_screenmmwidth(self):
  7357.  
  7358. +++ Spinbox-winfo_screenvisual(self):
  7359.  
  7360. +++ Spinbox-winfo_screenwidth(self):
  7361.  
  7362. +++ Spinbox-winfo_server(self):
  7363.  
  7364. +++ Spinbox-winfo_toplevel(self):
  7365.  
  7366. +++ Spinbox-winfo_viewable(self):
  7367.  
  7368. +++ Spinbox-winfo_visual(self):
  7369.  
  7370. +++ Spinbox-winfo_visualid(self):
  7371.  
  7372. +++ Spinbox-winfo_visualsavailable(self, includeids=0):
  7373.  
  7374. +++ Spinbox-winfo_vrootheight(self):
  7375.  
  7376. +++ Spinbox-winfo_vrootwidth(self):
  7377.  
  7378. +++ Spinbox-winfo_vrootx(self):
  7379.  
  7380. +++ Spinbox-winfo_vrooty(self):
  7381.  
  7382. +++ Spinbox-winfo_width(self):
  7383.  
  7384. +++ Spinbox-winfo_x(self):
  7385.  
  7386. +++ Spinbox-winfo_y(self):
  7387.  
  7388.  
  7389. +++ Spinbox-forget = pack_forget(self):
  7390.  
  7391. +++ Spinbox-info = pack_info(self):
  7392.  
  7393. +++ Spinbox-pack = pack_configure(self, cnf={}, **kw):
  7394.  
  7395. +++ Spinbox-pack_configure(self, cnf={}, **kw):
  7396.  
  7397. +++ Spinbox-pack_forget(self):
  7398.  
  7399. +++ Spinbox-pack_info(self):Spinbox-place = place_configure(self, cnf={}, **kw):
  7400.  
  7401. +++ Spinbox-place_configure(self, cnf={}, **kw):
  7402.  
  7403. +++ Spinbox-place_forget(self):
  7404.  
  7405. +++ Spinbox-place_info(self):Spinbox-grid = grid_configure(self, cnf={}, **kw):
  7406.  
  7407. +++ Spinbox-grid_configure(self, cnf={}, **kw):
  7408.  
  7409. +++ Spinbox-grid_forget(self):
  7410.  
  7411. +++ Spinbox-grid_info(self):
  7412.  
  7413. +++ Spinbox-grid_remove(self):
  7414.  
  7415. +++ Spinbox-location = grid_location(self, x, y):Spinbox-xview(self, *args):
  7416.  
  7417. +++ Spinbox-xview_moveto(self, fraction):
  7418.  
  7419. +++ Spinbox-xview_scroll(self, number, what):
  7420.     Value holder for strings variables.
  7421.  
  7422. +++ StringVar-__init__(self, master=None):
  7423.     Construct a string variable.
  7424.     VALUE is an optional value (defaults to "")
  7425.  
  7426. +++ StringVar-get(self):
  7427.     Return value of variable as string.StringVar-__del__(self):
  7428.  
  7429. +++ StringVar-__eq__(self, other):
  7430.  
  7431. +++ StringVar-__str__(self):
  7432.  
  7433. +++ StringVar-set(self, value):
  7434.  
  7435. +++ StringVar-trace = trace_variable(self, mode, callback):
  7436.  
  7437. +++ StringVar-trace_variable(self, mode, callback):
  7438.  
  7439. +++ StringVar-trace_vdelete(self, mode, cbname):
  7440.  
  7441. +++ StringVar-trace_vinfo(self):
  7442.  
  7443. Button *****
  7444.  
  7445.     Studbutton
  7446.  
  7447. +++ Studbutton-__init__(self, master={}, **kw)Methods inherited from Button:
  7448.  
  7449. +++ Studbutton-flash(self):
  7450.  
  7451. +++ Studbutton-invoke(self):
  7452.  
  7453. +++ Studbutton-tkButtonDown(self, *dummy)
  7454.  
  7455. +++ Studbutton-tkButtonEnter(self, *dummy)
  7456.  
  7457. +++ Studbutton-tkButtonInvoke(self, *dummy)
  7458.  
  7459. +++ Studbutton-tkButtonLeave(self, *dummy)
  7460.  
  7461. +++ Studbutton-tkButtonUp(self, *dummy)Studbutton-destroy(self):Studbutton-__contains__(self, key)
  7462.  
  7463. +++ Studbutton-__getitem__ = cget(self, key):
  7464.  
  7465. +++ Studbutton-__setitem__(self, key, value)
  7466.  
  7467. +++ Studbutton-__str__(self):
  7468.  
  7469. +++ Studbutton-after(self, ms, func=None, *args):
  7470.  
  7471. +++ Studbutton-after_cancel(self, id):
  7472.  
  7473. +++ Studbutton-after_idle(self, func, *args):
  7474.  
  7475. +++ Studbutton-bbox = grid_bbox(self, column=None):
  7476.  
  7477. +++ Studbutton-bell(self, display of=0):
  7478.  
  7479. +++ Studbutton-bind(self, sequence=None):Studbutton-bind_all(self, sequence=None):
  7480.  
  7481. +++ Studbutton-bind_class(self, className, sequence=None):
  7482.  
  7483. +++ Studbutton-bindtags(self, tagList=None):
  7484.  
  7485. +++ Studbutton-cget(self, key):
  7486.  
  7487. +++ Studbutton-clipboard_append(self, string, **kw):
  7488.  
  7489. +++ Studbutton-clipboard_clear(self, **kw):
  7490.  
  7491. +++ Studbutton-clipboard_get(self, **kw):Studbutton-colormodel(self, value=None):
  7492.  
  7493. +++ Studbutton-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
  7494.  
  7495. +++ Studbutton-config = configure(self, cnf=None, **kw):
  7496.  
  7497. +++ Studbutton-configure(self, cnf=None, **kw):
  7498.  
  7499. +++ Studbutton-deletecommand(self, name):
  7500.  
  7501. +++ Studbutton-event_add(self, virtual, *sequences):
  7502.  
  7503. +++ Studbutton-event_delete(self, virtual, *sequences):
  7504.  
  7505. +++ Studbutton-event_generate(self, sequence, **kw):
  7506.  
  7507. +++ Studbutton-event_info(self, virtual=None):
  7508.  
  7509. +++ Studbutton-focus = focus_set(self):
  7510.  
  7511. +++ Studbutton-focus_display of(self):
  7512.  
  7513. +++ Studbutton-focus_force(self):
  7514.  
  7515. +++ Studbutton-focus_get(self):
  7516.  
  7517. +++ Studbutton-focus_lastfor(self):
  7518.  
  7519. +++ Studbutton-focus_set(self):
  7520.  
  7521. +++ Studbutton-getboolean(self, s):
  7522.  
  7523. +++ Studbutton-getvar(self, name='PY_VAR'):
  7524.  
  7525. +++ Studbutton-grab_current(self):
  7526.  
  7527. +++ Studbutton-grab_release(self):
  7528.  
  7529. +++ Studbutton-grab_set(self):
  7530.  
  7531. +++ Studbutton-grab_set_global(self):
  7532.  
  7533. +++ Studbutton-grab_status(self):
  7534.  
  7535. +++ Studbutton-grid_bbox(self, column=None):
  7536.  
  7537. +++ Studbutton-grid_columnconfigure(self, index, cnf={}, **kw):
  7538.  
  7539. +++ Studbutton-grid_location(self, x, y):
  7540.  
  7541. +++ Studbutton-grid_propagate(self, flag=['_noarg_']):
  7542.  
  7543. +++ Studbutton-grid_rowconfigure(self, index, cnf={}, **kw):
  7544.  
  7545. +++ Studbutton-grid_size(self):
  7546.  
  7547. +++ Studbutton-grid_slaves(self, row=None):
  7548.  
  7549. +++ Studbutton-image_names(self):
  7550.  
  7551. +++ Studbutton-image_types(self):
  7552.  
  7553. +++ Studbutton-keys(self):
  7554.  
  7555. +++ Studbutton-lift = tkraise(self, aboveThis=None):
  7556.  
  7557. +++ Studbutton-lower(self, belowThis=None):
  7558.  
  7559. +++ Studbutton-mainloop(self, n=0):
  7560.  
  7561. +++ Studbutton-nametowidget(self, name):
  7562.  
  7563. +++ Studbutton-option_add(self, pattern, value, priority=None):
  7564.  
  7565. +++ Studbutton-option_clear(self):
  7566.  
  7567. +++ Studbutton-option_get(self, name, className):
  7568.  
  7569. +++ Studbutton-option_readfile(self, fileName, priority=None):
  7570.  
  7571. +++ Studbutton-pack_propagate(self, flag=['_noarg_']):
  7572.  
  7573. +++ Studbutton-pack_slaves(self):
  7574.  
  7575. +++ Studbutton-place_slaves(self):
  7576.  
  7577. +++ Studbutton-propagate = pack_propagate(self, flag=['_noarg_']):
  7578.  
  7579. +++ Studbutton-quit(self):
  7580.  
  7581. +++ Studbutton-register = _register(self, func, subst=1):
  7582.  
  7583. +++ Studbutton-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
  7584.  
  7585. +++ Studbutton-selection_clear(self, **kw):
  7586.  
  7587. +++ Studbutton-selection_get(self, **kw):
  7588.  
  7589. +++ Studbutton-selection_handle(self, command, **kw):
  7590.  
  7591. +++ Studbutton-selection_own(self, **kw):
  7592.  
  7593. +++ Studbutton-selection_own_get(self, **kw):
  7594.  
  7595. +++ Studbutton-send(self, interp, cmd, *args):
  7596.  
  7597. +++ Studbutton-setvar(self, name='1'):
  7598.  
  7599. +++ Studbutton-size = grid_size(self):
  7600.  
  7601. +++ Studbutton-slaves = pack_slaves(self):
  7602.  
  7603. +++ Studbutton-tk_bisque(self):
  7604.  
  7605. +++ Studbutton-tk_focusFollowsMouse(self):
  7606.  
  7607. +++ Studbutton-tk_focusNext(self):
  7608.  
  7609. +++ Studbutton-tk_focusPrev(self):
  7610.  
  7611. +++ Studbutton-tk_menuBar(self, *args):
  7612.  
  7613. +++ Studbutton-tk_setPalette(self, *args, **kw):
  7614.  
  7615. +++ Studbutton-tk_strictMotif(self, boolean=None):
  7616.  
  7617. +++ Studbutton-tkraise(self, aboveThis=None):
  7618.  
  7619. +++ Studbutton-unbind(self, sequence, funcid=None):
  7620.  
  7621. +++ Studbutton-unbind_all(self, sequence):
  7622.  
  7623. +++ Studbutton-unbind_class(self, className, sequence):
  7624.  
  7625. +++ Studbutton-update(self):
  7626.  
  7627. +++ Studbutton-update_idletasks(self):
  7628.  
  7629. +++ Studbutton-wait_variable(self, name='PY_VAR'):
  7630.  
  7631. +++ Studbutton-wait_visibility(self, window=None):
  7632.  
  7633. +++ Studbutton-wait_window(self, window=None):
  7634.  
  7635. +++ Studbutton-waitvar = wait_variable(self, name='PY_VAR'):
  7636.  
  7637. +++ Studbutton-winfo_atom(self, name, display of=0):
  7638.  
  7639. +++ Studbutton-winfo_atomname(self, id, display of=0):
  7640.  
  7641. +++ Studbutton-winfo_cells(self):
  7642.  
  7643. +++ Studbutton-winfo_children(self):
  7644.  
  7645. +++ Studbutton-winfo_class(self):
  7646.  
  7647. +++ Studbutton-winfo_colormapfull(self):
  7648.  
  7649. +++ Studbutton-winfo_containing(self, rootX, rootY, display of=0):
  7650.  
  7651. +++ Studbutton-winfo_depth(self):
  7652.  
  7653. +++ Studbutton-winfo_exists(self):
  7654.  
  7655. +++ Studbutton-winfo_fpixels(self, number):
  7656.  
  7657. +++ Studbutton-winfo_geometry(self):
  7658.  
  7659. +++ Studbutton-winfo_height(self):
  7660.  
  7661. +++ Studbutton-winfo_id(self):
  7662.  
  7663. +++ Studbutton-winfo_interps(self, display of=0):
  7664.  
  7665. +++ Studbutton-winfo_ismapped(self):
  7666.  
  7667. +++ Studbutton-winfo_manager(self):
  7668.  
  7669. +++ Studbutton-winfo_name(self):
  7670.  
  7671. +++ Studbutton-winfo_parent(self):
  7672.  
  7673. +++ Studbutton-winfo_pathname(self, id, display of=0):
  7674.  
  7675. +++ Studbutton-winfo_pixels(self, number):
  7676.  
  7677. +++ Studbutton-winfo_pointerx(self):
  7678.  
  7679. +++ Studbutton-winfo_pointerxy(self):
  7680.  
  7681. +++ Studbutton-winfo_pointery(self):
  7682.  
  7683. +++ Studbutton-winfo_reqheight(self):
  7684.  
  7685. +++ Studbutton-winfo_reqwidth(self):
  7686.  
  7687. +++ Studbutton-winfo_rgb(self, color):
  7688.  
  7689. +++ Studbutton-winfo_rootx(self):
  7690.  
  7691. +++ Studbutton-winfo_rooty(self):
  7692.  
  7693. +++ Studbutton-winfo_screen(self):
  7694.  
  7695. +++ Studbutton-winfo_screencells(self):
  7696.  
  7697. +++ Studbutton-winfo_screendepth(self):
  7698.  
  7699. +++ Studbutton-winfo_screenheight(self):
  7700.  
  7701. +++ Studbutton-winfo_screenmmheight(self):
  7702.  
  7703. +++ Studbutton-winfo_screenmmwidth(self):
  7704.  
  7705. +++ Studbutton-winfo_screenvisual(self):
  7706.  
  7707. +++ Studbutton-winfo_screenwidth(self):
  7708.  
  7709. +++ Studbutton-winfo_server(self):
  7710.  
  7711. +++ Studbutton-winfo_toplevel(self):
  7712.  
  7713. +++ Studbutton-winfo_viewable(self):
  7714.  
  7715. +++ Studbutton-winfo_visual(self):
  7716.  
  7717. +++ Studbutton-winfo_visualid(self):
  7718.  
  7719. +++ Studbutton-winfo_visualsavailable(self, includeids=0):
  7720.  
  7721. +++ Studbutton-winfo_vrootheight(self):
  7722.  
  7723. +++ Studbutton-winfo_vrootwidth(self):
  7724.  
  7725. +++ Studbutton-winfo_vrootx(self):
  7726.  
  7727. +++ Studbutton-winfo_vrooty(self):
  7728.  
  7729. +++ Studbutton-winfo_width(self):
  7730.  
  7731. +++ Studbutton-winfo_x(self):
  7732.  
  7733. +++ Studbutton-winfo_y(self):
  7734.  
  7735.  
  7736. +++ Studbutton-forget = pack_forget(self):
  7737.  
  7738. +++ Studbutton-info = pack_info(self):
  7739.  
  7740. +++ Studbutton-pack = pack_configure(self, cnf={}, **kw):
  7741.  
  7742. +++ Studbutton-pack_configure(self, cnf={}, **kw):
  7743.  
  7744. +++ Studbutton-pack_forget(self):
  7745.  
  7746. +++ Studbutton-pack_info(self):Studbutton-place = place_configure(self, cnf={}, **kw):
  7747.  
  7748. +++ Studbutton-place_configure(self, cnf={}, **kw):
  7749.  
  7750. +++ Studbutton-place_forget(self):
  7751.  
  7752. +++ Studbutton-place_info(self):Studbutton-grid = grid_configure(self, cnf={}, **kw):
  7753.  
  7754. +++ Studbutton-grid_configure(self, cnf={}, **kw):
  7755.  
  7756. +++ Studbutton-grid_forget(self):
  7757.  
  7758. +++ Studbutton-grid_info(self):
  7759.  
  7760. +++ Studbutton-grid_remove(self):
  7761.  
  7762. +++ Studbutton-location = grid_location(self, x, y):
  7763.     Text widget which can display text in various forms.
  7764.     Text
  7765.  
  7766. +++ Text-__init__(self, master={}, **kw):
  7767.     Construct a text widget with the parent MASTER.
  7768.         background, borderwidth, cursor,
  7769.         exportselection, font, foreground,
  7770.         insertontime, insertwidth, padx, pady,
  7771.         relief, selectbackground,
  7772.         selectborderwidth, selectforeground,
  7773.         setgrid, takefocus,
  7774.         xscrollcommand, yscrollcommand,
  7775.         autoseparators, height, maxundo,
  7776.         spacing1, spacing2, spacing3,
  7777.         state, tabs, undo, width, wrap,
  7778.  
  7779. +++ Text-bbox(self, *args):
  7780.     Return a tuple of (x,y,width,height) which gives the bounding
  7781.     box of the visible part of the character at the index in ARGS.
  7782.  
  7783. +++ Text-compare(self, index1, op, index2):
  7784.     Return whether between index INDEX1 and index INDEX2 the
  7785.     relation OP is satisfied. OP is one of <, <=, ==, >=, >, or !=.
  7786.  
  7787. +++ Text-debug(self, boolean=None):
  7788.     Turn on the internal consistency checks of the B-Tree inside the text
  7789.     widget according to BOOLEAN.
  7790.  
  7791. +++ Text-delete(self, index1, index2=None):
  7792.     Delete the characters between INDEX1 and INDEX2 (not included).
  7793.  
  7794. +++ Text-dlineinfo(self, index):
  7795.     Return tuple (x,y,width,height,baseline) giving the bounding box
  7796.     and baseline position of the visible part of the line containing
  7797.     the character at INDEX.
  7798.  
  7799. +++ Text-dump(self, index1, index2=None, **kw):
  7800.     Return the contents of the widget between index1 and index2.
  7801.     The type of contents returned in filtered based on the keyword
  7802.     parameters; if 'all', 'image', 'mark', 'tag', 'text', or 'window' are
  7803.     given and true, then the corresponding items are returned. The result
  7804.     is a list of triples of the form (key, value, index). If none of the
  7805.     keywords are true then 'all' is used by default.
  7806.     If the 'command' argument is given, it is called once for each element
  7807.     of the list of triples, with the values of each triple serving as the
  7808.     arguments to the function. In this case the list is not returned.
  7809.  
  7810. +++ Text-edit(self, *args):
  7811.     Internal method
  7812.     This method controls the undo mechanism and
  7813.     the modified flag. The exact behavior of the
  7814.     command depends on the option argument that
  7815.     follows the edit argument. The following forms
  7816.     of the command are currently supported:
  7817.     edit_modified, edit_redo, edit_reset, edit_separator
  7818.     and edit_undo
  7819.  
  7820. +++ Text-edit_modified(self, arg=None):
  7821.     Get or Set the modified flag
  7822.     If arg is not specified, returns the modified
  7823.     flag of the widget. The insert, delete, edit undo and
  7824.     edit redo commands or the user can set or clear the
  7825.     modified flag. If boolean is specified, sets the
  7826.     modified flag of the widget to arg.
  7827.  
  7828. +++ Text-edit_redo(self):
  7829.     Redo the last undone edit
  7830.     When the undo option is true, reapplies the last
  7831.     undone edits provided no other edits were done since
  7832.     then. Generates an error when the redo stack is empty.
  7833.     Does nothing when the undo option is false.
  7834.  
  7835. +++ Text-edit_reset(self):
  7836.     Clears the undo and redo stacks
  7837.  
  7838. +++ Text-edit_separator(self):
  7839.     Inserts a separator (boundary) on the undo stack.
  7840.     Does nothing when the undo option is false
  7841.  
  7842. +++ Text-edit_undo(self):
  7843.     Undoes the last edit action
  7844.     If the undo option is true. An edit action is defined
  7845.     as all the insert and delete commands that are recorded
  7846.     on the undo stack in between two separators. Generates
  7847.     an error when the undo stack is empty. Does nothing
  7848.     when the undo option is false
  7849.  
  7850. +++ Text-get(self, index1, index2=None):
  7851.     Return the text from INDEX1 to INDEX2 (not included).
  7852.  
  7853. +++ Text-image_cget(self, index, option):
  7854.     Return the value of OPTION of an embedded image at INDEX.
  7855.  
  7856. +++ Text-image_configure(self, index, cnf=None, **kw):
  7857.     Configure an embedded image at INDEX.
  7858.  
  7859. +++ Text-image_create(self, index, cnf={}, **kw):
  7860.     Create an embedded image at INDEX.
  7861.  
  7862. +++ Text-image_names(self):
  7863.     Return all names of embedded images in this widget.
  7864.  
  7865. +++ Text-index(self, index):
  7866.     Return the index in the form line.char for INDEX.
  7867.  
  7868. +++ Text-insert(self, index, chars, *args):
  7869.     Insert CHARS before the characters at INDEX. An additional
  7870.     tag can be given in ARGS. Additional CHARS and tags can follow in ARGS.
  7871.  
  7872. +++ Text-mark_gravity(self, markName, direction=None):
  7873.     Change the gravity of a mark MARKNAME to DIRECTION (LEFT or RIGHT).
  7874.     Return the current value if None is given for DIRECTION.
  7875.  
  7876. +++ Text-mark_names(self):
  7877.     Return all mark names.
  7878.  
  7879. +++ Text-mark_next(self, index):
  7880.     Return the name of the next mark after INDEX.
  7881.  
  7882. +++ Text-mark_previous(self, index):
  7883.     Return the name of the previous mark before INDEX.
  7884.  
  7885. +++ Text-mark_set(self, markName, index):
  7886.     Set mark MARKNAME before the character at INDEX.
  7887.  
  7888. +++ Text-mark_unset(self, *markNames):
  7889.     Delete all marks in MARKNAMES.
  7890.  
  7891. +++ Text-scan_dragto(self, x, y):
  7892.     Adjust the view of the text to 10 times the
  7893.  
  7894. +++ Text-scan_mark(self, x, y):
  7895.  
  7896. +++ Text-search(self, pattern, index, stopindex=None):
  7897.     Search PATTERN beginning from INDEX until STOPINDEX.
  7898.     Return the index of the first character of a match or an
  7899.     empty string.
  7900.  
  7901. +++ Text-see(self, index):
  7902.     Scroll such that the character at INDEX is visible.
  7903.  
  7904. +++ Text-tag_add(self, tagName, index1, *args):
  7905.     Add tag TAGNAME to all characters between INDEX1 and index2 in ARGS.
  7906.     Additional pairs of indices may follow in ARGS.
  7907.  
  7908. +++ Text-tag_bind(self, tagName, sequence, func, add=None):
  7909.     Bind to all characters with TAGNAME at event SEQUENCE a call to function FUNC.
  7910.  
  7911. +++ Text-tag_cget(self, tagName, option):
  7912.     Return the value of OPTION for tag TAGNAME.
  7913.  
  7914. +++ Text-tag_config = tag_configure(self, tagName, cnf=None, **kw)
  7915.  
  7916. +++ Text-tag_configure(self, tagName, cnf=None, **kw):
  7917.     Configure a tag TAGNAME.
  7918.  
  7919. +++ Text-tag_delete(self, *tagNames):
  7920.     Delete all tags in TAGNAMES.
  7921.  
  7922. +++ Text-tag_lower(self, tagName, belowThis=None):
  7923.     Change the priority of tag TAGNAME such that it is lower
  7924.     than the priority of BELOWTHIS.
  7925.  
  7926. +++ Text-tag_names(self, index=None):
  7927.     Return a list of all tag names.
  7928.  
  7929. +++ Text-tag_nextrange(self, tagName, index1, index2=None):
  7930.     Return a list of start and end index for the first sequence of
  7931.     characters between INDEX1 and INDEX2 which all have tag TAGNAME.
  7932.     The text is searched forward from INDEX1.
  7933.  
  7934. +++ Text-tag_prevrange(self, tagName, index1, index2=None):
  7935.     The text is searched backwards from INDEX1.
  7936.  
  7937. +++ Text-tag_raise(self, tagName, aboveThis=None):
  7938.     Change the priority of tag TAGNAME such that it is higher
  7939.     than the priority of ABOVETHIS.
  7940.  
  7941. +++ Text-tag_ranges(self, tagName):
  7942.     Return a list of ranges of text which have tag TAGNAME.
  7943.  
  7944. +++ Text-tag_remove(self, tagName, index1, index2=None):
  7945.     Remove tag TAGNAME from all characters between INDEX1 and INDEX2.
  7946.  
  7947. +++ Text-tag_unbind(self, tagName, sequence, funcid=None):
  7948.     Unbind for all characters with TAGNAME for event SEQUENCE  the
  7949.  
  7950. +++ Text-tk_textBackspace(self)
  7951.  
  7952. +++ Text-tk_textIndexCloser(self, a, b, c)
  7953.  
  7954. +++ Text-tk_textResetAnchor(self, index)
  7955.  
  7956. +++ Text-tk_textSelectTo(self, index)
  7957.  
  7958. +++ Text-window_cget(self, index, option):
  7959.     Return the value of OPTION of an embedded window at INDEX.
  7960.  
  7961. +++ Text-window_config = window_configure(self, index, cnf=None, **kw)
  7962.  
  7963. +++ Text-window_configure(self, index, cnf=None, **kw):
  7964.     Configure an embedded window at INDEX.
  7965.  
  7966. +++ Text-window_create(self, index, cnf={}, **kw):
  7967.     Create a window at INDEX.
  7968.  
  7969. +++ Text-window_names(self):
  7970.     Return all names of embedded windows in this widget.
  7971.  
  7972. +++ Text-yview_pickplace(self, *what):
  7973.     Obsolete function, use see.Text-destroy(self):Text-__contains__(self, key)
  7974.  
  7975. +++ Text-__getitem__ = cget(self, key):
  7976.  
  7977. +++ Text-__setitem__(self, key, value)
  7978.  
  7979. +++ Text-__str__(self):
  7980.  
  7981. +++ Text-after(self, ms, func=None, *args):
  7982.  
  7983. +++ Text-after_cancel(self, id):
  7984.  
  7985. +++ Text-after_idle(self, func, *args):
  7986.  
  7987. +++ Text-bell(self, display of=0):
  7988.  
  7989. +++ Text-bind(self, sequence=None):Text-bind_all(self, sequence=None):
  7990.  
  7991. +++ Text-bind_class(self, className, sequence=None):
  7992.  
  7993. +++ Text-bindtags(self, tagList=None):
  7994.  
  7995. +++ Text-cget(self, key):
  7996.  
  7997. +++ Text-clipboard_append(self, string, **kw):
  7998.  
  7999. +++ Text-clipboard_clear(self, **kw):
  8000.  
  8001. +++ Text-clipboard_get(self, **kw):Text-colormodel(self, value=None):
  8002.  
  8003. +++ Text-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
  8004.  
  8005. +++ Text-config = configure(self, cnf=None, **kw):
  8006.  
  8007. +++ Text-configure(self, cnf=None, **kw):
  8008.  
  8009. +++ Text-deletecommand(self, name):
  8010.  
  8011. +++ Text-event_add(self, virtual, *sequences):
  8012.  
  8013. +++ Text-event_delete(self, virtual, *sequences):
  8014.  
  8015. +++ Text-event_generate(self, sequence, **kw):
  8016.  
  8017. +++ Text-event_info(self, virtual=None):
  8018.  
  8019. +++ Text-focus = focus_set(self):
  8020.  
  8021. +++ Text-focus_display of(self):
  8022.  
  8023. +++ Text-focus_force(self):
  8024.  
  8025. +++ Text-focus_get(self):
  8026.  
  8027. +++ Text-focus_lastfor(self):
  8028.  
  8029. +++ Text-focus_set(self):
  8030.  
  8031. +++ Text-getboolean(self, s):
  8032.  
  8033. +++ Text-getvar(self, name='PY_VAR'):
  8034.  
  8035. +++ Text-grab_current(self):
  8036.  
  8037. +++ Text-grab_release(self):
  8038.  
  8039. +++ Text-grab_set(self):
  8040.  
  8041. +++ Text-grab_set_global(self):
  8042.  
  8043. +++ Text-grab_status(self):
  8044.  
  8045. +++ Text-grid_bbox(self, column=None):
  8046.  
  8047. +++ Text-grid_columnconfigure(self, index, cnf={}, **kw):
  8048.  
  8049. +++ Text-grid_location(self, x, y):
  8050.  
  8051. +++ Text-grid_propagate(self, flag=['_noarg_']):
  8052.  
  8053. +++ Text-grid_rowconfigure(self, index, cnf={}, **kw):
  8054.  
  8055. +++ Text-grid_size(self):
  8056.  
  8057. +++ Text-grid_slaves(self, row=None):
  8058.  
  8059. +++ Text-image_types(self):
  8060.  
  8061. +++ Text-keys(self):
  8062.  
  8063. +++ Text-lift = tkraise(self, aboveThis=None):
  8064.  
  8065. +++ Text-lower(self, belowThis=None):
  8066.  
  8067. +++ Text-mainloop(self, n=0):
  8068.  
  8069. +++ Text-nametowidget(self, name):
  8070.  
  8071. +++ Text-option_add(self, pattern, value, priority=None):
  8072.  
  8073. +++ Text-option_clear(self):
  8074.  
  8075. +++ Text-option_get(self, name, className):
  8076.  
  8077. +++ Text-option_readfile(self, fileName, priority=None):
  8078.  
  8079. +++ Text-pack_propagate(self, flag=['_noarg_']):
  8080.  
  8081. +++ Text-pack_slaves(self):
  8082.  
  8083. +++ Text-place_slaves(self):
  8084.  
  8085. +++ Text-propagate = pack_propagate(self, flag=['_noarg_']):
  8086.  
  8087. +++ Text-quit(self):
  8088.  
  8089. +++ Text-register = _register(self, func, subst=1):
  8090.  
  8091. +++ Text-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
  8092.  
  8093. +++ Text-selection_clear(self, **kw):
  8094.  
  8095. +++ Text-selection_get(self, **kw):
  8096.  
  8097. +++ Text-selection_handle(self, command, **kw):
  8098.  
  8099. +++ Text-selection_own(self, **kw):
  8100.  
  8101. +++ Text-selection_own_get(self, **kw):
  8102.  
  8103. +++ Text-send(self, interp, cmd, *args):
  8104.  
  8105. +++ Text-setvar(self, name='1'):
  8106.  
  8107. +++ Text-size = grid_size(self):
  8108.  
  8109. +++ Text-slaves = pack_slaves(self):
  8110.  
  8111. +++ Text-tk_bisque(self):
  8112.  
  8113. +++ Text-tk_focusFollowsMouse(self):
  8114.  
  8115. +++ Text-tk_focusNext(self):
  8116.  
  8117. +++ Text-tk_focusPrev(self):
  8118.  
  8119. +++ Text-tk_menuBar(self, *args):
  8120.  
  8121. +++ Text-tk_setPalette(self, *args, **kw):
  8122.  
  8123. +++ Text-tk_strictMotif(self, boolean=None):
  8124.  
  8125. +++ Text-tkraise(self, aboveThis=None):
  8126.  
  8127. +++ Text-unbind(self, sequence, funcid=None):
  8128.  
  8129. +++ Text-unbind_all(self, sequence):
  8130.  
  8131. +++ Text-unbind_class(self, className, sequence):
  8132.  
  8133. +++ Text-update(self):
  8134.  
  8135. +++ Text-update_idletasks(self):
  8136.  
  8137. +++ Text-wait_variable(self, name='PY_VAR'):
  8138.  
  8139. +++ Text-wait_visibility(self, window=None):
  8140.  
  8141. +++ Text-wait_window(self, window=None):
  8142.  
  8143. +++ Text-waitvar = wait_variable(self, name='PY_VAR'):
  8144.  
  8145. +++ Text-winfo_atom(self, name, display of=0):
  8146.  
  8147. +++ Text-winfo_atomname(self, id, display of=0):
  8148.  
  8149. +++ Text-winfo_cells(self):
  8150.  
  8151. +++ Text-winfo_children(self):
  8152.  
  8153. +++ Text-winfo_class(self):
  8154.  
  8155. +++ Text-winfo_colormapfull(self):
  8156.  
  8157. +++ Text-winfo_containing(self, rootX, rootY, display of=0):
  8158.  
  8159. +++ Text-winfo_depth(self):
  8160.  
  8161. +++ Text-winfo_exists(self):
  8162.  
  8163. +++ Text-winfo_fpixels(self, number):
  8164.  
  8165. +++ Text-winfo_geometry(self):
  8166.  
  8167. +++ Text-winfo_height(self):
  8168.  
  8169. +++ Text-winfo_id(self):
  8170.  
  8171. +++ Text-winfo_interps(self, display of=0):
  8172.  
  8173. +++ Text-winfo_ismapped(self):
  8174.  
  8175. +++ Text-winfo_manager(self):
  8176.  
  8177. +++ Text-winfo_name(self):
  8178.  
  8179. +++ Text-winfo_parent(self):
  8180.  
  8181. +++ Text-winfo_pathname(self, id, display of=0):
  8182.  
  8183. +++ Text-winfo_pixels(self, number):
  8184.  
  8185. +++ Text-winfo_pointerx(self):
  8186.  
  8187. +++ Text-winfo_pointerxy(self):
  8188.  
  8189. +++ Text-winfo_pointery(self):
  8190.  
  8191. +++ Text-winfo_reqheight(self):
  8192.  
  8193. +++ Text-winfo_reqwidth(self):
  8194.  
  8195. +++ Text-winfo_rgb(self, color):
  8196.  
  8197. +++ Text-winfo_rootx(self):
  8198.  
  8199. +++ Text-winfo_rooty(self):
  8200.  
  8201. +++ Text-winfo_screen(self):
  8202.  
  8203. +++ Text-winfo_screencells(self):
  8204.  
  8205. +++ Text-winfo_screendepth(self):
  8206.  
  8207. +++ Text-winfo_screenheight(self):
  8208.  
  8209. +++ Text-winfo_screenmmheight(self):
  8210.  
  8211. +++ Text-winfo_screenmmwidth(self):
  8212.  
  8213. +++ Text-winfo_screenvisual(self):
  8214.  
  8215. +++ Text-winfo_screenwidth(self):
  8216.  
  8217. +++ Text-winfo_server(self):
  8218.  
  8219. +++ Text-winfo_toplevel(self):
  8220.  
  8221. +++ Text-winfo_viewable(self):
  8222.  
  8223. +++ Text-winfo_visual(self):
  8224.  
  8225. +++ Text-winfo_visualid(self):
  8226.  
  8227. +++ Text-winfo_visualsavailable(self, includeids=0):
  8228.  
  8229. +++ Text-winfo_vrootheight(self):
  8230.  
  8231. +++ Text-winfo_vrootwidth(self):
  8232.  
  8233. +++ Text-winfo_vrootx(self):
  8234.  
  8235. +++ Text-winfo_vrooty(self):
  8236.  
  8237. +++ Text-winfo_width(self):
  8238.  
  8239. +++ Text-winfo_x(self):
  8240.  
  8241. +++ Text-winfo_y(self):
  8242.  
  8243.  
  8244. +++ Text-forget = pack_forget(self):
  8245.  
  8246. +++ Text-info = pack_info(self):
  8247.  
  8248. +++ Text-pack = pack_configure(self, cnf={}, **kw):
  8249.  
  8250. +++ Text-pack_configure(self, cnf={}, **kw):
  8251.  
  8252. +++ Text-pack_forget(self):
  8253.  
  8254. +++ Text-pack_info(self):Text-place = place_configure(self, cnf={}, **kw):
  8255.  
  8256. +++ Text-place_configure(self, cnf={}, **kw):
  8257.  
  8258. +++ Text-place_forget(self):
  8259.  
  8260. +++ Text-place_info(self):Text-grid = grid_configure(self, cnf={}, **kw):
  8261.  
  8262. +++ Text-grid_configure(self, cnf={}, **kw):
  8263.  
  8264. +++ Text-grid_forget(self):
  8265.  
  8266. +++ Text-grid_info(self):
  8267.  
  8268. +++ Text-grid_remove(self):
  8269.  
  8270. +++ Text-location = grid_location(self, x, y):Text-xview(self, *args):
  8271.  
  8272. +++ Text-xview_moveto(self, fraction):
  8273.  
  8274. +++ Text-xview_scroll(self, number, what):Text-yview(self, *args):
  8275.  
  8276. +++ Text-yview_moveto(self, fraction):
  8277.  
  8278. +++ Text-yview_scroll(self, number, what):
  8279.  
  8280. Wm *****
  8281.  
  8282.     Toplevel widget of Tk which represents mostly the main window
  8283.     of an application. It has an associated Tcl interpreter.
  8284.  
  8285.     Wm
  8286.  
  8287. +++ Tk-__getattr__(self, attr):
  8288.     Delegate attribute access to the interpreter object
  8289.  
  8290. +++ Tk-__init__(self, screenName=None):
  8291.     Return a new Toplevel widget on screen SCREENNAME. A new Tcl interpreter will
  8292.     be created. BASENAME will be used for the identification of the profile file (see
  8293.     readprofile).
  8294.     It is constructed from sys.argv[0] without extensions if None is given. CLASSNAME
  8295.     is the name of the widget class.
  8296.  
  8297. +++ Tk-destroy(self):
  8298.     Destroy this and all descendants widgets. This will
  8299.     end the application of this Tcl interpreter.
  8300.  
  8301. +++ Tk-loadtk(self)
  8302.  
  8303. +++ Tk-readprofile(self, baseName, className):
  8304.     Internal function. It reads BASENAME.tcl and CLASSNAME.tcl into
  8305.     the Tcl Interpreter and calls execfile on BASENAME.py and CLASSNAME.py if
  8306.     such a file exists in the home directory.
  8307.  
  8308. +++ Tk-report_callback_exception(self, exc, val, tb):
  8309.     Report callback exception on sys.stderr.
  8310.     Applications may want to override this internal function, and
  8311.     should when sys.stderr is None
  8312.  
  8313. ...
  8314. Methods inherited from Misc:
  8315.  
  8316. +++ Tk-__contains__(self, key)
  8317.  
  8318. +++ Tk-__getitem__ = cget(self, key):
  8319.  
  8320. +++ Tk-__setitem__(self, key, value)
  8321.  
  8322. +++ Tk-__str__(self):
  8323.  
  8324. +++ Tk-after(self, ms, func=None, *args):
  8325.  
  8326. +++ Tk-after_cancel(self, id):
  8327.  
  8328. +++ Tk-after_idle(self, func, *args):
  8329.  
  8330. +++ Tk-bbox = grid_bbox(self, column=None):
  8331.  
  8332. +++ Tk-bell(self, display of=0):
  8333.  
  8334. +++ Tk-bind(self, sequence=None):Tk-bind_all(self, sequence=None):
  8335.  
  8336. +++ Tk-bind_class(self, className, sequence=None):
  8337.  
  8338. +++ Tk-bindtags(self, tagList=None):
  8339.  
  8340. +++ Tk-cget(self, key):
  8341.  
  8342. +++ Tk-clipboard_append(self, string, **kw):
  8343.  
  8344. +++ Tk-clipboard_clear(self, **kw):
  8345.  
  8346. +++ Tk-clipboard_get(self, **kw):Tk-colormodel(self, value=None):
  8347.  
  8348. +++ Tk-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
  8349.  
  8350. +++ Tk-config = configure(self, cnf=None, **kw):
  8351.  
  8352. +++ Tk-configure(self, cnf=None, **kw):
  8353.  
  8354. +++ Tk-deletecommand(self, name):
  8355.  
  8356. +++ Tk-event_add(self, virtual, *sequences):
  8357.  
  8358. +++ Tk-event_delete(self, virtual, *sequences):
  8359.  
  8360. +++ Tk-event_generate(self, sequence, **kw):
  8361.  
  8362. +++ Tk-event_info(self, virtual=None):
  8363.  
  8364. +++ Tk-focus = focus_set(self):
  8365.  
  8366. +++ Tk-focus_display of(self):
  8367.  
  8368. +++ Tk-focus_force(self):
  8369.  
  8370. +++ Tk-focus_get(self):
  8371.  
  8372. +++ Tk-focus_lastfor(self):
  8373.  
  8374. +++ Tk-focus_set(self):
  8375.  
  8376. +++ Tk-getboolean(self, s):
  8377.  
  8378. +++ Tk-getvar(self, name='PY_VAR'):
  8379.  
  8380. +++ Tk-grab_current(self):
  8381.  
  8382. +++ Tk-grab_release(self):
  8383.  
  8384. +++ Tk-grab_set(self):
  8385.  
  8386. +++ Tk-grab_set_global(self):
  8387.  
  8388. +++ Tk-grab_status(self):
  8389.  
  8390. +++ Tk-grid_bbox(self, column=None):
  8391.  
  8392. +++ Tk-grid_columnconfigure(self, index, cnf={}, **kw):
  8393.  
  8394. +++ Tk-grid_location(self, x, y):
  8395.  
  8396. +++ Tk-grid_propagate(self, flag=['_noarg_']):
  8397.  
  8398. +++ Tk-grid_rowconfigure(self, index, cnf={}, **kw):
  8399.  
  8400. +++ Tk-grid_size(self):
  8401.  
  8402. +++ Tk-grid_slaves(self, row=None):
  8403.  
  8404. +++ Tk-image_names(self):
  8405.  
  8406. +++ Tk-image_types(self):
  8407.  
  8408. +++ Tk-keys(self):
  8409.  
  8410. +++ Tk-lift = tkraise(self, aboveThis=None):
  8411.  
  8412. +++ Tk-lower(self, belowThis=None):
  8413.  
  8414. +++ Tk-mainloop(self, n=0):
  8415.  
  8416. +++ Tk-nametowidget(self, name):
  8417.  
  8418. +++ Tk-option_add(self, pattern, value, priority=None):
  8419.  
  8420. +++ Tk-option_clear(self):
  8421.  
  8422. +++ Tk-option_get(self, name, className):
  8423.  
  8424. +++ Tk-option_readfile(self, fileName, priority=None):
  8425.  
  8426. +++ Tk-pack_propagate(self, flag=['_noarg_']):
  8427.  
  8428. +++ Tk-pack_slaves(self):
  8429.  
  8430. +++ Tk-place_slaves(self):
  8431.  
  8432. +++ Tk-propagate = pack_propagate(self, flag=['_noarg_']):
  8433.  
  8434. +++ Tk-quit(self):
  8435.  
  8436. +++ Tk-register = _register(self, func, subst=1):
  8437.  
  8438. +++ Tk-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
  8439.  
  8440. +++ Tk-selection_clear(self, **kw):
  8441.  
  8442. +++ Tk-selection_get(self, **kw):
  8443.  
  8444. +++ Tk-selection_handle(self, command, **kw):
  8445.  
  8446. +++ Tk-selection_own(self, **kw):
  8447.  
  8448. +++ Tk-selection_own_get(self, **kw):
  8449.  
  8450. +++ Tk-send(self, interp, cmd, *args):
  8451.  
  8452. +++ Tk-setvar(self, name='1'):
  8453.  
  8454. +++ Tk-size = grid_size(self):
  8455.  
  8456. +++ Tk-slaves = pack_slaves(self):
  8457.  
  8458. +++ Tk-tk_bisque(self):
  8459.  
  8460. +++ Tk-tk_focusFollowsMouse(self):
  8461.  
  8462. +++ Tk-tk_focusNext(self):
  8463.  
  8464. +++ Tk-tk_focusPrev(self):
  8465.  
  8466. +++ Tk-tk_menuBar(self, *args):
  8467.  
  8468. +++ Tk-tk_setPalette(self, *args, **kw):
  8469.  
  8470. +++ Tk-tk_strictMotif(self, boolean=None):
  8471.  
  8472. +++ Tk-tkraise(self, aboveThis=None):
  8473.  
  8474. +++ Tk-unbind(self, sequence, funcid=None):
  8475.  
  8476. +++ Tk-unbind_all(self, sequence):
  8477.  
  8478. +++ Tk-unbind_class(self, className, sequence):
  8479.  
  8480. +++ Tk-update(self):
  8481.  
  8482. +++ Tk-update_idletasks(self):
  8483.  
  8484. +++ Tk-wait_variable(self, name='PY_VAR'):
  8485.  
  8486. +++ Tk-wait_visibility(self, window=None):
  8487.  
  8488. +++ Tk-wait_window(self, window=None):
  8489.  
  8490. +++ Tk-waitvar = wait_variable(self, name='PY_VAR'):
  8491.  
  8492. +++ Tk-winfo_atom(self, name, display of=0):
  8493.  
  8494. +++ Tk-winfo_atomname(self, id, display of=0):
  8495.  
  8496. +++ Tk-winfo_cells(self):
  8497.  
  8498. +++ Tk-winfo_children(self):
  8499.  
  8500. +++ Tk-winfo_class(self):
  8501.  
  8502. +++ Tk-winfo_colormapfull(self):
  8503.  
  8504. +++ Tk-winfo_containing(self, rootX, rootY, display of=0):
  8505.  
  8506. +++ Tk-winfo_depth(self):
  8507.  
  8508. +++ Tk-winfo_exists(self):
  8509.  
  8510. +++ Tk-winfo_fpixels(self, number):
  8511.  
  8512. +++ Tk-winfo_geometry(self):
  8513.  
  8514. +++ Tk-winfo_height(self):
  8515.  
  8516. +++ Tk-winfo_id(self):
  8517.  
  8518. +++ Tk-winfo_interps(self, display of=0):
  8519.  
  8520. +++ Tk-winfo_ismapped(self):
  8521.  
  8522. +++ Tk-winfo_manager(self):
  8523.  
  8524. +++ Tk-winfo_name(self):
  8525.  
  8526. +++ Tk-winfo_parent(self):
  8527.  
  8528. +++ Tk-winfo_pathname(self, id, display of=0):
  8529.  
  8530. +++ Tk-winfo_pixels(self, number):
  8531.  
  8532. +++ Tk-winfo_pointerx(self):
  8533.  
  8534. +++ Tk-winfo_pointerxy(self):
  8535.  
  8536. +++ Tk-winfo_pointery(self):
  8537.  
  8538. +++ Tk-winfo_reqheight(self):
  8539.  
  8540. +++ Tk-winfo_reqwidth(self):
  8541.  
  8542. +++ Tk-winfo_rgb(self, color):
  8543.  
  8544. +++ Tk-winfo_rootx(self):
  8545.  
  8546. +++ Tk-winfo_rooty(self):
  8547.  
  8548. +++ Tk-winfo_screen(self):
  8549.  
  8550. +++ Tk-winfo_screencells(self):
  8551.  
  8552. +++ Tk-winfo_screendepth(self):
  8553.  
  8554. +++ Tk-winfo_screenheight(self):
  8555.  
  8556. +++ Tk-winfo_screenmmheight(self):
  8557.  
  8558. +++ Tk-winfo_screenmmwidth(self):
  8559.  
  8560. +++ Tk-winfo_screenvisual(self):
  8561.  
  8562. +++ Tk-winfo_screenwidth(self):
  8563.  
  8564. +++ Tk-winfo_server(self):
  8565.  
  8566. +++ Tk-winfo_toplevel(self):
  8567.  
  8568. +++ Tk-winfo_viewable(self):
  8569.  
  8570. +++ Tk-winfo_visual(self):
  8571.  
  8572. +++ Tk-winfo_visualid(self):
  8573.  
  8574. +++ Tk-winfo_visualsavailable(self, includeids=0):
  8575.  
  8576. +++ Tk-winfo_vrootheight(self):
  8577.  
  8578. +++ Tk-winfo_vrootwidth(self):
  8579.  
  8580. +++ Tk-winfo_vrootx(self):
  8581.  
  8582. +++ Tk-winfo_vrooty(self):
  8583.  
  8584. +++ Tk-winfo_width(self):
  8585.  
  8586. +++ Tk-winfo_x(self):
  8587.  
  8588. +++ Tk-winfo_y(self):
  8589.  
  8590. ...
  8591. Methods inherited from Wm:
  8592.  
  8593. +++ Tk-aspect = wm_aspect(self, minNumer=None):
  8594.     Instruct the window manager to set the aspect ratio (width/height)
  8595.     of this widget to be between MINNUMER/MINDENOM and MAXNUMER/MAXDENOM. Return a tuple
  8596.     of the actual values if no argument is given.
  8597.  
  8598. +++ Tk-attributes = wm_attributes(self, *args):
  8599.     This subcommand returns or sets platform specific attributes
  8600.     The first form returns a list of the platform specific flags and
  8601.     their values. The second form returns the value for the specific
  8602.     option. The third form sets one or more of the values. The values
  8603.     are as follows:
  8604.     On Windows, -disabled gets or sets whether the window is in a
  8605.     disabled state. -toolwindow gets or sets the style of the window
  8606.     to toolwindow (as defined in the MSDN). -topmost gets or sets
  8607.     whether this is a topmost window (displays above all other
  8608.     windows).
  8609.     On Macintosh, XXXXX
  8610.     On Unix, there are currently no special attribute values.
  8611.  
  8612. +++ Tk-client = wm_client(self, name=None):
  8613.     Store NAME in WM_CLIENT_MACHINE property of this widget. Return
  8614.     current value.
  8615.  
  8616. +++ Tk-colormapwindows = wm_colormapwindows(self, *wlist):
  8617.     Store list of window names (WLIST) into WM_COLORMAPWINDOWS property
  8618.     of this widget. This list contains windows whose colormaps differ from their
  8619.     parents. Return current list of widgets if WLIST is empty.
  8620.  
  8621. +++ Tk-command = wm_command(self, value=None):
  8622.     Store VALUE in WM_COMMAND property. It is the command
  8623.     which shall be used to invoke the application. Return current
  8624.     command if VALUE is None.
  8625.  
  8626. +++ Tk-deiconify = wm_deiconify(self):
  8627.     Deiconify this widget. If it was never mapped it will not be mapped.
  8628.     On Windows it will raise this widget and give it the focus.
  8629.  
  8630. +++ Tk-focusmodel = wm_focusmodel(self, model=None):
  8631.     Set focus model to MODEL. "active" means that this widget will claim
  8632.     the focus itself, "passive" means that the window manager shall give
  8633.     the focus. Return current focus model if MODEL is None.
  8634.  
  8635. +++ Tk-frame = wm_frame(self):
  8636.     Return identifier for decorative frame of this widget if present.
  8637.  
  8638. +++ Tk-geometry = wm_geometry(self, newGeometry=None):
  8639.     Set geometry to NEWGEOMETRY of the form =widthxheight+x+y. Return
  8640.     current value if None is given.
  8641.  
  8642. +++ Tk-grid = wm_grid(self, baseWidth=None):
  8643.     Instruct the window manager that this widget shall only be
  8644.     resized on grid boundaries. WIDTHINC and HEIGHTINC are the width and
  8645.     height of a grid unit in pixels. BASEWIDTH and BASEHEIGHT are the
  8646.     number of grid units requested in Tk_GeometryRequest.
  8647.  
  8648. +++ Tk-group = wm_group(self, pathName=None):
  8649.     Set the group leader widgets for related widgets to PATHNAME. Return
  8650.     the group leader of this widget if None is given.
  8651.  
  8652. +++ Tk-iconbitmap = wm_iconbitmap(self, bitmap=None):
  8653.     Set bitmap for the iconified widget to BITMAP. Return
  8654.     the bitmap if None is given.
  8655.     Under Windows, the DEFAULT parameter can be used to set the icon
  8656.     for the widget and any descendents that don't have an icon set
  8657.     explicitly.  DEFAULT can be the relative path to a .ico file
  8658.     (example: root.iconbitmap(default='myicon.ico') ).  See Tk
  8659.     documentation for more information.
  8660.  
  8661. +++ Tk-iconify = wm_iconify(self):
  8662.     Display widget as icon.
  8663.  
  8664. +++ Tk-iconmask = wm_iconmask(self, bitmap=None):
  8665.     Set mask for the icon bitmap of this widget. Return the
  8666.     mask if None is given.
  8667.  
  8668. +++ Tk-iconname = wm_iconname(self, newName=None):
  8669.     Set the name of the icon for this widget. Return the name if
  8670.     None is given.
  8671.  
  8672. +++ Tk-iconposition = wm_iconposition(self, x=None):
  8673.     Set the position of the icon of this widget to X and Y. Return
  8674.     a tuple of the current values of X and X if None is given.
  8675.  
  8676. +++ Tk-iconwindow = wm_iconwindow(self, pathName=None):
  8677.     Set widget PATHNAME to be displayed instead of icon. Return the current
  8678.     value if None is given.
  8679.  
  8680. +++ Tk-maxsize = wm_maxsize(self, width=None):
  8681.     Set max WIDTH and HEIGHT for this widget. If the window is gridded
  8682.     the values are given in grid units. Return the current values if None
  8683.     is given.
  8684.  
  8685. +++ Tk-minsize = wm_minsize(self, width=None):
  8686.     Set min WIDTH and HEIGHT for this widget. If the window is gridded
  8687.  
  8688. +++ Tk-overrideredirect = wm_overrideredirect(self, boolean=None):
  8689.     Instruct the window manager to ignore this widget
  8690.     if BOOLEAN is given with 1. Return the current value if None
  8691.  
  8692. +++ Tk-positionfrom = wm_positionfrom(self, who=None):
  8693.     Instruct the window manager that the position of this widget shall
  8694.     be defined by the user if WHO is "user", and by its own policy if WHO is
  8695.     "program".
  8696.  
  8697. +++ Tk-protocol = wm_protocol(self, name=None):
  8698.     Bind function FUNC to command NAME for this widget.
  8699.     Return the function bound to NAME if None is given. NAME could be
  8700.     e.g. "WM_SAVE_YOURSELF" or "WM_DELETE_WINDOW".
  8701.  
  8702. +++ Tk-resizable = wm_resizable(self, width=None):
  8703.     Instruct the window manager whether this width can be resized
  8704.     in WIDTH or HEIGHT. Both values are boolean values.
  8705.  
  8706. +++ Tk-sizefrom = wm_sizefrom(self, who=None):
  8707.     Instruct the window manager that the size of this widget shall
  8708.  
  8709. +++ Tk-state = wm_state(self, newstate=None):
  8710.     Query or set the state of this widget as one of normal, icon,
  8711.     iconic (see wm_iconwindow), withdrawn, or zoomed (Windows only).
  8712.  
  8713. +++ Tk-title = wm_title(self, string=None):
  8714.     Set the title of this widget.
  8715.  
  8716. +++ Tk-transient = wm_transient(self, master=None):
  8717.     Instruct the window manager that this widget is transient
  8718.     with regard to widget MASTER.
  8719.  
  8720. +++ Tk-withdraw = wm_withdraw(self):
  8721.     Withdraw this widget from the screen such that it is unmapped
  8722.     and forgotten by the window manager. Re-draw it with wm_deiconify.
  8723.  
  8724. +++ Tk-wm_aspect(self, minNumer=None):
  8725.  
  8726. +++ Tk-wm_attributes(self, *args):Tk-wm_client(self, name=None):
  8727.  
  8728. +++ Tk-wm_colormapwindows(self, *wlist):
  8729.  
  8730. +++ Tk-wm_command(self, value=None):
  8731.  
  8732. +++ Tk-wm_deiconify(self):
  8733.  
  8734. +++ Tk-wm_focusmodel(self, model=None):
  8735.  
  8736. +++ Tk-wm_frame(self):
  8737.  
  8738. +++ Tk-wm_geometry(self, newGeometry=None):
  8739.  
  8740. +++ Tk-wm_grid(self, baseWidth=None):
  8741.  
  8742. +++ Tk-wm_group(self, pathName=None):
  8743.  
  8744. +++ Tk-wm_iconbitmap(self, bitmap=None):
  8745.  
  8746. +++ Tk-wm_iconify(self):
  8747.  
  8748. +++ Tk-wm_iconmask(self, bitmap=None):
  8749.  
  8750. +++ Tk-wm_iconname(self, newName=None):
  8751.  
  8752. +++ Tk-wm_iconposition(self, x=None):
  8753.  
  8754. +++ Tk-wm_iconwindow(self, pathName=None):
  8755.  
  8756. +++ Tk-wm_maxsize(self, width=None):
  8757.  
  8758. +++ Tk-wm_minsize(self, width=None):
  8759.  
  8760. +++ Tk-wm_overrideredirect(self, boolean=None):
  8761.  
  8762. +++ Tk-wm_positionfrom(self, who=None):
  8763.  
  8764. +++ Tk-wm_protocol(self, name=None):
  8765.  
  8766. +++ Tk-wm_resizable(self, width=None):
  8767.  
  8768. +++ Tk-wm_sizefrom(self, who=None):
  8769.  
  8770. +++ Tk-wm_state(self, newstate=None):
  8771.  
  8772. +++ Tk-wm_title(self, string=None):
  8773.  
  8774. +++ Tk-wm_transient(self, master=None):
  8775.  
  8776. +++ Tk-wm_withdraw(self):
  8777.     Toplevel widget, e.g. for dialogs.
  8778.     Toplevel
  8779.     Wm
  8780.  
  8781. +++ Toplevel-__init__(self, master={}, **kw):
  8782.     Construct a toplevel widget with the parent MASTER.
  8783.     highlightcolor, highlightthickness, menu, relief, screen, takefocus,
  8784.     use, visual, width
  8785.  
  8786. +++ Toplevel-destroy(self):Toplevel-__contains__(self, key)
  8787.  
  8788. +++ Toplevel-__getitem__ = cget(self, key):
  8789.  
  8790. +++ Toplevel-__setitem__(self, key, value)
  8791.  
  8792. +++ Toplevel-__str__(self):
  8793.  
  8794. +++ Toplevel-after(self, ms, func=None, *args):
  8795.  
  8796. +++ Toplevel-after_cancel(self, id):
  8797.  
  8798. +++ Toplevel-after_idle(self, func, *args):
  8799.  
  8800. +++ Toplevel-bbox = grid_bbox(self, column=None):
  8801.  
  8802. +++ Toplevel-bell(self, display of=0):
  8803.  
  8804. +++ Toplevel-bind(self, sequence=None):Toplevel-bind_all(self, sequence=None):
  8805.  
  8806. +++ Toplevel-bind_class(self, className, sequence=None):
  8807.  
  8808. +++ Toplevel-bindtags(self, tagList=None):
  8809.  
  8810. +++ Toplevel-cget(self, key):
  8811.  
  8812. +++ Toplevel-clipboard_append(self, string, **kw):
  8813.  
  8814. +++ Toplevel-clipboard_clear(self, **kw):
  8815.  
  8816. +++ Toplevel-clipboard_get(self, **kw):Toplevel-colormodel(self, value=None):
  8817.  
  8818. +++ Toplevel-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
  8819.  
  8820. +++ Toplevel-config = configure(self, cnf=None, **kw):
  8821.  
  8822. +++ Toplevel-configure(self, cnf=None, **kw):
  8823.  
  8824. +++ Toplevel-deletecommand(self, name):
  8825.  
  8826. +++ Toplevel-event_add(self, virtual, *sequences):
  8827.  
  8828. +++ Toplevel-event_delete(self, virtual, *sequences):
  8829.  
  8830. +++ Toplevel-event_generate(self, sequence, **kw):
  8831.  
  8832. +++ Toplevel-event_info(self, virtual=None):
  8833.  
  8834. +++ Toplevel-focus = focus_set(self):
  8835.  
  8836. +++ Toplevel-focus_display of(self):
  8837.  
  8838. +++ Toplevel-focus_force(self):
  8839.  
  8840. +++ Toplevel-focus_get(self):
  8841.  
  8842. +++ Toplevel-focus_lastfor(self):
  8843.  
  8844. +++ Toplevel-focus_set(self):
  8845.  
  8846. +++ Toplevel-getboolean(self, s):
  8847.  
  8848. +++ Toplevel-getvar(self, name='PY_VAR'):
  8849.  
  8850. +++ Toplevel-grab_current(self):
  8851.  
  8852. +++ Toplevel-grab_release(self):
  8853.  
  8854. +++ Toplevel-grab_set(self):
  8855.  
  8856. +++ Toplevel-grab_set_global(self):
  8857.  
  8858. +++ Toplevel-grab_status(self):
  8859.  
  8860. +++ Toplevel-grid_bbox(self, column=None):
  8861.  
  8862. +++ Toplevel-grid_columnconfigure(self, index, cnf={}, **kw):
  8863.  
  8864. +++ Toplevel-grid_location(self, x, y):
  8865.  
  8866. +++ Toplevel-grid_propagate(self, flag=['_noarg_']):
  8867.  
  8868. +++ Toplevel-grid_rowconfigure(self, index, cnf={}, **kw):
  8869.  
  8870. +++ Toplevel-grid_size(self):
  8871.  
  8872. +++ Toplevel-grid_slaves(self, row=None):
  8873.  
  8874. +++ Toplevel-image_names(self):
  8875.  
  8876. +++ Toplevel-image_types(self):
  8877.  
  8878. +++ Toplevel-keys(self):
  8879.  
  8880. +++ Toplevel-lift = tkraise(self, aboveThis=None):
  8881.  
  8882. +++ Toplevel-lower(self, belowThis=None):
  8883.  
  8884. +++ Toplevel-mainloop(self, n=0):
  8885.  
  8886. +++ Toplevel-nametowidget(self, name):
  8887.  
  8888. +++ Toplevel-option_add(self, pattern, value, priority=None):
  8889.  
  8890. +++ Toplevel-option_clear(self):
  8891.  
  8892. +++ Toplevel-option_get(self, name, className):
  8893.  
  8894. +++ Toplevel-option_readfile(self, fileName, priority=None):
  8895.  
  8896. +++ Toplevel-pack_propagate(self, flag=['_noarg_']):
  8897.  
  8898. +++ Toplevel-pack_slaves(self):
  8899.  
  8900. +++ Toplevel-place_slaves(self):
  8901.  
  8902. +++ Toplevel-propagate = pack_propagate(self, flag=['_noarg_']):
  8903.  
  8904. +++ Toplevel-quit(self):
  8905.  
  8906. +++ Toplevel-register = _register(self, func, subst=1):
  8907.  
  8908. +++ Toplevel-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
  8909.  
  8910. +++ Toplevel-selection_clear(self, **kw):
  8911.  
  8912. +++ Toplevel-selection_get(self, **kw):
  8913.  
  8914. +++ Toplevel-selection_handle(self, command, **kw):
  8915.  
  8916. +++ Toplevel-selection_own(self, **kw):
  8917.  
  8918. +++ Toplevel-selection_own_get(self, **kw):
  8919.  
  8920. +++ Toplevel-send(self, interp, cmd, *args):
  8921.  
  8922. +++ Toplevel-setvar(self, name='1'):
  8923.  
  8924. +++ Toplevel-size = grid_size(self):
  8925.  
  8926. +++ Toplevel-slaves = pack_slaves(self):
  8927.  
  8928. +++ Toplevel-tk_bisque(self):
  8929.  
  8930. +++ Toplevel-tk_focusFollowsMouse(self):
  8931.  
  8932. +++ Toplevel-tk_focusNext(self):
  8933.  
  8934. +++ Toplevel-tk_focusPrev(self):
  8935.  
  8936. +++ Toplevel-tk_menuBar(self, *args):
  8937.  
  8938. +++ Toplevel-tk_setPalette(self, *args, **kw):
  8939.  
  8940. +++ Toplevel-tk_strictMotif(self, boolean=None):
  8941.  
  8942. +++ Toplevel-tkraise(self, aboveThis=None):
  8943.  
  8944. +++ Toplevel-unbind(self, sequence, funcid=None):
  8945.  
  8946. +++ Toplevel-unbind_all(self, sequence):
  8947.  
  8948. +++ Toplevel-unbind_class(self, className, sequence):
  8949.  
  8950. +++ Toplevel-update(self):
  8951.  
  8952. +++ Toplevel-update_idletasks(self):
  8953.  
  8954. +++ Toplevel-wait_variable(self, name='PY_VAR'):
  8955.  
  8956. +++ Toplevel-wait_visibility(self, window=None):
  8957.  
  8958. +++ Toplevel-wait_window(self, window=None):
  8959.  
  8960. +++ Toplevel-waitvar = wait_variable(self, name='PY_VAR'):
  8961.  
  8962. +++ Toplevel-winfo_atom(self, name, display of=0):
  8963.  
  8964. +++ Toplevel-winfo_atomname(self, id, display of=0):
  8965.  
  8966. +++ Toplevel-winfo_cells(self):
  8967.  
  8968. +++ Toplevel-winfo_children(self):
  8969.  
  8970. +++ Toplevel-winfo_class(self):
  8971.  
  8972. +++ Toplevel-winfo_colormapfull(self):
  8973.  
  8974. +++ Toplevel-winfo_containing(self, rootX, rootY, display of=0):
  8975.  
  8976. +++ Toplevel-winfo_depth(self):
  8977.  
  8978. +++ Toplevel-winfo_exists(self):
  8979.  
  8980. +++ Toplevel-winfo_fpixels(self, number):
  8981.  
  8982. +++ Toplevel-winfo_geometry(self):
  8983.  
  8984. +++ Toplevel-winfo_height(self):
  8985.  
  8986. +++ Toplevel-winfo_id(self):
  8987.  
  8988. +++ Toplevel-winfo_interps(self, display of=0):
  8989.  
  8990. +++ Toplevel-winfo_ismapped(self):
  8991.  
  8992. +++ Toplevel-winfo_manager(self):
  8993.  
  8994. +++ Toplevel-winfo_name(self):
  8995.  
  8996. +++ Toplevel-winfo_parent(self):
  8997.  
  8998. +++ Toplevel-winfo_pathname(self, id, display of=0):
  8999.  
  9000. +++ Toplevel-winfo_pixels(self, number):
  9001.  
  9002. +++ Toplevel-winfo_pointerx(self):
  9003.  
  9004. +++ Toplevel-winfo_pointerxy(self):
  9005.  
  9006. +++ Toplevel-winfo_pointery(self):
  9007.  
  9008. +++ Toplevel-winfo_reqheight(self):
  9009.  
  9010. +++ Toplevel-winfo_reqwidth(self):
  9011.  
  9012. +++ Toplevel-winfo_rgb(self, color):
  9013.  
  9014. +++ Toplevel-winfo_rootx(self):
  9015.  
  9016. +++ Toplevel-winfo_rooty(self):
  9017.  
  9018. +++ Toplevel-winfo_screen(self):
  9019.  
  9020. +++ Toplevel-winfo_screencells(self):
  9021.  
  9022. +++ Toplevel-winfo_screendepth(self):
  9023.  
  9024. +++ Toplevel-winfo_screenheight(self):
  9025.  
  9026. +++ Toplevel-winfo_screenmmheight(self):
  9027.  
  9028. +++ Toplevel-winfo_screenmmwidth(self):
  9029.  
  9030. +++ Toplevel-winfo_screenvisual(self):
  9031.  
  9032. +++ Toplevel-winfo_screenwidth(self):
  9033.  
  9034. +++ Toplevel-winfo_server(self):
  9035.  
  9036. +++ Toplevel-winfo_toplevel(self):
  9037.  
  9038. +++ Toplevel-winfo_viewable(self):
  9039.  
  9040. +++ Toplevel-winfo_visual(self):
  9041.  
  9042. +++ Toplevel-winfo_visualid(self):
  9043.  
  9044. +++ Toplevel-winfo_visualsavailable(self, includeids=0):
  9045.  
  9046. +++ Toplevel-winfo_vrootheight(self):
  9047.  
  9048. +++ Toplevel-winfo_vrootwidth(self):
  9049.  
  9050. +++ Toplevel-winfo_vrootx(self):
  9051.  
  9052. +++ Toplevel-winfo_vrooty(self):
  9053.  
  9054. +++ Toplevel-winfo_width(self):
  9055.  
  9056. +++ Toplevel-winfo_x(self):
  9057.  
  9058. +++ Toplevel-winfo_y(self):
  9059.  
  9060. +++ Toplevel-aspect = wm_aspect(self, minNumer=None):
  9061.  
  9062. +++ Toplevel-attributes = wm_attributes(self, *args):Toplevel-client = wm_client(self, name=None):
  9063.  
  9064. +++ Toplevel-colormapwindows = wm_colormapwindows(self, *wlist):
  9065.  
  9066. +++ Toplevel-command = wm_command(self, value=None):
  9067.  
  9068. +++ Toplevel-deiconify = wm_deiconify(self):
  9069.  
  9070. +++ Toplevel-focusmodel = wm_focusmodel(self, model=None):
  9071.  
  9072. +++ Toplevel-frame = wm_frame(self):
  9073.  
  9074. +++ Toplevel-geometry = wm_geometry(self, newGeometry=None):
  9075.  
  9076. +++ Toplevel-grid = wm_grid(self, baseWidth=None):
  9077.  
  9078. +++ Toplevel-group = wm_group(self, pathName=None):
  9079.  
  9080. +++ Toplevel-iconbitmap = wm_iconbitmap(self, bitmap=None):
  9081.  
  9082. +++ Toplevel-iconify = wm_iconify(self):
  9083.  
  9084. +++ Toplevel-iconmask = wm_iconmask(self, bitmap=None):
  9085.  
  9086. +++ Toplevel-iconname = wm_iconname(self, newName=None):
  9087.  
  9088. +++ Toplevel-iconposition = wm_iconposition(self, x=None):
  9089.  
  9090. +++ Toplevel-iconwindow = wm_iconwindow(self, pathName=None):
  9091.  
  9092. +++ Toplevel-maxsize = wm_maxsize(self, width=None):
  9093.  
  9094. +++ Toplevel-minsize = wm_minsize(self, width=None):
  9095.  
  9096. +++ Toplevel-overrideredirect = wm_overrideredirect(self, boolean=None):
  9097.  
  9098. +++ Toplevel-positionfrom = wm_positionfrom(self, who=None):
  9099.  
  9100. +++ Toplevel-protocol = wm_protocol(self, name=None):
  9101.  
  9102. +++ Toplevel-resizable = wm_resizable(self, width=None):
  9103.  
  9104. +++ Toplevel-sizefrom = wm_sizefrom(self, who=None):
  9105.  
  9106. +++ Toplevel-state = wm_state(self, newstate=None):
  9107.  
  9108. +++ Toplevel-title = wm_title(self, string=None):
  9109.  
  9110. +++ Toplevel-transient = wm_transient(self, master=None):
  9111.  
  9112. +++ Toplevel-withdraw = wm_withdraw(self):
  9113.  
  9114. +++ Toplevel-wm_aspect(self, minNumer=None):
  9115.  
  9116. +++ Toplevel-wm_attributes(self, *args):Toplevel-wm_client(self, name=None):
  9117.  
  9118. +++ Toplevel-wm_colormapwindows(self, *wlist):
  9119.  
  9120. +++ Toplevel-wm_command(self, value=None):
  9121.  
  9122. +++ Toplevel-wm_deiconify(self):
  9123.  
  9124. +++ Toplevel-wm_focusmodel(self, model=None):
  9125.  
  9126. +++ Toplevel-wm_frame(self):
  9127.  
  9128. +++ Toplevel-wm_geometry(self, newGeometry=None):
  9129.  
  9130. +++ Toplevel-wm_grid(self, baseWidth=None):
  9131.  
  9132. +++ Toplevel-wm_group(self, pathName=None):
  9133.  
  9134. +++ Toplevel-wm_iconbitmap(self, bitmap=None):
  9135.  
  9136. +++ Toplevel-wm_iconify(self):
  9137.  
  9138. +++ Toplevel-wm_iconmask(self, bitmap=None):
  9139.  
  9140. +++ Toplevel-wm_iconname(self, newName=None):
  9141.  
  9142. +++ Toplevel-wm_iconposition(self, x=None):
  9143.  
  9144. +++ Toplevel-wm_iconwindow(self, pathName=None):
  9145.  
  9146. +++ Toplevel-wm_maxsize(self, width=None):
  9147.  
  9148. +++ Toplevel-wm_minsize(self, width=None):
  9149.  
  9150. +++ Toplevel-wm_overrideredirect(self, boolean=None):
  9151.  
  9152. +++ Toplevel-wm_positionfrom(self, who=None):
  9153.  
  9154. +++ Toplevel-wm_protocol(self, name=None):
  9155.  
  9156. +++ Toplevel-wm_resizable(self, width=None):
  9157.  
  9158. +++ Toplevel-wm_sizefrom(self, who=None):
  9159.  
  9160. +++ Toplevel-wm_state(self, newstate=None):
  9161.  
  9162. +++ Toplevel-wm_title(self, string=None):
  9163.  
  9164. +++ Toplevel-wm_transient(self, master=None):
  9165.  
  9166. +++ Toplevel-wm_withdraw(self):
  9167.     Tributton
  9168.  
  9169. +++ Tributton-__init__(self, master={}, **kw)Tributton-flash(self):
  9170.  
  9171. +++ Tributton-invoke(self):
  9172.  
  9173. +++ Tributton-tkButtonDown(self, *dummy)
  9174.  
  9175. +++ Tributton-tkButtonEnter(self, *dummy)
  9176.  
  9177. +++ Tributton-tkButtonInvoke(self, *dummy)
  9178.  
  9179. +++ Tributton-tkButtonLeave(self, *dummy)
  9180.  
  9181. +++ Tributton-tkButtonUp(self, *dummy)Tributton-destroy(self):Tributton-__contains__(self, key)
  9182.  
  9183. +++ Tributton-__getitem__ = cget(self, key):
  9184.  
  9185. +++ Tributton-__setitem__(self, key, value)
  9186.  
  9187. +++ Tributton-__str__(self):
  9188.  
  9189. +++ Tributton-after(self, ms, func=None, *args):
  9190.  
  9191. +++ Tributton-after_cancel(self, id):
  9192.  
  9193. +++ Tributton-after_idle(self, func, *args):
  9194.  
  9195. +++ Tributton-bbox = grid_bbox(self, column=None):
  9196.  
  9197. +++ Tributton-bell(self, display of=0):
  9198.  
  9199. +++ Tributton-bind(self, sequence=None):Tributton-bind_all(self, sequence=None):
  9200.  
  9201. +++ Tributton-bind_class(self, className, sequence=None):
  9202.  
  9203. +++ Tributton-bindtags(self, tagList=None):
  9204.  
  9205. +++ Tributton-cget(self, key):
  9206.  
  9207. +++ Tributton-clipboard_append(self, string, **kw):
  9208.  
  9209. +++ Tributton-clipboard_clear(self, **kw):
  9210.  
  9211. +++ Tributton-clipboard_get(self, **kw):
  9212.  
  9213. +++ Tributton-colormodel(self, value=None):
  9214.  
  9215. +++ Tributton-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
  9216.  
  9217. +++ Tributton-config = configure(self, cnf=None, **kw):
  9218.  
  9219. +++ Tributton-configure(self, cnf=None, **kw):
  9220.  
  9221. +++ Tributton-deletecommand(self, name):
  9222.  
  9223. +++ Tributton-event_add(self, virtual, *sequences):
  9224.  
  9225. +++ Tributton-event_delete(self, virtual, *sequences):
  9226.  
  9227. +++ Tributton-event_generate(self, sequence, **kw):
  9228.  
  9229. +++ Tributton-event_info(self, virtual=None):
  9230.  
  9231. +++ Tributton-focus = focus_set(self):
  9232.  
  9233. +++ Tributton-focus_display of(self):
  9234.  
  9235. +++ Tributton-focus_force(self):
  9236.  
  9237. +++ Tributton-focus_get(self):
  9238.  
  9239. +++ Tributton-focus_lastfor(self):
  9240.  
  9241. +++ Tributton-focus_set(self):
  9242.  
  9243. +++ Tributton-getboolean(self, s):
  9244.  
  9245. +++ Tributton-getvar(self, name='PY_VAR'):
  9246.  
  9247. +++ Tributton-grab_current(self):
  9248.  
  9249. +++ Tributton-grab_release(self):
  9250.  
  9251. +++ Tributton-grab_set(self):
  9252.  
  9253. +++ Tributton-grab_set_global(self):
  9254.  
  9255. +++ Tributton-grab_status(self):
  9256.  
  9257. +++ Tributton-grid_bbox(self, column=None):
  9258.  
  9259. +++ Tributton-grid_columnconfigure(self, index, cnf={}, **kw):
  9260.  
  9261. +++ Tributton-grid_location(self, x, y):
  9262.  
  9263. +++ Tributton-grid_propagate(self, flag=['_noarg_']):
  9264.  
  9265. +++ Tributton-grid_rowconfigure(self, index, cnf={}, **kw):
  9266.  
  9267. +++ Tributton-grid_size(self):
  9268.  
  9269. +++ Tributton-grid_slaves(self, row=None):
  9270.  
  9271. +++ Tributton-image_names(self):
  9272.  
  9273. +++ Tributton-image_types(self):
  9274.  
  9275. +++ Tributton-keys(self):
  9276.  
  9277. +++ Tributton-lift = tkraise(self, aboveThis=None):
  9278.  
  9279. +++ Tributton-lower(self, belowThis=None):
  9280.  
  9281. +++ Tributton-mainloop(self, n=0):
  9282.  
  9283. +++ Tributton-nametowidget(self, name):
  9284.  
  9285. +++ Tributton-option_add(self, pattern, value, priority=None):
  9286.  
  9287. +++ Tributton-option_clear(self):
  9288.  
  9289. +++ Tributton-option_get(self, name, className):
  9290.  
  9291. +++ Tributton-option_readfile(self, fileName, priority=None):
  9292.  
  9293. +++ Tributton-pack_propagate(self, flag=['_noarg_']):
  9294.  
  9295. +++ Tributton-pack_slaves(self):
  9296.  
  9297. +++ Tributton-place_slaves(self):
  9298.  
  9299. +++ Tributton-propagate = pack_propagate(self, flag=['_noarg_']):
  9300.  
  9301. +++ Tributton-quit(self):
  9302.  
  9303. +++ Tributton-register = _register(self, func, subst=1):
  9304.  
  9305. +++ Tributton-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
  9306.  
  9307. +++ Tributton-selection_clear(self, **kw):
  9308.  
  9309. +++ Tributton-selection_get(self, **kw):
  9310.  
  9311. +++ Tributton-selection_handle(self, command, **kw):
  9312.  
  9313. +++ Tributton-selection_own(self, **kw):
  9314.  
  9315. +++ Tributton-selection_own_get(self, **kw):
  9316.  
  9317. +++ Tributton-send(self, interp, cmd, *args):
  9318.  
  9319. +++ Tributton-setvar(self, name='1'):
  9320.  
  9321. +++ Tributton-size = grid_size(self):
  9322.  
  9323. +++ Tributton-slaves = pack_slaves(self):
  9324.  
  9325. +++ Tributton-tk_bisque(self):
  9326.  
  9327. +++ Tributton-tk_focusFollowsMouse(self):
  9328.  
  9329. +++ Tributton-tk_focusNext(self):
  9330.  
  9331. +++ Tributton-tk_focusPrev(self):
  9332.  
  9333. +++ Tributton-tk_menuBar(self, *args):
  9334.  
  9335. +++ Tributton-tk_setPalette(self, *args, **kw):
  9336.  
  9337. +++ Tributton-tk_strictMotif(self, boolean=None):
  9338.  
  9339. +++ Tributton-tkraise(self, aboveThis=None):
  9340.  
  9341. +++ Tributton-unbind(self, sequence, funcid=None):
  9342.  
  9343. +++ Tributton-unbind_all(self, sequence):
  9344.  
  9345. +++ Tributton-unbind_class(self, className, sequence):
  9346.  
  9347. +++ Tributton-update(self):
  9348.  
  9349. +++ Tributton-update_idletasks(self):
  9350.  
  9351. +++ Tributton-wait_variable(self, name='PY_VAR'):
  9352.  
  9353. +++ Tributton-wait_visibility(self, window=None):
  9354.  
  9355. +++ Tributton-wait_window(self, window=None):
  9356.  
  9357. +++ Tributton-waitvar = wait_variable(self, name='PY_VAR'):
  9358.  
  9359. +++ Tributton-winfo_atom(self, name, display of=0):
  9360.  
  9361. +++ Tributton-winfo_atomname(self, id, display of=0):
  9362.  
  9363. +++ Tributton-winfo_cells(self):
  9364.  
  9365. +++ Tributton-winfo_children(self):
  9366.  
  9367. +++ Tributton-winfo_class(self):
  9368.  
  9369. +++ Tributton-winfo_colormapfull(self):
  9370.  
  9371. +++ Tributton-winfo_containing(self, rootX, rootY, display of=0):
  9372.  
  9373. +++ Tributton-winfo_depth(self):
  9374.  
  9375. +++ Tributton-winfo_exists(self):
  9376.  
  9377. +++ Tributton-winfo_fpixels(self, number):
  9378.  
  9379. +++ Tributton-winfo_geometry(self):
  9380.  
  9381. +++ Tributton-winfo_height(self):
  9382.  
  9383. +++ Tributton-winfo_id(self):
  9384.  
  9385. +++ Tributton-winfo_interps(self, display of=0):
  9386.  
  9387. +++ Tributton-winfo_ismapped(self):
  9388.  
  9389. +++ Tributton-winfo_manager(self):
  9390.  
  9391. +++ Tributton-winfo_name(self):
  9392.  
  9393. +++ Tributton-winfo_parent(self):
  9394.  
  9395. +++ Tributton-winfo_pathname(self, id, display of=0):
  9396.  
  9397. +++ Tributton-winfo_pixels(self, number):
  9398.  
  9399. +++ Tributton-winfo_pointerx(self):
  9400.  
  9401. +++ Tributton-winfo_pointerxy(self):
  9402.  
  9403. +++ Tributton-winfo_pointery(self):
  9404.  
  9405. +++ Tributton-winfo_reqheight(self):
  9406.  
  9407. +++ Tributton-winfo_reqwidth(self):
  9408.  
  9409. +++ Tributton-winfo_rgb(self, color):
  9410.  
  9411. +++ Tributton-winfo_rootx(self):
  9412.  
  9413. +++ Tributton-winfo_rooty(self):
  9414.  
  9415. +++ Tributton-winfo_screen(self):
  9416.  
  9417. +++ Tributton-winfo_screencells(self):
  9418.  
  9419. +++ Tributton-winfo_screendepth(self):
  9420.  
  9421. +++ Tributton-winfo_screenheight(self):
  9422.  
  9423. +++ Tributton-winfo_screenmmheight(self):
  9424.  
  9425. +++ Tributton-winfo_screenmmwidth(self):
  9426.  
  9427. +++ Tributton-winfo_screenvisual(self):
  9428.  
  9429. +++ Tributton-winfo_screenwidth(self):
  9430.  
  9431. +++ Tributton-winfo_server(self):
  9432.  
  9433. +++ Tributton-winfo_toplevel(self):
  9434.  
  9435. +++ Tributton-winfo_viewable(self):
  9436.  
  9437. +++ Tributton-winfo_visual(self):
  9438.  
  9439. +++ Tributton-winfo_visualid(self):
  9440.  
  9441. +++ Tributton-winfo_visualsavailable(self, includeids=0):
  9442.  
  9443. +++ Tributton-winfo_vrootheight(self):
  9444.  
  9445. +++ Tributton-winfo_vrootwidth(self):
  9446.  
  9447. +++ Tributton-winfo_vrootx(self):
  9448.  
  9449. +++ Tributton-winfo_vrooty(self):
  9450.  
  9451. +++ Tributton-winfo_width(self):
  9452.  
  9453. +++ Tributton-winfo_x(self):
  9454.  
  9455. +++ Tributton-winfo_y(self):
  9456.  
  9457. +++ Tributton-forget = pack_forget(self):
  9458.  
  9459. +++ Tributton-info = pack_info(self):
  9460.  
  9461. +++ Tributton-pack = pack_configure(self, cnf={}, **kw):
  9462.  
  9463. +++ Tributton-pack_configure(self, cnf={}, **kw):
  9464.  
  9465. +++ Tributton-pack_forget(self):
  9466.  
  9467. +++ Tributton-pack_info(self):
  9468.  
  9469. +++ Tributton-place = place_configure(self, cnf={}, **kw):
  9470.  
  9471. +++ Tributton-place_configure(self, cnf={}, **kw):
  9472.  
  9473. +++ Tributton-place_forget(self):
  9474.  
  9475. +++ Tributton-place_info(self):
  9476.  
  9477. +++ Tributton-grid = grid_configure(self, cnf={}, **kw):
  9478.  
  9479. +++ Tributton-grid_configure(self, cnf={}, **kw):
  9480.  
  9481. +++ Tributton-grid_forget(self):
  9482.  
  9483. +++ Tributton-grid_info(self):
  9484.  
  9485. +++ Tributton-grid_remove(self):
  9486.  
  9487. +++ Tributton-location = grid_location(self, x, y):
  9488.  
  9489. *** class Variable
  9490.  
  9491.     Class to define value holders for e.g. buttons.
  9492.     Subclasses BooleanVar are specializations
  9493.     that constrain the type of the value returned from get().
  9494.  
  9495. +++ Variable-__del__(self):
  9496.  
  9497. +++ Variable-__eq__(self, other):
  9498.  
  9499. +++ Variable-__init__(self, master=None):
  9500.     Construct a variable
  9501.  
  9502. +++ Variable-__str__(self):
  9503.  
  9504. +++ Variable-get(self):
  9505.     Return value of variable.
  9506.  
  9507. +++ Variable-set(self, value):
  9508.  
  9509. +++ Variable-trace = trace_variable(self, mode, callback)
  9510.  
  9511. +++ Variable-trace_variable(self, mode, callback):
  9512.  
  9513. +++ Variable-trace_vdelete(self, mode, cbname):
  9514.  
  9515. +++ Variable-trace_vinfo(self):
  9516.  
  9517. Grid *****
  9518.     Base class for a widget which can be positioned with the geometry managers
  9519.     Grid
  9520.  
  9521. ...
  9522. +++ Widget-__init__(self, master, widgetName, cnf=()):
  9523.  
  9524. +++ Widget-destroy(self):
  9525.  
  9526. +++ Widget-__contains__(self, key)
  9527.  
  9528. +++ Widget-__getitem__ = cget(self, key):
  9529.  
  9530. +++ Widget-__setitem__(self, key, value)
  9531.  
  9532. +++ Widget-__str__(self):
  9533.  
  9534. +++ Widget-after(self, ms, func=None, *args):
  9535.  
  9536. +++ Widget-after_cancel(self, id):
  9537.  
  9538. +++ Widget-after_idle(self, func, *args):
  9539.  
  9540. +++ Widget-bbox = grid_bbox(self, column=None):
  9541.  
  9542. +++ Widget-bell(self, display of=0):
  9543.  
  9544. +++ Widget-bind(self, sequence=None):
  9545.  
  9546. +++ Widget-bind_all(self, sequence=None):
  9547.  
  9548. +++ Widget-bind_class(self, className, sequence=None):
  9549.  
  9550. +++ Widget-bindtags(self, tagList=None):
  9551.  
  9552. +++ Widget-cget(self, key):
  9553.  
  9554. +++ Widget-clipboard_append(self, string, **kw):
  9555.  
  9556. +++ Widget-clipboard_clear(self, **kw):
  9557.  
  9558. +++ Widget-clipboard_get(self, **kw):
  9559.  
  9560. +++ Widget-colormodel(self, value=None):
  9561.  
  9562. +++ Widget-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
  9563.  
  9564. +++ Widget-config = configure(self, cnf=None, **kw):
  9565.  
  9566. +++ Widget-configure(self, cnf=None, **kw):
  9567.  
  9568. +++ Widget-deletecommand(self, name):
  9569.  
  9570. +++ Widget-event_add(self, virtual, *sequences):
  9571.  
  9572. +++ Widget-event_delete(self, virtual, *sequences):
  9573.  
  9574. +++ Widget-event_generate(self, sequence, **kw):
  9575.  
  9576. +++ Widget-event_info(self, virtual=None):
  9577.  
  9578. +++ Widget-focus = focus_set(self):
  9579.  
  9580. +++ Widget-focus_display of(self):
  9581.  
  9582. +++ Widget-focus_force(self):
  9583.  
  9584. +++ Widget-focus_get(self):
  9585.  
  9586. +++ Widget-focus_lastfor(self):
  9587.  
  9588. +++ Widget-focus_set(self):
  9589.  
  9590. +++ Widget-getboolean(self, s):
  9591.  
  9592. +++ Widget-getvar(self, name='PY_VAR'):
  9593.  
  9594. +++ Widget-grab_current(self):
  9595.  
  9596. +++ Widget-grab_release(self):
  9597.  
  9598. +++ Widget-grab_set(self):
  9599.  
  9600. +++ Widget-grab_set_global(self):
  9601.  
  9602. +++ Widget-grab_status(self):
  9603.  
  9604. +++ Widget-grid_bbox(self, column=None):
  9605.  
  9606. +++ Widget-grid_columnconfigure(self, index, cnf={}, **kw):
  9607.  
  9608. +++ Widget-grid_location(self, x, y):
  9609.  
  9610. +++ Widget-grid_propagate(self, flag=['_noarg_']):
  9611.  
  9612. +++ Widget-grid_rowconfigure(self, index, cnf={}, **kw):
  9613.  
  9614. +++ Widget-grid_size(self):
  9615.  
  9616. +++ Widget-grid_slaves(self, row=None):
  9617.  
  9618. +++ Widget-image_names(self):
  9619.  
  9620. +++ Widget-image_types(self):
  9621.  
  9622. +++ Widget-keys(self):
  9623.  
  9624. +++ Widget-lift = tkraise(self, aboveThis=None):
  9625.  
  9626. +++ Widget-lower(self, belowThis=None):
  9627.  
  9628. +++ Widget-mainloop(self, n=0):
  9629.  
  9630. +++ Widget-nametowidget(self, name):
  9631.  
  9632. +++ Widget-option_add(self, pattern, value, priority=None):
  9633.  
  9634. +++ Widget-option_clear(self):
  9635.  
  9636. +++ Widget-option_get(self, name, className):
  9637.  
  9638. +++ Widget-option_readfile(self, fileName, priority=None):
  9639.  
  9640. +++ Widget-pack_propagate(self, flag=['_noarg_']):
  9641.  
  9642. +++ Widget-pack_slaves(self):
  9643.  
  9644. +++ Widget-place_slaves(self):
  9645.  
  9646. +++ Widget-propagate = pack_propagate(self, flag=['_noarg_']):
  9647.  
  9648. +++ Widget-quit(self):
  9649.  
  9650. +++ Widget-register = _register(self, func, subst=1):
  9651.  
  9652. +++ Widget-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
  9653.  
  9654. +++ Widget-selection_clear(self, **kw):
  9655.  
  9656. +++ Widget-selection_get(self, **kw):
  9657.  
  9658. +++ Widget-selection_handle(self, command, **kw):
  9659.  
  9660. +++ Widget-selection_own(self, **kw):
  9661.  
  9662. +++ Widget-selection_own_get(self, **kw):
  9663.  
  9664. +++ Widget-send(self, interp, cmd, *args):
  9665.  
  9666. +++ Widget-setvar(self, name='1'):
  9667.  
  9668. +++ Widget-size = grid_size(self):
  9669.  
  9670. +++ Widget-slaves = pack_slaves(self):
  9671.  
  9672. +++ Widget-tk_bisque(self):
  9673.  
  9674. +++ Widget-tk_focusFollowsMouse(self):
  9675.  
  9676. +++ Widget-tk_focusNext(self):
  9677.  
  9678. +++ Widget-tk_focusPrev(self):
  9679.  
  9680. +++ Widget-tk_menuBar(self, *args):
  9681.  
  9682. +++ Widget-tk_setPalette(self, *args, **kw):
  9683.  
  9684. +++ Widget-tk_strictMotif(self, boolean=None):
  9685.  
  9686. +++ Widget-tkraise(self, aboveThis=None):
  9687.  
  9688. +++ Widget-unbind(self, sequence, funcid=None):
  9689.  
  9690. +++ Widget-unbind_all(self, sequence):
  9691.  
  9692. +++ Widget-unbind_class(self, className, sequence):
  9693.  
  9694. +++ Widget-update(self):
  9695.  
  9696. +++ Widget-update_idletasks(self):
  9697.  
  9698. +++ Widget-wait_variable(self, name='PY_VAR'):
  9699.  
  9700. +++ Widget-wait_visibility(self, window=None):
  9701.  
  9702. +++ Widget-wait_window(self, window=None):
  9703.  
  9704. +++ Widget-waitvar = wait_variable(self, name='PY_VAR'):
  9705.  
  9706. +++ Widget-winfo_atom(self, name, display of=0):
  9707.  
  9708. +++ Widget-winfo_atomname(self, id, display of=0):
  9709.  
  9710. +++ Widget-winfo_cells(self):
  9711.  
  9712. +++ Widget-winfo_children(self):
  9713.  
  9714. +++ Widget-winfo_class(self):
  9715.  
  9716. +++ Widget-winfo_colormapfull(self):
  9717.  
  9718. +++ Widget-winfo_containing(self, rootX, rootY, display of=0):
  9719.  
  9720. +++ Widget-winfo_depth(self):
  9721.  
  9722. +++ Widget-winfo_exists(self):
  9723.  
  9724. +++ Widget-winfo_fpixels(self, number):
  9725.  
  9726. +++ Widget-winfo_geometry(self):
  9727.  
  9728. +++ Widget-winfo_height(self):
  9729.  
  9730. +++ Widget-winfo_id(self):
  9731.  
  9732. +++ Widget-winfo_interps(self, display of=0):
  9733.  
  9734. +++ Widget-winfo_ismapped(self):
  9735.  
  9736. +++ Widget-winfo_manager(self):
  9737.  
  9738. +++ Widget-winfo_name(self):
  9739.  
  9740. +++ Widget-winfo_parent(self):
  9741.  
  9742. +++ Widget-winfo_pathname(self, id, display of=0):
  9743.  
  9744. +++ Widget-winfo_pixels(self, number):
  9745.  
  9746. +++ Widget-winfo_pointerx(self):
  9747.  
  9748. +++ Widget-winfo_pointerxy(self):
  9749.  
  9750. +++ Widget-winfo_pointery(self):
  9751.  
  9752. +++ Widget-winfo_reqheight(self):
  9753.  
  9754. +++ Widget-winfo_reqwidth(self):
  9755.  
  9756. +++ Widget-winfo_rgb(self, color):
  9757.  
  9758. +++ Widget-winfo_rootx(self):
  9759.  
  9760. +++ Widget-winfo_rooty(self):
  9761.  
  9762. +++ Widget-winfo_screen(self):
  9763.  
  9764. +++ Widget-winfo_screencells(self):
  9765.  
  9766. +++ Widget-winfo_screendepth(self):
  9767.  
  9768. +++ Widget-winfo_screenheight(self):
  9769.  
  9770. +++ Widget-winfo_screenmmheight(self):
  9771.  
  9772. +++ Widget-winfo_screenmmwidth(self):
  9773.  
  9774. +++ Widget-winfo_screenvisual(self):
  9775.  
  9776. +++ Widget-winfo_screenwidth(self):
  9777.  
  9778. +++ Widget-winfo_server(self):
  9779.  
  9780. +++ Widget-winfo_toplevel(self):
  9781.  
  9782. +++ Widget-winfo_viewable(self):
  9783.  
  9784. +++ Widget-winfo_visual(self):
  9785.  
  9786. +++ Widget-winfo_visualid(self):
  9787.  
  9788. +++ Widget-winfo_visualsavailable(self, includeids=0):
  9789.  
  9790. +++ Widget-winfo_vrootheight(self):
  9791.  
  9792. +++ Widget-winfo_vrootwidth(self):
  9793.  
  9794. +++ Widget-winfo_vrootx(self):
  9795.  
  9796. +++ Widget-winfo_vrooty(self):
  9797.  
  9798. +++ Widget-winfo_width(self):
  9799.  
  9800. +++ Widget-winfo_x(self):
  9801.  
  9802. +++ Widget-winfo_y(self):
  9803.  
  9804. +++ Widget-forget = pack_forget(self):
  9805.  
  9806. +++ Widget-info = pack_info(self):
  9807.  
  9808. +++ Widget-pack = pack_configure(self, cnf={}, **kw):
  9809.  
  9810. +++ Widget-pack_configure(self, cnf={}, **kw):
  9811.  
  9812. +++ Widget-pack_forget(self):
  9813.  
  9814. +++ Widget-pack_info(self):
  9815.  
  9816. +++ Widget-place = place_configure(self, cnf={}, **kw):
  9817.  
  9818. +++ Widget-place_configure(self, cnf={}, **kw):
  9819.  
  9820. +++ Widget-place_forget(self):
  9821.  
  9822. +++ Widget-place_info(self):
  9823.  
  9824. +++ Widget-grid = grid_configure(self, cnf={}, **kw):
  9825.  
  9826. +++ Widget-grid_configure(self, cnf={}, **kw):
  9827.  
  9828. +++ Widget-grid_forget(self):
  9829.  
  9830. +++ Widget-grid_info(self):
  9831.  
  9832. +++ Widget-grid_remove(self):
  9833.  
  9834. +++ Widget-location = grid_location(self, x, y):
  9835.  
  9836. *** class Wm
  9837.     Provides functions for the communication with the window manager.
  9838.  
  9839. +++ Wm-aspect = wm_aspect(self, minNumer=None)
  9840.  
  9841. +++ Wm-attributes = wm_attributes(self, *args)
  9842.  
  9843. +++ Wm-client = wm_client(self, name=None)
  9844.  
  9845. +++ Wm-colormapwindows = wm_colormapwindows(self, *wlist)
  9846.  
  9847. +++ Wm-command = wm_command(self, value=None)
  9848.  
  9849. +++ Wm-deiconify = wm_deiconify(self)
  9850.  
  9851. +++ Wm-focusmodel = wm_focusmodel(self, model=None)
  9852.  
  9853. +++ Wm-frame = wm_frame(self)
  9854.  
  9855. +++ Wm-geometry = wm_geometry(self, newGeometry=None)
  9856.  
  9857. +++ Wm-grid = wm_grid(self, baseWidth=None)
  9858.  
  9859. +++ Wm-group = wm_group(self, pathName=None)
  9860.  
  9861. +++ Wm-iconbitmap = wm_iconbitmap(self, bitmap=None)
  9862.  
  9863. +++ Wm-iconify = wm_iconify(self)
  9864.  
  9865. +++ Wm-iconmask = wm_iconmask(self, bitmap=None)
  9866.  
  9867. +++ Wm-iconname = wm_iconname(self, newName=None)
  9868.  
  9869. +++ Wm-iconposition = wm_iconposition(self, x=None)
  9870.  
  9871. +++ Wm-iconwindow = wm_iconwindow(self, pathName=None)
  9872.  
  9873. +++ Wm-maxsize = wm_maxsize(self, width=None)
  9874.  
  9875. +++ Wm-minsize = wm_minsize(self, width=None)
  9876.  
  9877. +++ Wm-overrideredirect = wm_overrideredirect(self, boolean=None)
  9878.  
  9879. +++ Wm-positionfrom = wm_positionfrom(self, who=None)
  9880.  
  9881. +++ Wm-protocol = wm_protocol(self, name=None)
  9882.  
  9883. +++ Wm-resizable = wm_resizable(self, width=None)
  9884.  
  9885. +++ Wm-sizefrom = wm_sizefrom(self, who=None)
  9886.  
  9887. +++ Wm-state = wm_state(self, newstate=None)
  9888.  
  9889. +++ Wm-title = wm_title(self, string=None)
  9890.  
  9891. +++ Wm-transient = wm_transient(self, master=None)
  9892.  
  9893. +++ Wm-withdraw = wm_withdraw(self)
  9894.  
  9895. +++ Wm-wm_aspect(self, minNumer=None):
  9896.  
  9897. +++ Wm-wm_attributes(self, *args):
  9898.  
  9899. +++ Wm-wm_client(self, name=None):
  9900.  
  9901. +++ Wm-wm_colormapwindows(self, *wlist):
  9902.  
  9903. +++ Wm-wm_command(self, value=None):
  9904.  
  9905. +++ Wm-wm_deiconify(self):
  9906.  
  9907. +++ Wm-wm_focusmodel(self, model=None):
  9908.  
  9909. +++ Wm-wm_frame(self):
  9910.  
  9911. +++ Wm-wm_geometry(self, newGeometry=None):
  9912.  
  9913. +++ Wm-wm_grid(self, baseWidth=None):
  9914.  
  9915. +++ Wm-wm_group(self, pathName=None):
  9916.  
  9917. +++ Wm-wm_iconbitmap(self, bitmap=None):Wm-wm_iconify(self):
  9918.  
  9919. +++ Wm-wm_iconmask(self, bitmap=None):
  9920.  
  9921. +++ Wm-wm_iconname(self, newName=None):
  9922.  
  9923. +++ Wm-wm_iconposition(self, x=None):
  9924.  
  9925. +++ Wm-wm_iconwindow(self, pathName=None):
  9926.  
  9927. +++ Wm-wm_maxsize(self, width=None):
  9928.  
  9929. +++ Wm-wm_minsize(self, width=None):
  9930.  
  9931. +++ Wm-wm_overrideredirect(self, boolean=None):
  9932.  
  9933. +++ Wm-wm_positionfrom(self, who=None):
  9934.  
  9935. +++ Wm-wm_protocol(self, name=None):
  9936.  
  9937. +++ Wm-wm_resizable(self, width=None):
  9938.  
  9939. +++ Wm-wm_sizefrom(self, who=None):
  9940.  
  9941. +++ Wm-wm_state(self, newstate=None):
  9942.  
  9943. +++ Wm-wm_title(self, string=None):
  9944.  
  9945. +++ Wm-wm_transient(self, master=None):
  9946.  
  9947. +++ Wm-wm_withdraw(self):
  9948.  
  9949. *** class XView
  9950.  
  9951.     Mix-in class for querying and changing the horizontal position
  9952.     of a widget's window.
  9953.  
  9954. +++ XView-xview(self, *args):
  9955.  
  9956. +++ XView-xview_moveto(self, fraction):
  9957.  
  9958. +++ XView-xview_scroll(self, number, what):
  9959.  
  9960. *** class YView
  9961.  
  9962.     Mix-in class for querying and changing the vertical position
  9963.  
  9964. +++ YView-yview(self, *args):
  9965.  
  9966. +++ YView-yview_moveto(self, fraction):
  9967.  
  9968. +++ YView-yview_scroll(self, number, what):
  9969.  
  9970. *** Functions
  9971.  
  9972. +++ -At(x, y=None)
  9973.  
  9974. +++ -AtEnd():
  9975.     # Indices:
  9976.     # XXX I don't like these -- take them away
  9977.  
  9978. +++ -AtInsert(*args)
  9979.  
  9980. +++ -AtSelFirst()
  9981.  
  9982. +++ -AtSelLast()
  9983.  
  9984. +++ -NoDefaultRoot():
  9985.     Inhibit setting of default root window.
  9986.     Call this function to inhibit that the first instance of
  9987.     Tk is used for windows without an explicit parent window.
  9988.  
  9989. +++ -Tcl(screenName=0)
  9990.  
  9991. +++ -getboolean(s):
  9992.     Convert true and false to integer values 1 and 0.
  9993.  
  9994. +++ -image_names()
  9995.  
  9996. +++ -image_types()
  9997.  
  9998. +++ -mainloop(n=0):
  9999.     Run the main loop of Tcl.
  10000.  
  10001. *** Data
  10002.  
  10003. --- ACTIVE = 'active'
  10004.  
  10005. --- ALL = 'all'
  10006.  
  10007. --- ANCHOR = 'anchor'
  10008.  
  10009. --- ARC = 'arc'
  10010.  
  10011. --- BASELINE = 'baseline'
  10012.  
  10013. --- BEVEL = 'bevel'
  10014.  
  10015. --- BOTH = 'both'
  10016.  
  10017. --- BOTTOM = 'bottom'
  10018.  
  10019. --- BROWSE = 'browse'
  10020.  
  10021. --- BUTT = 'butt'
  10022.  
  10023. --- CASCADE = 'cascade'
  10024.  
  10025. --- CENTER = 'center'
  10026.  
  10027. --- CHAR = 'char'
  10028.  
  10029. --- CHECKBUTTON = 'checkbutton'
  10030.  
  10031. --- CHORD = 'chord'
  10032.  
  10033. --- COMMAND = 'command'
  10034.  
  10035. --- CURRENT = 'current'
  10036.  
  10037. --- DISABLED = 'disabled'
  10038.  
  10039. --- DOTBOX = 'dotbox'
  10040.  
  10041. --- E = 'e'
  10042.  
  10043. --- END = 'end'
  10044.  
  10045. --- EW = 'ew'
  10046.  
  10047. --- EXCEPTION = 8
  10048.  
  10049. --- EXTENDED = 'extended'
  10050.  
  10051. --- FALSE = 0
  10052.  
  10053. --- FIRST = 'first'
  10054.  
  10055. --- FLAT = 'flat'
  10056.  
  10057. --- GROOVE = 'groove'
  10058.  
  10059. --- HIDDEN = 'hidden'
  10060.  
  10061. --- HORIZONTAL = 'horizontal'
  10062.  
  10063. --- INSERT = 'insert'
  10064.  
  10065. --- INSIDE = 'inside'
  10066.  
  10067. --- LAST = 'last'
  10068.  
  10069. --- LEFT = 'left'
  10070.  
  10071. --- MITER = 'miter'
  10072.  
  10073. --- MOVETO = 'moveto'
  10074.  
  10075. --- MULTIPLE = 'multiple'
  10076.  
  10077. --- N = 'n'
  10078.  
  10079. --- NE = 'ne'
  10080.  
  10081. --- NO = 0
  10082.  
  10083. --- NONE = 'none'
  10084.  
  10085. --- NORMAL = 'normal'
  10086.  
  10087. --- NS = 'ns'
  10088.  
  10089. --- NSEW = 'nsew'
  10090.  
  10091. --- NUMERIC = 'numeric'
  10092.  
  10093. --- NW = 'nw'
  10094.  
  10095. --- OFF = 0
  10096.  
  10097. --- ON = 1
  10098.  
  10099. --- OUTSIDE = 'outside'
  10100.  
  10101. --- PAGES = 'pages'
  10102.  
  10103. --- PIESLICE = 'pieslice'
  10104.  
  10105. --- PROJECTING = 'projecting'
  10106.  
  10107. --- RADIOBUTTON = 'radiobutton'
  10108.  
  10109. --- RAISED = 'raised'
  10110.  
  10111. --- READABLE = 2
  10112.  
  10113. --- RIDGE = 'ridge'
  10114.  
  10115. --- RIGHT = 'right'
  10116.  
  10117. --- ROUND = 'round'
  10118.  
  10119. --- S = 's'
  10120.  
  10121. --- SCROLL = 'scroll'
  10122.  
  10123. --- SE = 'se'
  10124.  
  10125. --- SEL = 'sel'
  10126.  
  10127. --- SEL_FIRST = 'sel.first'
  10128.  
  10129. --- SEL_LAST = 'sel.last'
  10130.  
  10131. --- SEPARATOR = 'separator'
  10132.  
  10133. --- SINGLE = 'single'
  10134.  
  10135. --- SOLID = 'solid'
  10136.  
  10137. --- SUNKEN = 'sunken'
  10138.  
  10139. --- SW = 'sw'
  10140.  
  10141. --- StringTypes = (<type 'str'>, <type 'unicode'>)
  10142.  
  10143. --- TOP = 'top'
  10144.  
  10145. --- TRUE = 1
  10146.  
  10147. --- TclVersion = 8.5
  10148.  
  10149. --- TkVersion = 8.5
  10150.  
  10151. --- UNDERLINE = 'underline'
  10152.  
  10153. --- UNITS = 'units'
  10154.  
  10155. --- VERTICAL = 'vertical'
  10156.  
  10157. --- W = 'w'
  10158.  
  10159. --- WORD = 'word'
  10160.  
  10161. --- WRITABLE = 4
  10162.  
  10163. --- X = 'x'
  10164.  
  10165. --- Y = 'y'
  10166.  
  10167. --- YES = 1
  10168.  
  10169. --- __version__ = '$Revision: 81008 $'
  10170.  
  10171. --- wantobjects = 1
  10172. '''
Add Comment
Please, Sign In to add comment