Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # -*- coding: utf-8 -*-
- zzz = '''
- Python: module TkinterModule Docs
- Wrapper functions for Tcl/Tk.
- Tkinter provides classes which allow the display, positioning and
- control of widgets. Toplevel. Other widgets are Radiobutton,
- Spinbox, PanedWindow.
- Properties of the widgets are specified with keyword arguments.
- Keyword arguments have the same name as the corresponding resource
- under Tk.
- Widgets are positioned with one of the geometry managers Pack
- or Grid. These managers can be called with methods place, pack, grid
- available in every Widget.
- Actions are bound to events by resources (e.g. keyword argument
- command) or with the method bind. Example (Hello, World).
- import Tkinter
- from Tkconstants import *
- tk = Tkinter.Tk()
- frame = Tkinter.Frame(tk, relief=RIDGE, borderwidth=2)
- frame.pack(fill=BOTH,expand=1)
- label = Tkinter.Label(frame, text="Hello, World")
- label.pack(fill=X, expand=1)
- button = Tkinter.Button(frame,text="Exit",command=tk.destroy)
- button.pack(side=BOTTOM)
- tk.mainloop()
- +++ Module
- --- Tkinter
- CallWrapper
- Event
- Grid
- Image
- BitmapImage
- PhotoImage
- Misc
- BaseWidget
- Toplevel(BaseWidget, Wm)
- Pack,
- Place,
- Widget(BaseWidget, Grid)
- Button
- Studbutton
- Tributton
- XView,
- Canvas(Widget, YView)
- Checkbutton
- Entry(Widget, XView)
- Frame
- Label
- LabelFrame
- XView,
- Listbox(Widget, YView)
- Menu
- Menubutton
- OptionMenu
- Message
- PanedWindow
- Radiobutton
- Scale
- Scrollbar
- Spinbox(Widget, XView)
- XView,
- Text(Widget, YView)
- Tk(Misc, Wm)
- Pack
- Place
- Variable
- BooleanVar
- DoubleVar
- IntVar
- StringVar
- Wm
- XView
- YView
- *** Internal class
- Methods defined here:
- +++ __init__(self, master, widgetName, cnf=()):
- Construct a widget with the parent widget MASTER, a name WIDGETNAME
- and appropriate options.
- +++ destroy(self):
- Destroy this and all descendants widgets.Methods inherited from Misc:
- +++ __contains__(self, key)
- +++ __getitem__ = cget(self, key):
- Return the resource value for a KEY given as string.
- +++ __setitem__(self, key, value)
- +++ __str__(self):
- Return the window path name of this widget.
- +++ after(self, ms, func=None, *args):
- Call function once after given time.
- MS specifies the time in milliseconds. FUNC gives the
- function which shall be called. Additional parameters
- are given as parameters to the function call. Return
- identifier to cancel scheduling with after_cancel.
- +++ after_cancel(self, id):
- Cancel scheduling of function identified with ID.
- Identifier returned by after or after_idle must be
- given as first parameter.
- +++ after_idle(self, func, *args):
- Call FUNC once if the Tcl main loop has no event to
- process.
- Return an identifier to cancel the scheduling with
- after_cancel.
- +++ bbox = grid_bbox(self, column=None):
- Return a tuple of integer coordinates for the bounding
- box of this widget controlled by the geometry manager grid.
- If COLUMN, ROW is given the bounding box applies from
- the cell with row and column 0 to the specified
- cell. If COL2 and ROW2 are given the bounding box
- starts at that cell.
- The returned integers specify the offset of the upper left
- corner in the master widget and the width and height.
- +++ bell(self, display of=0):
- Ring a display's bell.
- +++ bind(self, sequence=None):
- Bind to this widget at event SEQUENCE a call to function FUNC.
- SEQUENCE is a string of concatenated event
- patterns. An event pattern is of the form<MODIFIER-MODIFIER-TYPE-DETAIL> where MODIFIER is one
- of Control, Mod2, M2, Shift, Mod3, M3, Lock, Mod4, M4,
- Button1, B1, Mod5, M5 Button2, B2, Meta, M, Button3,
- B3, Alt, Button4, B4, Double, Button5, B5 Triple,
- Mod1, M1. TYPE is one of Activate, Enter, Map,
- ButtonPress, Button, Expose, Motion, ButtonRelease
- FocusIn, MouseWheel, Circulate, FocusOut, Property,
- Colormap, Gravity Reparent, Configure, KeyPress, Key,
- Unmap, Deactivate, KeyRelease Visibility, Destroy,
- Leave and DETAIL is the button number for ButtonPress,
- ButtonRelease and DETAIL is the Keysym for KeyPress and
- 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).
- An event pattern can also be a virtual event of the form<<AString>> where AString can be arbitrary. This
- event can be generated by event_generate.
- If events are concatenated they must appear shortly
- after each other.
- FUNC will be called if the event sequence occurs with an
- instance of Event as argument. If the return value of FUNC is
- "break" no further bound function is invoked.
- An additional boolean parameter ADD specifies whether FUNC will
- be called additionally to the other bound function or whether
- it will replace the previous function.
- Bind will return an identifier to allow deletion of the bound function with
- unbind without memory leak.
- If FUNC or SEQUENCE is omitted the bound function or list
- of bound events are returned.
- +++ bind_all(self, sequence=None):
- Bind to all widgets at an event SEQUENCE a call to function FUNC.
- An additional boolean parameter ADD specifies whether FUNC will
- be called additionally to the other bound function or whether
- it will replace the previous function. See bind for the return value.
- +++ bind_class(self, className, sequence=None):
- Bind to widgets with bindtag CLASSNAME at event
- SEQUENCE a call of function FUNC. An additional
- boolean parameter ADD specifies whether FUNC will be
- called additionally to the other bound function or
- whether it will replace the previous function. See bind for
- the return value.
- +++ bindtags(self, tagList=None):
- Set or get the list of bindtags for this widget.
- With no argument return the list of all bindtags associated with
- this widget. With a list of strings as argument the bindtags are
- set to this list. The bindtags determine in which order events are
- processed (see bind).
- +++ cget(self, key):
- +++ clipboard_append(self, string, **kw):
- Append STRING to the Tk clipboard.
- A widget specified at the optional display of keyword
- argument specifies the target display. The clipboard
- can be retrieved with selection_get.
- +++ clipboard_clear(self, **kw):
- Clear the data in the Tk clipboard.
- A widget specified for the optional display of keyword
- argument specifies the target display.
- +++ clipboard_get(self, **kw):
- Retrieve data from the clipboard on window's display.
- The window keyword defaults to the root window of the Tkinter
- application.
- The type keyword specifies the form in which the data is
- to be returned and should be an atom name such as STRING
- or FILE_NAME. Type defaults to STRING, except on X11, where the default
- is to try UTF8_STRING and fall back to STRING.
- This command is equivalent to:
- selection_get(CLIPBOARD)
- +++ colormodel(self, value=None):
- Useless. Not implemented in Tk.
- +++ columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
- Configure column INDEX of a grid.
- Valid resources are minsize (minimum size of the column),
- weight (how much does additional space propagate to this column)
- and pad (how much space to let additionally).
- +++ config = configure(self, cnf=None, **kw):
- Configure resources of a widget.
- The values for resources are specified as keyword
- arguments. To get an overview about
- the allowed keyword arguments call the method keys.
- +++ configure(self, cnf=None, **kw):
- +++ deletecommand(self, name):
- Internal function.
- Delete the Tcl command provided in NAME.
- +++ event_add(self, virtual, *sequences):
- Bind a virtual event VIRTUAL (of the form <<Name>>)
- to an event SEQUENCE such that the virtual event is triggered
- whenever SEQUENCE occurs.
- +++ event_delete(self, virtual, *sequences):
- Unbind a virtual event VIRTUAL from SEQUENCE.
- +++ event_generate(self, sequence, **kw):
- Generate an event SEQUENCE. Additional
- keyword arguments specify parameter of the event
- (e.g. x, y, rootx, rooty).
- +++ event_info(self, virtual=None):
- Return a list of all virtual events or the information
- about the SEQUENCE bound to the virtual event VIRTUAL.
- +++ focus = focus_set(self):
- Direct input focus to this widget.
- If the application currently does not have the focus
- this widget will get the focus if the application gets
- the focus through the window manager.
- +++ focus_display of(self):
- Return the widget which has currently the focus on the
- display where this widget is located.
- Return None if the application does not have the focus.
- +++ focus_force(self):
- Direct input focus to this widget even if the
- application does not have the focus. Use with
- caution!
- +++ focus_get(self):
- Return the widget which has currently the focus in the
- application.
- Use focus_display of to allow working with several
- displays. Return None if application does not have
- the focus.
- +++ focus_lastfor(self):
- Return the widget which would have the focus if top level
- for this widget gets the focus from the window manager.
- +++ focus_set(self):
- +++ getboolean(self, s):
- Return a boolean value for Tcl boolean values true and false given as parameter.
- +++ getvar(self, name='PY_VAR'):
- Return value of Tcl variable NAME.
- +++ grab_current(self):
- Return widget which has currently the grab in this application
- or None.
- +++ grab_release(self):
- Release grab for this widget if currently set.
- +++ grab_set(self):
- Set grab for this widget.
- A grab directs all events to this and descendant
- widgets in the application.
- +++ grab_set_global(self):
- Set global grab for this widget.
- A global grab directs all events to this and
- descendant widgets on the display. Use with caution -
- other applications do not get events anymore.
- +++ grab_status(self):
- Return None, "local" or "global" if this widget has
- no, a local or a global grab.
- +++ grid_bbox(self, column=None):
- +++ grid_columnconfigure(self, index, cnf={}, **kw):
- +++ grid_location(self, x, y):
- Return a tuple of column and row which identify the cell
- at which the pixel at position X and Y inside the master
- widget is located.
- +++ grid_propagate(self, flag=['_noarg_']):
- Set or get the status for propagation of geometry information.
- A boolean argument specifies whether the geometry information
- of the slaves will determine the size of this widget. If no argument
- is given, the current setting will be returned.
- +++ grid_rowconfigure(self, index, cnf={}, **kw):
- Configure row INDEX of a grid.
- Valid resources are minsize (minimum size of the row),
- weight (how much does additional space propagate to this row)
- +++ grid_size(self):
- Return a tuple of the number of column and rows in the grid.
- +++ grid_slaves(self, row=None):
- Return a list of all slaves of this widget
- in its packing order.
- +++ image_names(self):
- Return a list of all existing image names.
- +++ image_types(self):
- Return a list of all available image types (e.g. phote bitmap).
- +++ keys(self):
- Return a list of all resource names of this widget.
- +++ lift = tkraise(self, aboveThis=None):
- Raise this widget in the stacking order.
- +++ lower(self, belowThis=None):
- Lower this widget in the stacking order.
- +++ mainloop(self, n=0):
- Call the mainloop of Tk.
- +++ nametowidget(self, name):
- Return the Tkinter instance of a widget identified by
- its Tcl name NAME.
- +++ option_add(self, pattern, value, priority=None):
- Set a VALUE (second parameter) for an option
- PATTERN (first parameter).
- An optional third parameter gives the numeric priority
- (defaults to 80).
- +++ option_clear(self):
- Clear the option database.
- It will be reloaded if option_add is called.
- +++ option_get(self, name, className):
- Return the value for an option NAME for this widget
- with CLASSNAME.
- Values with higher priority override lower values.
- +++ option_readfile(self, fileName, priority=None):
- Read file FILENAME into the option database.
- An optional second parameter gives the numeric
- priority.
- +++ pack_propagate(self, flag=['_noarg_']):
- is given the current setting will be returned.
- +++ pack_slaves(self):
- +++ place_slaves(self):
- +++ propagate = pack_propagate(self, flag=['_noarg_']):
- +++ quit(self):
- Quit the Tcl interpreter. All widgets will be destroyed.
- +++ register = _register(self, func, subst=1):
- Return a newly created Tcl function. If this
- function is called, the Python function FUNC will
- be executed. An optional function SUBST can
- be given which will be executed before FUNC.
- +++ rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
- +++ selection_clear(self, **kw):
- Clear the current X selection.
- +++ selection_get(self, **kw):
- Return the contents of the current X selection.
- A keyword parameter selection specifies the name of
- the selection and defaults to PRIMARY. A keyword
- parameter display of specifies a widget on the display
- to use. A keyword parameter type specifies the form of data to be
- fetched, defaulting to STRING except on X11, where UTF8_STRING is tried
- before STRING.
- +++ selection_handle(self, command, **kw):
- Specify a function COMMAND to call if the X
- selection owned by this widget is queried by another
- This function must return the contents of the
- selection. The function will be called with the
- arguments OFFSET and LENGTH which allows the chunking
- of very long selections. The following keyword
- parameters can be provided:
- selection - name of the selection (default PRIMARY),
- type - type of the selection (e.g. STRING, FILE_NAME).
- +++ selection_own(self, **kw):
- Become owner of X selection.
- the selection (default PRIMARY).
- +++ selection_own_get(self, **kw):
- Return owner of X selection.
- The following keyword parameter can
- be provided:
- +++ send(self, interp, cmd, *args):
- Send Tcl command CMD to different interpreter INTERP to be executed.
- +++ setvar(self, name='1'):
- Set Tcl variable NAME to VALUE.
- +++ size = grid_size(self):
- +++ slaves = pack_slaves(self):
- +++ tk_bisque(self):
- Change the color scheme to light brown as used in Tk 3.6 and before.
- +++ tk_focusFollowsMouse(self):
- The widget under mouse will get automatically focus. Can not
- be disabled easily.
- +++ tk_focusNext(self):
- Return the next widget in the focus order which follows
- widget which has currently the focus.
- The focus order first goes to the next child, then to
- the children of the child recursively and then to the
- next sibling which is higher in the stacking order. A
- widget is omitted if it has the takefocus resource set
- to 0.
- +++ tk_focusPrev(self):
- Return previous widget in the focus order. See tk_focusNext for details.
- +++ tk_menuBar(self, *args):
- Do not use. Needed in Tk 3.6 and earlier.
- +++ tk_setPalette(self, *args, **kw):
- Set a new color scheme for all widget elements.
- A single color as argument will cause that all colors of Tk
- widget elements are derived from this.
- Alternatively several keyword parameters and its associated
- colors can be given. The following keywords are valid:
- activeBackground, foreground, selectColor,
- activeForeground, highlightBackground, selectBackground,
- background, highlightColor, selectForeground,
- disabledForeground, insertBackground, troughColor.
- +++ tk_strictMotif(self, boolean=None):
- Set Tcl internal variable, whether the look and feel
- should adhere to Motif.
- A parameter of 1 means adhere to Motif (e.g. no color
- change if mouse passes over slider).
- Returns the set value.
- +++ tkraise(self, aboveThis=None):
- +++ unbind(self, sequence, funcid=None):
- Unbind for this widget for event SEQUENCE the
- function identified with FUNCID.
- +++ unbind_all(self, sequence):
- Unbind for all widgets for event SEQUENCE all functions.
- +++ unbind_class(self, className, sequence):
- Unbind for a all widgets with bindtag CLASSNAME for event SEQUENCE
- all functions.
- +++ update(self):
- Enter event loop until all pending events have been processed by Tcl.
- +++ update_idletasks(self):
- Enter event loop until all idle callbacks have been called. This
- will update the display of windows but not process events caused by
- the user.
- +++ wait_variable(self, name='PY_VAR'):
- Wait until the variable is modified.
- A parameter of type DoubleVar or
- BooleanVar must be given.
- +++ wait_visibility(self, window=None):
- Wait until the visibility of a WIDGET changes
- (e.g. it appears).
- If no parameter is given self is used.
- +++ wait_window(self, window=None):
- Wait until a WIDGET is destroyed.
- +++ waitvar = wait_variable(self, name='PY_VAR'):
- +++ winfo_atom(self, name, display of=0):
- Return integer which represents atom NAME.
- +++ winfo_atomname(self, id, display of=0):
- Return name of atom with identifier ID.
- +++ winfo_cells(self):
- Return number of cells in the colormap for this widget.
- +++ winfo_children(self):
- Return a list of all widgets which are children of this widget.
- +++ winfo_class(self):
- Return window class name of this widget.
- +++ winfo_colormapfull(self):
- Return true if at the last color request the colormap was full.
- +++ winfo_containing(self, rootX, rootY, display of=0):
- Return the widget which is at the root coordinates ROOTX, ROOTY.
- +++ winfo_depth(self):
- Return the number of bits per pixel.
- +++ winfo_exists(self):
- Return true if this widget exists.
- +++ winfo_fpixels(self, number):
- Return the number of pixels for the given distance NUMBER
- (e.g. "3c") as float.
- +++ winfo_geometry(self):
- Return geometry string for this widget in the form "widthxheight+X+Y".
- +++ winfo_height(self):
- Return height of this widget.
- +++ winfo_id(self):
- Return identifier ID for this widget.
- +++ winfo_interps(self, display of=0):
- Return the name of all Tcl interpreters for this display.
- +++ winfo_ismapped(self):
- Return true if this widget is mapped.
- +++ winfo_manager(self):
- Return the window mananger name for this widget.
- +++ winfo_name(self):
- Return the name of this widget.
- +++ winfo_parent(self):
- Return the name of the parent of this widget.
- +++ winfo_pathname(self, id, display of=0):
- Return the pathname of the widget given by ID.
- +++ winfo_pixels(self, number):
- Rounded integer value of winfo_fpixels.
- +++ winfo_pointerx(self):
- Return the x coordinate of the pointer on the root window.
- +++ winfo_pointerxy(self):
- Return a tuple of x and y coordinates of the pointer on the root window.
- +++ winfo_pointery(self):
- Return the y coordinate of the pointer on the root window.
- +++ winfo_reqheight(self):
- Return requested height of this widget.
- +++ winfo_reqwidth(self):
- Return requested width of this widget.
- +++ winfo_rgb(self, color):
- Return tuple of decimal values for red, green, blue for
- COLOR in this widget.
- +++ winfo_rootx(self):
- Return x coordinate of upper left corner of this widget on the
- root window.
- +++ winfo_rooty(self):
- Return y coordinate of upper left corner of this widget on the
- +++ winfo_screen(self):
- Return the screen name of this widget.
- +++ winfo_screencells(self):
- Return the number of the cells in the colormap of the screen
- of this widget.
- +++ winfo_screendepth(self):
- Return the number of bits per pixel of the root window of the
- screen of this widget.
- +++ winfo_screenheight(self):
- Return the number of pixels of the height of the screen of this widget
- in pixel.
- +++ winfo_screenmmheight(self):
- Return the number of pixels of the height of the screen of
- this widget in mm.
- +++ winfo_screenmmwidth(self):
- Return the number of pixels of the width of the screen of
- +++ winfo_screenvisual(self):
- Return one of the strings directcolor, grayscale, pseudocolor,
- staticcolor, staticgray, or truecolor for the default
- colormodel of this screen.
- +++ winfo_screenwidth(self):
- this widget in pixel.
- +++ winfo_server(self):
- Return information of the X-Server of the screen of this widget in
- the form "XmajorRminor vendor vendorVersion".
- +++ winfo_toplevel(self):
- Return the toplevel widget of this widget.
- +++ winfo_viewable(self):
- Return true if the widget and all its higher ancestors are mapped.
- +++ winfo_visual(self):
- staticcolor, staticgray, or truecolor for the
- colormodel of this widget.
- +++ winfo_visualid(self):
- Return the X identifier for the visual for this widget.
- +++ winfo_visualsavailable(self, includeids=0):
- Return a list of all visuals available for the screen
- Each item in the list consists of a visual name (see winfo_visual), a
- depth and if INCLUDEIDS=1 is given also the X identifier.
- +++ winfo_vrootheight(self):
- Return the height of the virtual root window associated with this
- widget in pixels. If there is no virtual root window return the
- height of the screen.
- +++ winfo_vrootwidth(self):
- Return the width of the virtual root window associated with this
- widget in pixel. If there is no virtual root window return the
- width of the screen.
- +++ winfo_vrootx(self):
- Return the x offset of the virtual root relative to the root
- window of the screen of this widget.
- +++ winfo_vrooty(self):
- Return the y offset of the virtual root relative to the root
- +++ winfo_width(self):
- Return the width of this widget.
- +++ winfo_x(self):
- Return the x coordinate of the upper left corner of this widget
- in the parent.
- +++ winfo_y(self):
- Return the y coordinate of the upper left corner of this widgetData and other attributes inherited from Misc:
- +++ getdouble = <type 'float'>:
- float(x) -> floating point number
- Convert a string or number to a floating point number, if possible.
- +++ getint = <type 'int'>:
- int(x=0) -> int or long
- int(x, base=10) -> int or long
- Convert a number or string to an integer, or return 0 if no arguments
- are given. If x is floating point, the conversion truncates towards zero.
- If x is outside the integer range, the function returns a long instead.
- If x is not a number or if base is given, then x must be a string or
- Unicode object representing an integer literal in the given base. The
- literal can be preceded by '+' or '-' and be surrounded by whitespace.
- The base defaults to 10. Valid bases are 0 and 2-36. Base 0 means to
- interpret the base from the string as an integer literal.
- >>> int('0b100', base=0)
- Image *****
- Widget which can display a bitmap.
- +++ BitmapImage-__init__(self, name=None, **kw):
- Create a bitmap with NAME.
- Valid resource names: background, data, file, foreground, maskdata, maskfile
- ...
- Methods inherited from Image:
- +++ BitmapImage-__del__(self)
- +++ BitmapImage-__getitem__(self, key)
- +++ BitmapImage-__setitem__(self, key, value)
- +++ BitmapImage-__str__(self)
- +++ BitmapImage-config = configure(self, **kw):
- Configure the image.
- +++ BitmapImage-configure(self, **kw):
- +++ BitmapImage-height(self):
- Return the height of the image.
- +++ BitmapImage-type(self):
- Return the type of the imgage, e.g. "photo" or "bitmap".
- +++ BitmapImage-width(self):
- Return the width of the image.
- Variable *****
- Value holder for boolean variables.
- +++ BooleanVar-__init__(self, master=None):
- Construct a boolean variable.
- MASTER can be given as master widget.
- VALUE is an optional value (defaults to False)
- NAME is an optional Tcl name (defaults to PY_VARnum).
- If NAME matches an existing variable and VALUE is omitted
- then the existing value is retained.
- +++ BooleanVar-get(self):
- Return the value of the variable as a bool.
- +++ BooleanVar-set(self, value):
- Set the variable to VALUE.Methods inherited from Variable:
- +++ BooleanVar-__del__(self):
- Unset the variable in Tcl.
- +++ BooleanVar-__eq__(self, other):
- Comparison for equality (==).
- Note: if the Variable's master matters to behavior
- also compare self.+++ _master == other._master
- +++ BooleanVar-__str__(self):
- Return the name of the variable in Tcl.
- +++ BooleanVar-trace = trace_variable(self, mode, callback):
- Define a trace callback for the variable.
- MODE is one of "r", "w", "u" for read, write, undefine.
- CALLBACK must be a function which is called when
- the variable is read, written or undefined.
- Return the name of the callback.
- +++ BooleanVar-trace_variable(self, mode, callback):
- +++ BooleanVar-trace_vdelete(self, mode, cbname):
- Delete the trace callback for a variable.
- CBNAME is the name of the callback returned from trace_variable or trace.
- +++ BooleanVar-trace_vinfo(self):
- Return all trace callback information.
- Widget *****
- Button widget.
- *** Method resolution order:
- Button
- Widget
- BaseWidget
- Misc
- Pack
- Place
- Grid
- ...
- Methods defined here:
- +++ Button-__init__(self, master={}, **kw):
- Construct a button widget with the parent MASTER.
- STANDARD OPTIONS
- activebackground, activeforeground, anchor,
- background, bitmap, borderwidth, cursor,
- disabledforeground, font, foreground
- highlightbackground, highlightcolor,
- highlightthickness, image, justify,
- padx, pady, relief, repeatdelay,
- repeatinterval, takefocus, text,
- textvariable, underline, wraplength
- WIDGET-SPECIFIC OPTIONS
- command, compound, default, height,
- overrelief, state, width
- +++ Button-flash(self):
- Flash the button.
- This is accomplished by redisplaying
- the button several times, alternating between active and
- normal colors. At the end of the flash the button is left
- in the same normal/active state as when the command was
- invoked. This command is ignored if the button's state is
- disabled.
- +++ Button-invoke(self):
- Invoke the command associated with the button.
- The return value is the return value from the command,
- or an empty string if there is no command associated with
- the button. This command is ignored if the button's state
- is disabled.
- +++ Button-tkButtonDown(self, *dummy)
- +++ Button-tkButtonEnter(self, *dummy)
- +++ Button-tkButtonInvoke(self, *dummy)
- +++ Button-tkButtonLeave(self, *dummy)
- +++ Button-tkButtonUp(self, *dummy)Methods inherited from BaseWidget:
- +++ Button-destroy(self):Button-__contains__(self, key)
- +++ Button-__getitem__ = cget(self, key):
- +++ Button-__setitem__(self, key, value)
- +++ Button-__str__(self):
- +++ Button-after(self, ms, func=None, *args):
- +++ Button-after_cancel(self, id):
- +++ Button-after_idle(self, func, *args):
- +++ Button-bbox = grid_bbox(self, column=None):
- +++ Button-bell(self, display of=0):
- +++ Button-bind(self, sequence=None):Button-bind_all(self, sequence=None):
- +++ Button-bind_class(self, className, sequence=None):
- +++ Button-bindtags(self, tagList=None):
- +++ Button-cget(self, key):
- +++ Button-clipboard_append(self, string, **kw):
- +++ Button-clipboard_clear(self, **kw):
- +++ Button-clipboard_get(self, **kw):Button-colormodel(self, value=None):
- +++ Button-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
- +++ Button-config = configure(self, cnf=None, **kw):
- +++ Button-configure(self, cnf=None, **kw):
- +++ Button-deletecommand(self, name):
- +++ Button-event_add(self, virtual, *sequences):
- +++ Button-event_delete(self, virtual, *sequences):
- +++ Button-event_generate(self, sequence, **kw):
- +++ Button-event_info(self, virtual=None):
- +++ Button-focus = focus_set(self):
- +++ Button-focus_display of(self):
- +++ Button-focus_force(self):
- +++ Button-focus_get(self):
- +++ Button-focus_lastfor(self):
- +++ Button-focus_set(self):
- +++ Button-getboolean(self, s):
- +++ Button-getvar(self, name='PY_VAR'):
- +++ Button-grab_current(self):
- +++ Button-grab_release(self):
- +++ Button-grab_set(self):
- +++ Button-grab_set_global(self):
- +++ Button-grab_status(self):
- +++ Button-grid_bbox(self, column=None):
- +++ Button-grid_columnconfigure(self, index, cnf={}, **kw):
- +++ Button-grid_location(self, x, y):
- +++ Button-grid_propagate(self, flag=['_noarg_']):
- +++ Button-grid_rowconfigure(self, index, cnf={}, **kw):
- +++ Button-grid_size(self):
- +++ Button-grid_slaves(self, row=None):
- +++ Button-image_names(self):
- +++ Button-image_types(self):
- +++ Button-keys(self):
- +++ Button-lift = tkraise(self, aboveThis=None):
- +++ Button-lower(self, belowThis=None):
- +++ Button-mainloop(self, n=0):
- +++ Button-nametowidget(self, name):
- +++ Button-option_add(self, pattern, value, priority=None):
- +++ Button-option_clear(self):
- +++ Button-option_get(self, name, className):
- +++ Button-option_readfile(self, fileName, priority=None):
- +++ Button-pack_propagate(self, flag=['_noarg_']):
- +++ Button-pack_slaves(self):
- +++ Button-place_slaves(self):
- +++ Button-propagate = pack_propagate(self, flag=['_noarg_']):
- +++ Button-quit(self):
- +++ Button-register = _register(self, func, subst=1):
- +++ Button-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
- +++ Button-selection_clear(self, **kw):
- +++ Button-selection_get(self, **kw):
- +++ Button-selection_handle(self, command, **kw):
- +++ Button-selection_own(self, **kw):
- +++ Button-selection_own_get(self, **kw):
- +++ Button-send(self, interp, cmd, *args):
- +++ Button-setvar(self, name='1'):
- +++ Button-size = grid_size(self):
- +++ Button-slaves = pack_slaves(self):
- +++ Button-tk_bisque(self):
- +++ Button-tk_focusFollowsMouse(self):
- +++ Button-tk_focusNext(self):
- +++ Button-tk_focusPrev(self):
- +++ Button-tk_menuBar(self, *args):
- +++ Button-tk_setPalette(self, *args, **kw):
- +++ Button-tk_strictMotif(self, boolean=None):
- +++ Button-tkraise(self, aboveThis=None):
- +++ Button-unbind(self, sequence, funcid=None):
- +++ Button-unbind_all(self, sequence):
- +++ Button-unbind_class(self, className, sequence):
- +++ Button-update(self):
- +++ Button-update_idletasks(self):
- +++ Button-wait_variable(self, name='PY_VAR'):
- +++ Button-wait_visibility(self, window=None):
- +++ Button-wait_window(self, window=None):
- +++ Button-waitvar = wait_variable(self, name='PY_VAR'):
- +++ Button-winfo_atom(self, name, display of=0):
- +++ Button-winfo_atomname(self, id, display of=0):
- +++ Button-winfo_cells(self):
- +++ Button-winfo_children(self):
- +++ Button-winfo_class(self):
- +++ Button-winfo_colormapfull(self):
- +++ Button-winfo_containing(self, rootX, rootY, display of=0):
- +++ Button-winfo_depth(self):
- +++ Button-winfo_exists(self):
- +++ Button-winfo_fpixels(self, number):
- +++ Button-winfo_geometry(self):
- +++ Button-winfo_height(self):
- +++ Button-winfo_id(self):
- +++ Button-winfo_interps(self, display of=0):
- +++ Button-winfo_ismapped(self):
- +++ Button-winfo_manager(self):
- +++ Button-winfo_name(self):
- +++ Button-winfo_parent(self):
- +++ Button-winfo_pathname(self, id, display of=0):
- +++ Button-winfo_pixels(self, number):
- +++ Button-winfo_pointerx(self):
- +++ Button-winfo_pointerxy(self):
- +++ Button-winfo_pointery(self):
- +++ Button-winfo_reqheight(self):
- +++ Button-winfo_reqwidth(self):
- +++ Button-winfo_rgb(self, color):
- +++ Button-winfo_rootx(self):
- +++ Button-winfo_rooty(self):
- +++ Button-winfo_screen(self):
- +++ Button-winfo_screencells(self):
- +++ Button-winfo_screendepth(self):
- +++ Button-winfo_screenheight(self):
- +++ Button-winfo_screenmmheight(self):
- +++ Button-winfo_screenmmwidth(self):
- +++ Button-winfo_screenvisual(self):
- +++ Button-winfo_screenwidth(self):
- +++ Button-winfo_server(self):
- +++ Button-winfo_toplevel(self):
- +++ Button-winfo_viewable(self):
- +++ Button-winfo_visual(self):
- +++ Button-winfo_visualid(self):
- +++ Button-winfo_visualsavailable(self, includeids=0):
- +++ Button-winfo_vrootheight(self):
- +++ Button-winfo_vrootwidth(self):
- +++ Button-winfo_vrootx(self):
- +++ Button-winfo_vrooty(self):
- +++ Button-winfo_width(self):
- +++ Button-winfo_x(self):
- +++ Button-winfo_y(self):
- ...
- Methods inherited from Pack:
- +++ Button-forget = pack_forget(self):
- Unmap this widget and do not use it for the packing order.
- +++ Button-info = pack_info(self):
- Return information about the packing options
- for this widget.
- +++ Button-pack = pack_configure(self, cnf={}, **kw):
- Pack a widget in the parent widget. Use as options:
- after=widget - pack it after you have packed widget
- anchor=NSEW (or subset) - position widget according to
- given direction
- before=widget - pack it before you will pack widget
- expand=bool - expand widget if parent size grows
- fill=NONE or X or Y or BOTH - fill widget if widget grows
- in=master - use master to contain this widget
- in_=master - see 'in' option description
- ipadx=amount - add internal padding in x direction
- ipady=amount - add internal padding in y direction
- padx=amount - add padding in x direction
- pady=amount - add padding in y direction
- side=TOP or BOTTOM or LEFT or RIGHT - where to add this widget.
- +++ Button-pack_configure(self, cnf={}, **kw):
- +++ Button-pack_forget(self):
- +++ Button-pack_info(self):Methods inherited from Place:
- +++ Button-place = place_configure(self, cnf={}, **kw):
- Place a widget in the parent widget. Use as options:
- in=master - master relative to which the widget is placed
- x=amount - locate anchor of this widget at position x of master
- y=amount - locate anchor of this widget at position y of master
- relx=amount - locate anchor of this widget between 0.0 and 1.0
- relative to width of master (1.0 is right edge)
- rely=amount - locate anchor of this widget between 0.0 and 1.0
- relative to height of master (1.0 is bottom edge)
- anchor=NSEW (or subset) - position anchor according to given direction
- width=amount - width of this widget in pixel
- height=amount - height of this widget in pixel
- relwidth=amount - width of this widget between 0.0 and 1.0
- relative to width of master (1.0 is the same width
- as the master)
- relheight=amount - height of this widget between 0.0 and 1.0
- relative to height of master (1.0 is the same
- height as the master)
- bordermode="inside" or "outside" - whether to take border width of
- master widget into account
- +++ Button-place_configure(self, cnf={}, **kw):
- +++ Button-place_forget(self):
- Unmap this widget.
- +++ Button-place_info(self):
- Return information about the placing optionsMethods inherited from Grid:
- +++ Button-grid = grid_configure(self, cnf={}, **kw):
- Position a widget in the parent widget in a grid. Use as options:
- column=number - use cell identified with given column (starting with 0)
- columnspan=number - this widget will span several columns
- row=number - use cell identified with given row (starting with 0)
- rowspan=number - this widget will span several rows
- sticky=NSEW - if cell is larger on which sides will this
- widget stick to the cell boundary
- +++ Button-grid_configure(self, cnf={}, **kw):
- +++ Button-grid_forget(self):
- +++ Button-grid_info(self):
- Return information about the options
- for positioning this widget in a grid.
- +++ Button-grid_remove(self):
- Unmap this widget but remember the grid options.
- +++ Button-location = grid_location(self, x, y):
- *** class CallWrapper
- Internal class. Stores function to call when some user
- defined Tcl function is called e.g. after an event occurred.
- +++ CallWrapper-__call__(self, *args):
- Apply first function SUBST to arguments, than FUNC.
- +++ CallWrapper-__init__(self, func, subst, widget):
- Store FUNC, SUBST and WIDGET as members.
- YView *****
- Canvas widget to display graphical elements like lines or text.
- Canvas
- XView
- YView
- ...
- +++ Canvas-__init__(self, master={}, **kw):
- Construct a canvas widget with the parent MASTER.
- Valid resource names: background, bd, bg, borderwidth, closeenough,
- confine, cursor, height, highlightbackground, highlightcolor,
- highlightthickness, insertbackground, insertborderwidth,
- insertofftime, insertontime, insertwidth, offset, relief,
- scrollregion, selectbackground, selectborderwidth, selectforeground,
- state, takefocus, width, xscrollcommand, xscrollincrement,
- yscrollcommand, yscrollincrement.
- +++ Canvas-addtag(self, *args):
- +++ Canvas-addtag_above(self, newtag, tagOrId):
- Add tag NEWTAG to all items above TAGORID.
- +++ Canvas-addtag_all(self, newtag):
- Add tag NEWTAG to all items.
- +++ Canvas-addtag_below(self, newtag, tagOrId):
- Add tag NEWTAG to all items below TAGORID.
- +++ Canvas-addtag_closest(self, newtag, x, y, halo=None):
- Add tag NEWTAG to item which is closest to pixel at X, Y.
- If several match take the top-most.
- All items closer than HALO are considered overlapping (all are
- closests). If START is specified the next below this tag is taken.
- +++ Canvas-addtag_enclosed(self, newtag, x1, y1, x2, y2):
- Add tag NEWTAG to all items in the rectangle defined
- by X1,Y1,X2,Y2.
- +++ Canvas-addtag_overlapping(self, newtag, x1, y1, x2, y2):
- Add tag NEWTAG to all items which overlap the rectangle
- defined by X1,Y1,X2,Y2.
- +++ Canvas-addtag_withtag(self, newtag, tagOrId):
- Add tag NEWTAG to all items with TAGORID.
- +++ Canvas-bbox(self, *args):
- Return a tuple of X1,Y1,X2,Y2 coordinates for a rectangle
- which encloses all items with tags specified as arguments.
- +++ Canvas-canvasx(self, screenx, gridspacing=None):
- Return the canvas x coordinate of pixel position SCREENX rounded
- to nearest multiple of GRIDSPACING units.
- +++ Canvas-canvasy(self, screeny, gridspacing=None):
- Return the canvas y coordinate of pixel position SCREENY rounded
- +++ Canvas-coords(self, *args):
- Return a list of coordinates for the item given in ARGS.
- +++ Canvas-create_arc(self, *args, **kw):
- Create arc shaped region with coordinates x1,y1,x2,y2.
- +++ Canvas-create_bitmap(self, *args, **kw):
- Create bitmap with coordinates x1,y1.
- +++ Canvas-create_image(self, *args, **kw):
- Create image item with coordinates x1,y1.
- +++ Canvas-create_line(self, *args, **kw):
- Create line with coordinates x1,y1,
- +++ Canvas-create_oval(self, *args, **kw):
- Create oval with coordinates x1,y1,x2,y2.
- +++ Canvas-create_polygon(self, *args, **kw):
- Create polygon with coordinates x1,y1,
- +++ Canvas-create_rectangle(self, *args, **kw):
- Create rectangle with coordinates x1,y1,x2,y2.
- +++ Canvas-create_text(self, *args, **kw):
- Create text with coordinates x1,y1.
- +++ Canvas-create_window(self, *args, **kw):
- Create window with coordinates x1,y1,x2,y2.
- +++ Canvas-dchars(self, *args):
- Delete characters of text items identified by tag or id in ARGS (possibly
- several times) from FIRST to LAST character (including).
- +++ Canvas-delete(self, *args):
- Delete items identified by all tag or ids contained in ARGS.
- +++ Canvas-dtag(self, *args):
- Delete tag or id given as last arguments in ARGS from items
- identified by first argument in ARGS.
- +++ Canvas-find(self, *args):
- +++ Canvas-find_above(self, tagOrId):
- Return items above TAGORID.
- +++ Canvas-find_all(self):
- Return all items.
- +++ Canvas-find_below(self, tagOrId):
- Return all items below TAGORID.
- +++ Canvas-find_closest(self, x, y, halo=None):
- Return item which is closest to pixel at X, Y.
- +++ Canvas-find_enclosed(self, x1, y1, x2, y2):
- Return all items in rectangle defined
- +++ Canvas-find_overlapping(self, x1, y1, x2, y2):
- Return all items which overlap the rectangle
- +++ Canvas-find_withtag(self, tagOrId):
- Return all items with TAGORID.
- +++ Canvas-focus(self, *args):
- Set focus to the first item specified in ARGS.
- +++ Canvas-gettags(self, *args):
- Return tags associated with the first item specified in ARGS.
- +++ Canvas-icursor(self, *args):
- Set cursor at position POS in the item identified by TAGORID.
- In ARGS TAGORID must be first.
- +++ Canvas-index(self, *args):
- Return position of cursor as integer in item specified in ARGS.
- +++ Canvas-insert(self, *args):
- Insert TEXT in item TAGORID at position POS. ARGS must
- be TAGORID POS TEXT.
- +++ Canvas-itemcget(self, tagOrId, option):
- Return the resource value for an OPTION for item TAGORID.
- +++ Canvas-itemconfig = itemconfigure(self, tagOrId, cnf=None, **kw)
- +++ Canvas-itemconfigure(self, tagOrId, cnf=None, **kw):
- Configure resources of an item TAGORID.
- the allowed keyword arguments call the method without arguments.
- +++ Canvas-lift = tag_raise(self, *args)
- +++ Canvas-lower = tag_lower(self, *args)
- +++ Canvas-move(self, *args):
- Move an item TAGORID given in ARGS.
- +++ Canvas-postscript(self, cnf={}, **kw):
- Print the contents of the canvas to a postscript
- file. Valid options: colormap, colormode, file, fontmap,
- height, pageanchor, pageheight, pagewidth, pagex, pagey,
- rotate, witdh, x, y.
- +++ Canvas-scale(self, *args):
- Scale item TAGORID with XORIGIN, YORIGIN, XSCALE, YSCALE.
- +++ Canvas-scan_dragto(self, x, y, gain=10):
- Adjust the view of the canvas to GAIN times the
- difference between X and Y and the coordinates given in
- scan_mark.
- +++ Canvas-scan_mark(self, x, y):
- Remember the current X, Y coordinates.
- +++ Canvas-select_adjust(self, tagOrId, index):
- Adjust the end of the selection near the cursor of an item TAGORID to index.
- +++ Canvas-select_clear(self):
- Clear the selection if it is in this widget.
- +++ Canvas-select_from(self, tagOrId, index):
- Set the fixed end of a selection in item TAGORID to INDEX.
- +++ Canvas-select_item(self):
- Return the item which has the selection.
- +++ Canvas-select_to(self, tagOrId, index):
- Set the variable end of a selection in item TAGORID to INDEX.
- +++ Canvas-tag_bind(self, tagOrId, sequence=None):
- Bind to all items with TAGORID at event SEQUENCE a call to function FUNC.
- An additional boolean parameter ADD specifies whether FUNC will be
- called additionally to the other bound function or whether it will
- replace the previous function. See bind for the return value.
- +++ Canvas-tag_lower(self, *args):
- Lower an item TAGORID given in ARGS
- (optional below another item).
- +++ Canvas-tag_raise(self, *args):
- Raise an item TAGORID given in ARGS
- (optional above another item).
- +++ Canvas-tag_unbind(self, tagOrId, sequence, funcid=None):
- Unbind for all items with TAGORID for event SEQUENCE the
- +++ Canvas-tkraise = tag_raise(self, *args)
- +++ Canvas-type(self, tagOrId):
- Return the type of the item TAGORID.Canvas-destroy(self):Canvas-__contains__(self, key)
- +++ Canvas-__getitem__ = cget(self, key):
- +++ Canvas-__setitem__(self, key, value)
- +++ Canvas-__str__(self):
- +++ Canvas-after(self, ms, func=None, *args):
- +++ Canvas-after_cancel(self, id):
- +++ Canvas-after_idle(self, func, *args):
- +++ Canvas-bell(self, display of=0):
- +++ Canvas-bind(self, sequence=None):Canvas-bind_all(self, sequence=None):
- +++ Canvas-bind_class(self, className, sequence=None):
- +++ Canvas-bindtags(self, tagList=None):
- +++ Canvas-cget(self, key):
- +++ Canvas-clipboard_append(self, string, **kw):
- +++ Canvas-clipboard_clear(self, **kw):
- +++ Canvas-clipboard_get(self, **kw):Canvas-colormodel(self, value=None):
- +++ Canvas-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
- +++ Canvas-config = configure(self, cnf=None, **kw):
- +++ Canvas-configure(self, cnf=None, **kw):
- +++ Canvas-deletecommand(self, name):
- +++ Canvas-event_add(self, virtual, *sequences):
- +++ Canvas-event_delete(self, virtual, *sequences):
- +++ Canvas-event_generate(self, sequence, **kw):
- +++ Canvas-event_info(self, virtual=None):
- +++ Canvas-focus_display of(self):
- +++ Canvas-focus_force(self):
- +++ Canvas-focus_get(self):
- +++ Canvas-focus_lastfor(self):
- +++ Canvas-focus_set(self):
- +++ Canvas-getboolean(self, s):
- +++ Canvas-getvar(self, name='PY_VAR'):
- +++ Canvas-grab_current(self):
- +++ Canvas-grab_release(self):
- +++ Canvas-grab_set(self):
- +++ Canvas-grab_set_global(self):
- +++ Canvas-grab_status(self):
- +++ Canvas-grid_bbox(self, column=None):
- +++ Canvas-grid_columnconfigure(self, index, cnf={}, **kw):
- +++ Canvas-grid_location(self, x, y):
- +++ Canvas-grid_propagate(self, flag=['_noarg_']):
- +++ Canvas-grid_rowconfigure(self, index, cnf={}, **kw):
- +++ Canvas-grid_size(self):
- +++ Canvas-grid_slaves(self, row=None):
- +++ Canvas-image_names(self):
- +++ Canvas-image_types(self):
- +++ Canvas-keys(self):
- +++ Canvas-mainloop(self, n=0):
- +++ Canvas-nametowidget(self, name):
- +++ Canvas-option_add(self, pattern, value, priority=None):
- +++ Canvas-option_clear(self):
- +++ Canvas-option_get(self, name, className):
- +++ Canvas-option_readfile(self, fileName, priority=None):
- +++ Canvas-pack_propagate(self, flag=['_noarg_']):
- +++ Canvas-pack_slaves(self):
- +++ Canvas-place_slaves(self):
- +++ Canvas-propagate = pack_propagate(self, flag=['_noarg_']):
- +++ Canvas-quit(self):
- +++ Canvas-register = _register(self, func, subst=1):
- +++ Canvas-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
- +++ Canvas-selection_clear(self, **kw):
- +++ Canvas-selection_get(self, **kw):
- +++ Canvas-selection_handle(self, command, **kw):
- +++ Canvas-selection_own(self, **kw):
- +++ Canvas-selection_own_get(self, **kw):
- +++ Canvas-send(self, interp, cmd, *args):
- +++ Canvas-setvar(self, name='1'):
- +++ Canvas-size = grid_size(self):
- +++ Canvas-slaves = pack_slaves(self):
- +++ Canvas-tk_bisque(self):
- +++ Canvas-tk_focusFollowsMouse(self):
- +++ Canvas-tk_focusNext(self):
- +++ Canvas-tk_focusPrev(self):
- +++ Canvas-tk_menuBar(self, *args):
- +++ Canvas-tk_setPalette(self, *args, **kw):
- +++ Canvas-tk_strictMotif(self, boolean=None):
- +++ Canvas-unbind(self, sequence, funcid=None):
- +++ Canvas-unbind_all(self, sequence):
- +++ Canvas-unbind_class(self, className, sequence):
- +++ Canvas-update(self):
- +++ Canvas-update_idletasks(self):
- +++ Canvas-wait_variable(self, name='PY_VAR'):
- +++ Canvas-wait_visibility(self, window=None):
- +++ Canvas-wait_window(self, window=None):
- +++ Canvas-waitvar = wait_variable(self, name='PY_VAR'):
- +++ Canvas-winfo_atom(self, name, display of=0):
- +++ Canvas-winfo_atomname(self, id, display of=0):
- +++ Canvas-winfo_cells(self):
- +++ Canvas-winfo_children(self):
- +++ Canvas-winfo_class(self):
- +++ Canvas-winfo_colormapfull(self):
- +++ Canvas-winfo_containing(self, rootX, rootY, display of=0):
- +++ Canvas-winfo_depth(self):
- +++ Canvas-winfo_exists(self):
- +++ Canvas-winfo_fpixels(self, number):
- +++ Canvas-winfo_geometry(self):
- +++ Canvas-winfo_height(self):
- +++ Canvas-winfo_id(self):
- +++ Canvas-winfo_interps(self, display of=0):
- +++ Canvas-winfo_ismapped(self):
- +++ Canvas-winfo_manager(self):
- +++ Canvas-winfo_name(self):
- +++ Canvas-winfo_parent(self):
- +++ Canvas-winfo_pathname(self, id, display of=0):
- +++ Canvas-winfo_pixels(self, number):
- +++ Canvas-winfo_pointerx(self):
- +++ Canvas-winfo_pointerxy(self):
- +++ Canvas-winfo_pointery(self):
- +++ Canvas-winfo_reqheight(self):
- +++ Canvas-winfo_reqwidth(self):
- +++ Canvas-winfo_rgb(self, color):
- +++ Canvas-winfo_rootx(self):
- +++ Canvas-winfo_rooty(self):
- +++ Canvas-winfo_screen(self):
- +++ Canvas-winfo_screencells(self):
- +++ Canvas-winfo_screendepth(self):
- +++ Canvas-winfo_screenheight(self):
- +++ Canvas-winfo_screenmmheight(self):
- +++ Canvas-winfo_screenmmwidth(self):
- +++ Canvas-winfo_screenvisual(self):
- +++ Canvas-winfo_screenwidth(self):
- +++ Canvas-winfo_server(self):
- +++ Canvas-winfo_toplevel(self):
- +++ Canvas-winfo_viewable(self):
- +++ Canvas-winfo_visual(self):
- +++ Canvas-winfo_visualid(self):
- +++ Canvas-winfo_visualsavailable(self, includeids=0):
- +++ Canvas-winfo_vrootheight(self):
- +++ Canvas-winfo_vrootwidth(self):
- +++ Canvas-winfo_vrootx(self):
- +++ Canvas-winfo_vrooty(self):
- +++ Canvas-winfo_width(self):
- +++ Canvas-winfo_x(self):
- +++ Canvas-winfo_y(self):
- +++ Canvas-forget = pack_forget(self):
- +++ Canvas-info = pack_info(self):
- +++ Canvas-pack = pack_configure(self, cnf={}, **kw):
- +++ Canvas-pack_configure(self, cnf={}, **kw):
- +++ Canvas-pack_forget(self):
- +++ Canvas-pack_info(self):Canvas-place = place_configure(self, cnf={}, **kw):
- +++ Canvas-place_configure(self, cnf={}, **kw):
- +++ Canvas-place_forget(self):
- +++ Canvas-place_info(self):Canvas-grid = grid_configure(self, cnf={}, **kw):
- +++ Canvas-grid_configure(self, cnf={}, **kw):
- +++ Canvas-grid_forget(self):
- +++ Canvas-grid_info(self):
- +++ Canvas-grid_remove(self):
- +++ Canvas-location = grid_location(self, x, y):Methods inherited from XView:
- +++ Canvas-xview(self, *args):
- Query and change the horizontal position of the view.
- +++ Canvas-xview_moveto(self, fraction):
- Adjusts the view in the window so that FRACTION of the
- total width of the canvas is off-screen to the left.
- +++ Canvas-xview_scroll(self, number, what):
- Shift the x-view according to NUMBER which is measured in "units"
- or "pages" (WHAT).Methods inherited from YView:
- +++ Canvas-yview(self, *args):
- Query and change the vertical position of the view.
- +++ Canvas-yview_moveto(self, fraction):
- total height of the canvas is off-screen to the top.
- +++ Canvas-yview_scroll(self, number, what):
- Shift the y-view according to NUMBER which is measured in
- "units" or "pages" (WHAT).
- Checkbutton widget which is either in on- or off-state.
- Checkbutton
- ...
- +++ Checkbutton-__init__(self, master={}, **kw):
- Construct a checkbutton widget with the parent MASTER.
- Valid resource names: activebackground, activeforeground, anchor,
- background, bd, bg, bitmap, borderwidth, command, cursor,
- disabledforeground, fg, font, foreground, height,
- highlightbackground, highlightcolor, highlightthickness, image,
- indicatoron, justify, offvalue, onvalue, padx, pady, relief,
- selectcolor, selectimage, state, takefocus, text, textvariable,
- underline, variable, width, wraplength.
- +++ Checkbutton-deselect(self):
- Put the button in off-state.
- +++ Checkbutton-flash(self):
- +++ Checkbutton-invoke(self):
- Toggle the button and invoke a command if given as resource.
- +++ Checkbutton-select(self):
- Put the button in on-state.
- +++ Checkbutton-toggle(self):
- Toggle the button.Checkbutton-destroy(self):Checkbutton-__contains__(self, key)
- +++ Checkbutton-__getitem__ = cget(self, key):
- +++ Checkbutton-__setitem__(self, key, value)
- +++ Checkbutton-__str__(self):
- +++ Checkbutton-after(self, ms, func=None, *args):
- +++ Checkbutton-after_cancel(self, id):
- +++ Checkbutton-after_idle(self, func, *args):
- +++ Checkbutton-bbox = grid_bbox(self, column=None):
- +++ Checkbutton-bell(self, display of=0):
- +++ Checkbutton-bind(self, sequence=None):Checkbutton-bind_all(self, sequence=None):
- +++ Checkbutton-bind_class(self, className, sequence=None):
- +++ Checkbutton-bindtags(self, tagList=None):
- +++ Checkbutton-cget(self, key):
- +++ Checkbutton-clipboard_append(self, string, **kw):
- +++ Checkbutton-clipboard_clear(self, **kw):
- +++ Checkbutton-clipboard_get(self, **kw):Checkbutton-colormodel(self, value=None):
- +++ Checkbutton-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
- +++ Checkbutton-config = configure(self, cnf=None, **kw):
- +++ Checkbutton-configure(self, cnf=None, **kw):
- +++ Checkbutton-deletecommand(self, name):
- +++ Checkbutton-event_add(self, virtual, *sequences):
- +++ Checkbutton-event_delete(self, virtual, *sequences):
- +++ Checkbutton-event_generate(self, sequence, **kw):
- +++ Checkbutton-event_info(self, virtual=None):
- +++ Checkbutton-focus = focus_set(self):
- +++ Checkbutton-focus_display of(self):
- +++ Checkbutton-focus_force(self):
- +++ Checkbutton-focus_get(self):
- +++ Checkbutton-focus_lastfor(self):
- +++ Checkbutton-focus_set(self):
- +++ Checkbutton-getboolean(self, s):
- +++ Checkbutton-getvar(self, name='PY_VAR'):
- +++ Checkbutton-grab_current(self):
- +++ Checkbutton-grab_release(self):
- +++ Checkbutton-grab_set(self):
- +++ Checkbutton-grab_set_global(self):
- +++ Checkbutton-grab_status(self):
- +++ Checkbutton-grid_bbox(self, column=None):
- +++ Checkbutton-grid_columnconfigure(self, index, cnf={}, **kw):
- +++ Checkbutton-grid_location(self, x, y):
- +++ Checkbutton-grid_propagate(self, flag=['_noarg_']):
- +++ Checkbutton-grid_rowconfigure(self, index, cnf={}, **kw):
- +++ Checkbutton-grid_size(self):
- +++ Checkbutton-grid_slaves(self, row=None):
- +++ Checkbutton-image_names(self):
- +++ Checkbutton-image_types(self):
- +++ Checkbutton-keys(self):
- +++ Checkbutton-lift = tkraise(self, aboveThis=None):
- +++ Checkbutton-lower(self, belowThis=None):
- +++ Checkbutton-mainloop(self, n=0):
- +++ Checkbutton-nametowidget(self, name):
- +++ Checkbutton-option_add(self, pattern, value, priority=None):
- +++ Checkbutton-option_clear(self):
- +++ Checkbutton-option_get(self, name, className):
- +++ Checkbutton-option_readfile(self, fileName, priority=None):
- +++ Checkbutton-pack_propagate(self, flag=['_noarg_']):
- +++ Checkbutton-pack_slaves(self):
- +++ Checkbutton-place_slaves(self):
- +++ Checkbutton-propagate = pack_propagate(self, flag=['_noarg_']):
- +++ Checkbutton-quit(self):
- +++ Checkbutton-register = _register(self, func, subst=1):
- +++ Checkbutton-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
- +++ Checkbutton-selection_clear(self, **kw):
- +++ Checkbutton-selection_get(self, **kw):
- +++ Checkbutton-selection_handle(self, command, **kw):
- +++ Checkbutton-selection_own(self, **kw):
- +++ Checkbutton-selection_own_get(self, **kw):
- +++ Checkbutton-send(self, interp, cmd, *args):
- +++ Checkbutton-setvar(self, name='1'):
- +++ Checkbutton-size = grid_size(self):
- +++ Checkbutton-slaves = pack_slaves(self):
- +++ Checkbutton-tk_bisque(self):
- +++ Checkbutton-tk_focusFollowsMouse(self):
- +++ Checkbutton-tk_focusNext(self):
- +++ Checkbutton-tk_focusPrev(self):
- +++ Checkbutton-tk_menuBar(self, *args):
- +++ Checkbutton-tk_setPalette(self, *args, **kw):
- +++ Checkbutton-tk_strictMotif(self, boolean=None):
- +++ Checkbutton-tkraise(self, aboveThis=None):
- +++ Checkbutton-unbind(self, sequence, funcid=None):
- +++ Checkbutton-unbind_all(self, sequence):
- +++ Checkbutton-unbind_class(self, className, sequence):
- +++ Checkbutton-update(self):
- +++ Checkbutton-update_idletasks(self):
- +++ Checkbutton-wait_variable(self, name='PY_VAR'):
- +++ Checkbutton-wait_visibility(self, window=None):
- +++ Checkbutton-wait_window(self, window=None):
- +++ Checkbutton-waitvar = wait_variable(self, name='PY_VAR'):
- +++ Checkbutton-winfo_atom(self, name, display of=0):
- +++ Checkbutton-winfo_atomname(self, id, display of=0):
- +++ Checkbutton-winfo_cells(self):
- +++ Checkbutton-winfo_children(self):
- +++ Checkbutton-winfo_class(self):
- +++ Checkbutton-winfo_colormapfull(self):
- +++ Checkbutton-winfo_containing(self, rootX, rootY, display of=0):
- +++ Checkbutton-winfo_depth(self):
- +++ Checkbutton-winfo_exists(self):
- +++ Checkbutton-winfo_fpixels(self, number):
- +++ Checkbutton-winfo_geometry(self):
- +++ Checkbutton-winfo_height(self):
- +++ Checkbutton-winfo_id(self):
- +++ Checkbutton-winfo_interps(self, display of=0):
- +++ Checkbutton-winfo_ismapped(self):
- +++ Checkbutton-winfo_manager(self):
- +++ Checkbutton-winfo_name(self):
- +++ Checkbutton-winfo_parent(self):
- +++ Checkbutton-winfo_pathname(self, id, display of=0):
- +++ Checkbutton-winfo_pixels(self, number):
- +++ Checkbutton-winfo_pointerx(self):
- +++ Checkbutton-winfo_pointerxy(self):
- +++ Checkbutton-winfo_pointery(self):
- +++ Checkbutton-winfo_reqheight(self):
- +++ Checkbutton-winfo_reqwidth(self):
- +++ Checkbutton-winfo_rgb(self, color):
- +++ Checkbutton-winfo_rootx(self):
- +++ Checkbutton-winfo_rooty(self):
- +++ Checkbutton-winfo_screen(self):
- +++ Checkbutton-winfo_screencells(self):
- +++ Checkbutton-winfo_screendepth(self):
- +++ Checkbutton-winfo_screenheight(self):
- +++ Checkbutton-winfo_screenmmheight(self):
- +++ Checkbutton-winfo_screenmmwidth(self):
- +++ Checkbutton-winfo_screenvisual(self):
- +++ Checkbutton-winfo_screenwidth(self):
- +++ Checkbutton-winfo_server(self):
- +++ Checkbutton-winfo_toplevel(self):
- +++ Checkbutton-winfo_viewable(self):
- +++ Checkbutton-winfo_visual(self):
- +++ Checkbutton-winfo_visualid(self):
- +++ Checkbutton-winfo_visualsavailable(self, includeids=0):
- +++ Checkbutton-winfo_vrootheight(self):
- +++ Checkbutton-winfo_vrootwidth(self):
- +++ Checkbutton-winfo_vrootx(self):
- +++ Checkbutton-winfo_vrooty(self):
- +++ Checkbutton-winfo_width(self):
- +++ Checkbutton-winfo_x(self):
- +++ Checkbutton-winfo_y(self):
- +++ Checkbutton-forget = pack_forget(self):
- +++ Checkbutton-info = pack_info(self):
- +++ Checkbutton-pack = pack_configure(self, cnf={}, **kw):
- +++ Checkbutton-pack_configure(self, cnf={}, **kw):
- +++ Checkbutton-pack_forget(self):
- +++ Checkbutton-pack_info(self):Checkbutton-place = place_configure(self, cnf={}, **kw):
- +++ Checkbutton-place_configure(self, cnf={}, **kw):
- +++ Checkbutton-place_forget(self):
- +++ Checkbutton-place_info(self):Checkbutton-grid = grid_configure(self, cnf={}, **kw):
- +++ Checkbutton-grid_configure(self, cnf={}, **kw):
- +++ Checkbutton-grid_forget(self):
- +++ Checkbutton-grid_info(self):
- +++ Checkbutton-grid_remove(self):
- +++ Checkbutton-location = grid_location(self, x, y):
- Value holder for float variables.
- +++ DoubleVar-__init__(self, master=None):
- Construct a float variable.
- VALUE is an optional value (defaults to 0.0)
- +++ DoubleVar-get(self):
- Return the value of the variable as a float.DoubleVar-__del__(self):
- +++ DoubleVar-__eq__(self, other):
- +++ DoubleVar-__str__(self):
- +++ DoubleVar-set(self, value):
- +++ DoubleVar-trace = trace_variable(self, mode, callback):
- +++ DoubleVar-trace_variable(self, mode, callback):
- +++ DoubleVar-trace_vdelete(self, mode, cbname):
- +++ DoubleVar-trace_vinfo(self):
- XView *****
- Entry widget which allows to display simple text.
- Entry
- +++ Entry-__init__(self, master={}, **kw):
- Construct an entry widget with the parent MASTER.
- Valid resource names: background, bd, bg, borderwidth, cursor,
- exportselection, fg, font, foreground, highlightbackground,
- highlightcolor, highlightthickness, insertbackground,
- insertborderwidth, insertofftime, insertontime, insertwidth,
- invalidcommand, invcmd, justify, relief, selectbackground,
- selectborderwidth, selectforeground, show, state, takefocus,
- textvariable, validate, validatecommand, vcmd, width,
- xscrollcommand.
- +++ Entry-delete(self, first, last=None):
- Delete text from FIRST to LAST (not included).
- +++ Entry-get(self):
- Return the text.
- +++ Entry-icursor(self, index):
- Insert cursor at INDEX.
- +++ Entry-index(self, index):
- Return position of cursor.
- +++ Entry-insert(self, index, string):
- Insert STRING at INDEX.
- +++ Entry-scan_dragto(self, x):
- Adjust the view of the canvas to 10 times the
- +++ Entry-scan_mark(self, x):
- +++ Entry-select_adjust = selection_adjust(self, index)
- +++ Entry-select_clear = selection_clear(self)
- +++ Entry-select_from = selection_from(self, index)
- +++ Entry-select_present = selection_present(self)
- +++ Entry-select_range = selection_range(self, start, end)
- +++ Entry-select_to = selection_to(self, index)
- +++ Entry-selection_adjust(self, index):
- Adjust the end of the selection near the cursor to INDEX.
- +++ Entry-selection_clear(self):
- +++ Entry-selection_from(self, index):
- Set the fixed end of a selection to INDEX.
- +++ Entry-selection_present(self):
- Return True if there are characters selected in the entry, False
- otherwise.
- +++ Entry-selection_range(self, start, end):
- Set the selection from START to END (not included).
- +++ Entry-selection_to(self, index):
- Set the variable end of a selection to INDEX.Entry-destroy(self):Entry-__contains__(self, key)
- +++ Entry-__getitem__ = cget(self, key):
- +++ Entry-__setitem__(self, key, value)
- +++ Entry-__str__(self):
- +++ Entry-after(self, ms, func=None, *args):
- +++ Entry-after_cancel(self, id):
- +++ Entry-after_idle(self, func, *args):
- +++ Entry-bbox = grid_bbox(self, column=None):
- +++ Entry-bell(self, display of=0):
- +++ Entry-bind(self, sequence=None):Entry-bind_all(self, sequence=None):
- +++ Entry-bind_class(self, className, sequence=None):
- +++ Entry-bindtags(self, tagList=None):
- +++ Entry-cget(self, key):
- +++ Entry-clipboard_append(self, string, **kw):
- +++ Entry-clipboard_clear(self, **kw):
- +++ Entry-clipboard_get(self, **kw):Entry-colormodel(self, value=None):
- +++ Entry-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
- +++ Entry-config = configure(self, cnf=None, **kw):
- +++ Entry-configure(self, cnf=None, **kw):
- +++ Entry-deletecommand(self, name):
- +++ Entry-event_add(self, virtual, *sequences):
- +++ Entry-event_delete(self, virtual, *sequences):
- +++ Entry-event_generate(self, sequence, **kw):
- +++ Entry-event_info(self, virtual=None):
- +++ Entry-focus = focus_set(self):
- +++ Entry-focus_display of(self):
- +++ Entry-focus_force(self):
- +++ Entry-focus_get(self):
- +++ Entry-focus_lastfor(self):
- +++ Entry-focus_set(self):
- +++ Entry-getboolean(self, s):
- +++ Entry-getvar(self, name='PY_VAR'):
- +++ Entry-grab_current(self):
- +++ Entry-grab_release(self):
- +++ Entry-grab_set(self):
- +++ Entry-grab_set_global(self):
- +++ Entry-grab_status(self):
- +++ Entry-grid_bbox(self, column=None):
- +++ Entry-grid_columnconfigure(self, index, cnf={}, **kw):
- +++ Entry-grid_location(self, x, y):
- +++ Entry-grid_propagate(self, flag=['_noarg_']):
- +++ Entry-grid_rowconfigure(self, index, cnf={}, **kw):
- +++ Entry-grid_size(self):
- +++ Entry-grid_slaves(self, row=None):
- +++ Entry-image_names(self):
- +++ Entry-image_types(self):
- +++ Entry-keys(self):
- +++ Entry-lift = tkraise(self, aboveThis=None):
- +++ Entry-lower(self, belowThis=None):
- +++ Entry-mainloop(self, n=0):
- +++ Entry-nametowidget(self, name):
- +++ Entry-option_add(self, pattern, value, priority=None):
- +++ Entry-option_clear(self):
- +++ Entry-option_get(self, name, className):
- +++ Entry-option_readfile(self, fileName, priority=None):
- +++ Entry-pack_propagate(self, flag=['_noarg_']):
- +++ Entry-pack_slaves(self):
- +++ Entry-place_slaves(self):
- +++ Entry-propagate = pack_propagate(self, flag=['_noarg_']):
- +++ Entry-quit(self):
- +++ Entry-register = _register(self, func, subst=1):
- +++ Entry-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
- +++ Entry-selection_get(self, **kw):
- +++ Entry-selection_handle(self, command, **kw):
- +++ Entry-selection_own(self, **kw):
- +++ Entry-selection_own_get(self, **kw):
- +++ Entry-send(self, interp, cmd, *args):
- +++ Entry-setvar(self, name='1'):
- +++ Entry-size = grid_size(self):
- +++ Entry-slaves = pack_slaves(self):
- +++ Entry-tk_bisque(self):
- +++ Entry-tk_focusFollowsMouse(self):
- +++ Entry-tk_focusNext(self):
- +++ Entry-tk_focusPrev(self):
- +++ Entry-tk_menuBar(self, *args):
- +++ Entry-tk_setPalette(self, *args, **kw):
- +++ Entry-tk_strictMotif(self, boolean=None):
- +++ Entry-tkraise(self, aboveThis=None):
- +++ Entry-unbind(self, sequence, funcid=None):
- +++ Entry-unbind_all(self, sequence):
- +++ Entry-unbind_class(self, className, sequence):
- +++ Entry-update(self):
- +++ Entry-update_idletasks(self):
- +++ Entry-wait_variable(self, name='PY_VAR'):
- +++ Entry-wait_visibility(self, window=None):
- +++ Entry-wait_window(self, window=None):
- +++ Entry-waitvar = wait_variable(self, name='PY_VAR'):
- +++ Entry-winfo_atom(self, name, display of=0):
- +++ Entry-winfo_atomname(self, id, display of=0):
- +++ Entry-winfo_cells(self):
- +++ Entry-winfo_children(self):
- +++ Entry-winfo_class(self):
- +++ Entry-winfo_colormapfull(self):
- +++ Entry-winfo_containing(self, rootX, rootY, display of=0):
- +++ Entry-winfo_depth(self):
- +++ Entry-winfo_exists(self):
- +++ Entry-winfo_fpixels(self, number):
- +++ Entry-winfo_geometry(self):
- +++ Entry-winfo_height(self):
- +++ Entry-winfo_id(self):
- +++ Entry-winfo_interps(self, display of=0):
- +++ Entry-winfo_ismapped(self):
- +++ Entry-winfo_manager(self):
- +++ Entry-winfo_name(self):
- +++ Entry-winfo_parent(self):
- +++ Entry-winfo_pathname(self, id, display of=0):
- +++ Entry-winfo_pixels(self, number):
- +++ Entry-winfo_pointerx(self):
- +++ Entry-winfo_pointerxy(self):
- +++ Entry-winfo_pointery(self):
- +++ Entry-winfo_reqheight(self):
- +++ Entry-winfo_reqwidth(self):
- +++ Entry-winfo_rgb(self, color):
- +++ Entry-winfo_rootx(self):
- +++ Entry-winfo_rooty(self):
- +++ Entry-winfo_screen(self):
- +++ Entry-winfo_screencells(self):
- +++ Entry-winfo_screendepth(self):
- +++ Entry-winfo_screenheight(self):
- +++ Entry-winfo_screenmmheight(self):
- +++ Entry-winfo_screenmmwidth(self):
- +++ Entry-winfo_screenvisual(self):
- +++ Entry-winfo_screenwidth(self):
- +++ Entry-winfo_server(self):
- +++ Entry-winfo_toplevel(self):
- +++ Entry-winfo_viewable(self):
- +++ Entry-winfo_visual(self):
- +++ Entry-winfo_visualid(self):
- +++ Entry-winfo_visualsavailable(self, includeids=0):
- +++ Entry-winfo_vrootheight(self):
- +++ Entry-winfo_vrootwidth(self):
- +++ Entry-winfo_vrootx(self):
- +++ Entry-winfo_vrooty(self):
- +++ Entry-winfo_width(self):
- +++ Entry-winfo_x(self):
- +++ Entry-winfo_y(self):
- +++ Entry-forget = pack_forget(self):
- +++ Entry-info = pack_info(self):
- +++ Entry-pack = pack_configure(self, cnf={}, **kw):
- +++ Entry-pack_configure(self, cnf={}, **kw):
- +++ Entry-pack_forget(self):
- +++ Entry-pack_info(self):Entry-place = place_configure(self, cnf={}, **kw):
- +++ Entry-place_configure(self, cnf={}, **kw):
- +++ Entry-place_forget(self):
- +++ Entry-place_info(self):Entry-grid = grid_configure(self, cnf={}, **kw):
- +++ Entry-grid_configure(self, cnf={}, **kw):
- +++ Entry-grid_forget(self):
- +++ Entry-grid_info(self):
- +++ Entry-grid_remove(self):
- +++ Entry-location = grid_location(self, x, y):Entry-xview(self, *args):
- +++ Entry-xview_moveto(self, fraction):
- +++ Entry-xview_scroll(self, number, what):
- *** class Event
- Container for the properties of an event.
- Instances of this type are generated if one of the following events occurs:
- KeyPress, KeyRelease - for keyboard events
- ButtonPress, ButtonRelease, Motion, Enter, Leave, MouseWheel - for mouse events
- Visibility, Unmap, Map, Expose, FocusIn, FocusOut, Circulate,
- Colormap, Gravity, Reparent, Property, Destroy, Activate,
- Deactivate - for window events.
- If a callback function for one of these events is registered
- using bind, bind_all, bind_class, or tag_bind, the callback is
- called with an Event as first argument. It will have the
- following attributes (in braces are the event types for which
- the attribute is valid):
- serial - serial number of event
- num - mouse button pressed (ButtonPress, ButtonRelease)
- focus - whether the window has the focus (Enter, Leave)
- height - height of the exposed window (Configure, Expose)
- width - width of the exposed window (Configure, Expose)
- keycode - keycode of the pressed key (KeyPress, KeyRelease)
- state - state of the event as a number (ButtonPress, ButtonRelease,
- Enter, KeyPress, KeyRelease,
- Leave, Motion)
- state - state as a string (Visibility)
- time - when the event occurred
- x - x-position of the mouse
- y - y-position of the mouse
- x_root - x-position of the mouse on the screen
- (ButtonPress, ButtonRelease, KeyPress, KeyRelease, Motion)
- y_root - y-position of the mouse on the screen
- char - pressed character (KeyPress, KeyRelease)
- send_event - see X/Windows documentation
- keysym - keysym of the event as a string (KeyPress, KeyRelease)
- keysym_num - keysym of the event as a number (KeyPress, KeyRelease)
- type - type of the event as a number
- widget - widget in which the event occurred
- delta - delta of wheel movement (MouseWheel)
- Frame widget which may contain other widgets and can have a 3D border.
- Frame
- +++ Frame-__init__(self, master={}, **kw):
- Construct a frame widget with the parent MASTER.
- Valid resource names: background, bd, bg, borderwidth, class,
- colormap, container, cursor, height, highlightbackground,
- highlightcolor, highlightthickness, relief, takefocus, visual, width
- Methods inherited from BaseWidget:
- +++ Frame-destroy(self):Frame-__contains__(self, key)
- +++ Frame-__getitem__ = cget(self, key):
- +++ Frame-__setitem__(self, key, value)
- +++ Frame-__str__(self):
- +++ Frame-after(self, ms, func=None, *args):
- +++ Frame-after_cancel(self, id):
- +++ Frame-after_idle(self, func, *args):
- +++ Frame-bbox = grid_bbox(self, column=None):
- +++ Frame-bell(self, display of=0):
- +++ Frame-bind(self, sequence=None):Frame-bind_all(self, sequence=None):
- +++ Frame-bind_class(self, className, sequence=None):
- +++ Frame-bindtags(self, tagList=None):
- +++ Frame-cget(self, key):
- +++ Frame-clipboard_append(self, string, **kw):
- +++ Frame-clipboard_clear(self, **kw):
- +++ Frame-clipboard_get(self, **kw):
- selection_get(CLIPBOARD)
- +++ Frame-colormodel(self, value=None):
- +++ Frame-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
- +++ Frame-config = configure(self, cnf=None, **kw):
- +++ Frame-configure(self, cnf=None, **kw):
- +++ Frame-deletecommand(self, name):
- +++ Frame-event_add(self, virtual, *sequences):
- +++ Frame-event_delete(self, virtual, *sequences):
- +++ Frame-event_generate(self, sequence, **kw):
- +++ Frame-event_info(self, virtual=None):
- +++ Frame-focus = focus_set(self):
- +++ Frame-focus_display of(self):
- +++ Frame-focus_force(self):
- +++ Frame-focus_get(self):
- +++ Frame-focus_lastfor(self):
- +++ Frame-focus_set(self):
- +++ Frame-getboolean(self, s):
- +++ Frame-getvar(self, name='PY_VAR'):
- +++ Frame-grab_current(self):
- +++ Frame-grab_release(self):
- +++ Frame-grab_set(self):
- +++ Frame-grab_set_global(self):
- +++ Frame-grab_status(self):
- +++ Frame-grid_bbox(self, column=None):
- +++ Frame-grid_columnconfigure(self, index, cnf={}, **kw):
- +++ Frame-grid_location(self, x, y):
- +++ Frame-grid_propagate(self, flag=['_noarg_']):
- +++ Frame-grid_rowconfigure(self, index, cnf={}, **kw):
- +++ Frame-grid_size(self):
- +++ Frame-grid_slaves(self, row=None):
- +++ Frame-image_names(self):
- +++ Frame-image_types(self):
- +++ Frame-keys(self):
- +++ Frame-lift = tkraise(self, aboveThis=None):
- +++ Frame-lower(self, belowThis=None):
- +++ Frame-mainloop(self, n=0):
- +++ Frame-nametowidget(self, name):
- +++ Frame-option_add(self, pattern, value, priority=None):
- +++ Frame-option_clear(self):
- +++ Frame-option_get(self, name, className):
- +++ Frame-option_readfile(self, fileName, priority=None):
- +++ Frame-pack_propagate(self, flag=['_noarg_']):
- +++ Frame-pack_slaves(self):
- +++ Frame-place_slaves(self):
- +++ Frame-propagate = pack_propagate(self, flag=['_noarg_']):
- +++ Frame-quit(self):
- +++ Frame-register = _register(self, func, subst=1):
- +++ Frame-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
- +++ Frame-selection_clear(self, **kw):
- +++ Frame-selection_get(self, **kw):
- +++ Frame-selection_handle(self, command, **kw):
- +++ Frame-selection_own(self, **kw):
- +++ Frame-selection_own_get(self, **kw):
- +++ Frame-send(self, interp, cmd, *args):
- +++ Frame-setvar(self, name='1'):
- +++ Frame-size = grid_size(self):
- +++ Frame-slaves = pack_slaves(self):
- +++ Frame-tk_bisque(self):
- +++ Frame-tk_focusFollowsMouse(self):
- +++ Frame-tk_focusNext(self):
- +++ Frame-tk_focusPrev(self):
- +++ Frame-tk_menuBar(self, *args):
- +++ Frame-tk_setPalette(self, *args, **kw):
- +++ Frame-tk_strictMotif(self, boolean=None):
- +++ Frame-tkraise(self, aboveThis=None):
- +++ Frame-unbind(self, sequence, funcid=None):
- +++ Frame-unbind_all(self, sequence):
- +++ Frame-unbind_class(self, className, sequence):
- +++ Frame-update(self):
- +++ Frame-update_idletasks(self):
- +++ Frame-wait_variable(self, name='PY_VAR'):
- +++ Frame-wait_visibility(self, window=None):
- +++ Frame-wait_window(self, window=None):
- +++ Frame-waitvar = wait_variable(self, name='PY_VAR'):
- +++ Frame-winfo_atom(self, name, display of=0):
- +++ Frame-winfo_atomname(self, id, display of=0):
- +++ Frame-winfo_cells(self):
- +++ Frame-winfo_children(self):
- +++ Frame-winfo_class(self):
- +++ Frame-winfo_colormapfull(self):
- +++ Frame-winfo_containing(self, rootX, rootY, display of=0):
- +++ Frame-winfo_depth(self):
- +++ Frame-winfo_exists(self):
- +++ Frame-winfo_fpixels(self, number):
- +++ Frame-winfo_geometry(self):
- +++ Frame-winfo_height(self):
- +++ Frame-winfo_id(self):
- +++ Frame-winfo_interps(self, display of=0):
- +++ Frame-winfo_ismapped(self):
- +++ Frame-winfo_manager(self):
- +++ Frame-winfo_name(self):
- +++ Frame-winfo_parent(self):
- +++ Frame-winfo_pathname(self, id, display of=0):
- +++ Frame-winfo_pixels(self, number):
- +++ Frame-winfo_pointerx(self):
- +++ Frame-winfo_pointerxy(self):
- +++ Frame-winfo_pointery(self):
- +++ Frame-winfo_reqheight(self):
- +++ Frame-winfo_reqwidth(self):
- +++ Frame-winfo_rgb(self, color):
- +++ Frame-winfo_rootx(self):
- +++ Frame-winfo_rooty(self):
- +++ Frame-winfo_screen(self):
- +++ Frame-winfo_screencells(self):
- +++ Frame-winfo_screendepth(self):
- +++ Frame-winfo_screenheight(self):
- +++ Frame-winfo_screenmmheight(self):
- +++ Frame-winfo_screenmmwidth(self):
- +++ Frame-winfo_screenvisual(self):
- +++ Frame-winfo_screenwidth(self):
- +++ Frame-winfo_server(self):
- +++ Frame-winfo_toplevel(self):
- +++ Frame-winfo_viewable(self):
- +++ Frame-winfo_visual(self):
- +++ Frame-winfo_visualid(self):
- +++ Frame-winfo_visualsavailable(self, includeids=0):
- +++ Frame-winfo_vrootheight(self):
- +++ Frame-winfo_vrootwidth(self):
- +++ Frame-winfo_vrootx(self):
- +++ Frame-winfo_vrooty(self):
- +++ Frame-winfo_width(self):
- +++ Frame-winfo_x(self):
- +++ Frame-winfo_y(self):
- +++ Frame-forget = pack_forget(self):
- +++ Frame-info = pack_info(self):
- +++ Frame-pack = pack_configure(self, cnf={}, **kw):
- +++ Frame-pack_configure(self, cnf={}, **kw):
- +++ Frame-pack_forget(self):
- +++ Frame-pack_info(self):Frame-place = place_configure(self, cnf={}, **kw):
- +++ Frame-place_configure(self, cnf={}, **kw):
- +++ Frame-place_forget(self):
- +++ Frame-place_info(self):Frame-grid = grid_configure(self, cnf={}, **kw):
- +++ Frame-grid_configure(self, cnf={}, **kw):
- +++ Frame-grid_forget(self):
- +++ Frame-grid_info(self):
- +++ Frame-grid_remove(self):
- +++ Frame-location = grid_location(self, x, y):
- *** class Grid
- Geometry manager Grid.
- Base class to use the methods grid_* in every widget.
- +++ Grid-bbox = grid_bbox(self, columnMisc:
- +++ Grid-columnconfigure = grid_columnconfigure(self, index, cnfMisc:
- +++ Grid-config = grid_configure(self, cnf={}, **kw)
- +++ Grid-configure = grid_configure(self, cnf={}, **kw)
- +++ Grid-forget = grid_forget(self)
- +++ Grid-grid = grid_configure(self, cnf={}, **kw)
- +++ Grid-grid_bbox(self, columnMisc:
- +++ Grid-grid_columnconfigure(self, index, cnfMisc:
- +++ Grid-grid_configure(self, cnf={}, **kw):
- +++ Grid-grid_forget(self):
- +++ Grid-grid_info(self):
- +++ Grid-grid_location(self, x, y)Misc:
- +++ Grid-grid_propagate(self, flagMisc:
- +++ Grid-grid_remove(self):
- +++ Grid-grid_rowconfigure(self, index, cnfMisc:
- +++ Grid-grid_size(self)Misc:
- +++ Grid-grid_slaves(self, rowMisc:
- +++ Grid-info = grid_info(self)
- +++ Grid-location = grid_location(self, x, y)Misc:
- +++ Grid-propagate = grid_propagate(self, flagMisc:
- +++ Grid-rowconfigure = grid_rowconfigure(self, index, cnfMisc:
- +++ Grid-size = grid_size(self)Misc:
- +++ Grid-slaves = grid_slaves(self, rowMisc:
- *** class Image
- Base class for images.
- +++ Image-__del__(self)
- +++ Image-__getitem__(self, key)
- +++ Image-__init__(self, imgtype, name=None, **kw)
- +++ Image-__setitem__(self, key, value)
- +++ Image-__str__(self)
- +++ Image-config = configure(self, **kw)
- +++ Image-configure(self, **kw):
- +++ Image-height(self):
- +++ Image-type(self):
- +++ Image-width(self):
- Value holder for integer variables.
- +++ IntVar-__init__(self, master=None):
- Construct an integer variable.
- VALUE is an optional value (defaults to 0)
- +++ IntVar-get(self):
- Return the value of the variable as an integer.
- +++ IntVar-set(self, value):
- Set the variable to value, converting booleans to integers.IntVar-__del__(self):
- +++ IntVar-__eq__(self, other):
- +++ IntVar-__str__(self):
- +++ IntVar-trace = trace_variable(self, mode, callback):
- +++ IntVar-trace_variable(self, mode, callback):
- +++ IntVar-trace_vdelete(self, mode, cbname):
- +++ IntVar-trace_vinfo(self):
- Label widget which can display text and bitmaps.
- Label
- ...
- +++ Label-__init__(self, master={}, **kw):
- Construct a label widget with the parent MASTER.
- disabledforeground, font, foreground,
- padx, pady, relief, takefocus, text,
- height, state, width
- +++ Label-destroy(self):Label-__contains__(self, key)
- +++ Label-__getitem__ = cget(self, key):
- +++ Label-__setitem__(self, key, value)
- +++ Label-__str__(self):
- +++ Label-after(self, ms, func=None, *args):
- +++ Label-after_cancel(self, id):
- +++ Label-after_idle(self, func, *args):
- +++ Label-bbox = grid_bbox(self, column=None):
- +++ Label-bell(self, display of=0):
- +++ Label-bind(self, sequence=None):Label-bind_all(self, sequence=None):
- +++ Label-bind_class(self, className, sequence=None):
- +++ Label-bindtags(self, tagList=None):
- +++ Label-cget(self, key):
- +++ Label-clipboard_append(self, string, **kw):
- +++ Label-clipboard_clear(self, **kw):
- +++ Label-clipboard_get(self, **kw):Label-colormodel(self, value=None):
- +++ Label-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
- +++ Label-config = configure(self, cnf=None, **kw):
- +++ Label-configure(self, cnf=None, **kw):
- +++ Label-deletecommand(self, name):
- +++ Label-event_add(self, virtual, *sequences):
- +++ Label-event_delete(self, virtual, *sequences):
- +++ Label-event_generate(self, sequence, **kw):
- +++ Label-event_info(self, virtual=None):
- +++ Label-focus = focus_set(self):
- +++ Label-focus_display of(self):
- +++ Label-focus_force(self):
- +++ Label-focus_get(self):
- +++ Label-focus_lastfor(self):
- +++ Label-focus_set(self):
- +++ Label-getboolean(self, s):
- +++ Label-getvar(self, name='PY_VAR'):
- +++ Label-grab_current(self):
- +++ Label-grab_release(self):
- +++ Label-grab_set(self):
- +++ Label-grab_set_global(self):
- +++ Label-grab_status(self):
- +++ Label-grid_bbox(self, column=None):
- +++ Label-grid_columnconfigure(self, index, cnf={}, **kw):
- +++ Label-grid_location(self, x, y):
- +++ Label-grid_propagate(self, flag=['_noarg_']):
- +++ Label-grid_rowconfigure(self, index, cnf={}, **kw):
- +++ Label-grid_size(self):
- +++ Label-grid_slaves(self, row=None):
- +++ Label-image_names(self):
- +++ Label-image_types(self):
- +++ Label-keys(self):
- +++ Label-lift = tkraise(self, aboveThis=None):
- +++ Label-lower(self, belowThis=None):
- +++ Label-mainloop(self, n=0):
- +++ Label-nametowidget(self, name):
- +++ Label-option_add(self, pattern, value, priority=None):
- +++ Label-option_clear(self):
- +++ Label-option_get(self, name, className):
- +++ Label-option_readfile(self, fileName, priority=None):
- +++ Label-pack_propagate(self, flag=['_noarg_']):
- +++ Label-pack_slaves(self):
- +++ Label-place_slaves(self):
- +++ Label-propagate = pack_propagate(self, flag=['_noarg_']):
- +++ Label-quit(self):
- +++ Label-register = _register(self, func, subst=1):
- +++ Label-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
- +++ Label-selection_clear(self, **kw):
- +++ Label-selection_get(self, **kw):
- +++ Label-selection_handle(self, command, **kw):
- +++ Label-selection_own(self, **kw):
- +++ Label-selection_own_get(self, **kw):
- +++ Label-send(self, interp, cmd, *args):
- +++ Label-setvar(self, name='1'):
- +++ Label-size = grid_size(self):
- +++ Label-slaves = pack_slaves(self):
- +++ Label-tk_bisque(self):
- +++ Label-tk_focusFollowsMouse(self):
- +++ Label-tk_focusNext(self):
- +++ Label-tk_focusPrev(self):
- +++ Label-tk_menuBar(self, *args):
- +++ Label-tk_setPalette(self, *args, **kw):
- +++ Label-tk_strictMotif(self, boolean=None):
- +++ Label-tkraise(self, aboveThis=None):
- +++ Label-unbind(self, sequence, funcid=None):
- +++ Label-unbind_all(self, sequence):
- +++ Label-unbind_class(self, className, sequence):
- +++ Label-update(self):
- +++ Label-update_idletasks(self):
- +++ Label-wait_variable(self, name='PY_VAR'):
- +++ Label-wait_visibility(self, window=None):
- +++ Label-wait_window(self, window=None):
- +++ Label-waitvar = wait_variable(self, name='PY_VAR'):
- +++ Label-winfo_atom(self, name, display of=0):
- +++ Label-winfo_atomname(self, id, display of=0):
- +++ Label-winfo_cells(self):
- +++ Label-winfo_children(self):
- +++ Label-winfo_class(self):
- +++ Label-winfo_colormapfull(self):
- +++ Label-winfo_containing(self, rootX, rootY, display of=0):
- +++ Label-winfo_depth(self):
- +++ Label-winfo_exists(self):
- +++ Label-winfo_fpixels(self, number):
- +++ Label-winfo_geometry(self):
- +++ Label-winfo_height(self):
- +++ Label-winfo_id(self):
- +++ Label-winfo_interps(self, display of=0):
- +++ Label-winfo_ismapped(self):
- +++ Label-winfo_manager(self):
- +++ Label-winfo_name(self):
- +++ Label-winfo_parent(self):
- +++ Label-winfo_pathname(self, id, display of=0):
- +++ Label-winfo_pixels(self, number):
- +++ Label-winfo_pointerx(self):
- +++ Label-winfo_pointerxy(self):
- +++ Label-winfo_pointery(self):
- +++ Label-winfo_reqheight(self):
- +++ Label-winfo_reqwidth(self):
- +++ Label-winfo_rgb(self, color):
- +++ Label-winfo_rootx(self):
- +++ Label-winfo_rooty(self):
- +++ Label-winfo_screen(self):
- +++ Label-winfo_screencells(self):
- +++ Label-winfo_screendepth(self):
- +++ Label-winfo_screenheight(self):
- +++ Label-winfo_screenmmheight(self):
- +++ Label-winfo_screenmmwidth(self):
- +++ Label-winfo_screenvisual(self):
- +++ Label-winfo_screenwidth(self):
- +++ Label-winfo_server(self):
- +++ Label-winfo_toplevel(self):
- +++ Label-winfo_viewable(self):
- +++ Label-winfo_visual(self):
- +++ Label-winfo_visualid(self):
- +++ Label-winfo_visualsavailable(self, includeids=0):
- +++ Label-winfo_vrootheight(self):
- +++ Label-winfo_vrootwidth(self):
- +++ Label-winfo_vrootx(self):
- +++ Label-winfo_vrooty(self):
- +++ Label-winfo_width(self):
- +++ Label-winfo_x(self):
- +++ Label-winfo_y(self):
- +++ Label-forget = pack_forget(self):
- +++ Label-info = pack_info(self):
- +++ Label-pack = pack_configure(self, cnf={}, **kw):
- +++ Label-pack_configure(self, cnf={}, **kw):
- +++ Label-pack_forget(self):
- +++ Label-pack_info(self):Label-place = place_configure(self, cnf={}, **kw):
- +++ Label-place_configure(self, cnf={}, **kw):
- +++ Label-place_forget(self):
- +++ Label-place_info(self):Label-grid = grid_configure(self, cnf={}, **kw):
- +++ Label-grid_configure(self, cnf={}, **kw):
- +++ Label-grid_forget(self):
- +++ Label-grid_info(self):
- +++ Label-grid_remove(self):
- +++ Label-location = grid_location(self, x, y):
- labelframe widget.
- LabelFrame
- +++ LabelFrame-__init__(self, master={}, **kw):
- Construct a labelframe widget with the parent MASTER.
- borderwidth, cursor, font, foreground,
- highlightthickness, padx, pady, relief,
- takefocus, text
- background, class, colormap, container,
- height, labelanchor, labelwidget,
- visual, width
- +++ LabelFrame-destroy(self):LabelFrame-__contains__(self, key)
- +++ LabelFrame-__getitem__ = cget(self, key):
- +++ LabelFrame-__setitem__(self, key, value)
- +++ LabelFrame-__str__(self):
- +++ LabelFrame-after(self, ms, func=None, *args):
- +++ LabelFrame-after_cancel(self, id):
- +++ LabelFrame-after_idle(self, func, *args):
- +++ LabelFrame-bbox = grid_bbox(self, column=None):
- +++ LabelFrame-bell(self, display of=0):
- +++ LabelFrame-bind(self, sequence=None):LabelFrame-bind_all(self, sequence=None):
- +++ LabelFrame-bind_class(self, className, sequence=None):
- +++ LabelFrame-bindtags(self, tagList=None):
- +++ LabelFrame-cget(self, key):
- +++ LabelFrame-clipboard_append(self, string, **kw):
- +++ LabelFrame-clipboard_clear(self, **kw):
- +++ LabelFrame-clipboard_get(self, **kw):LabelFrame-colormodel(self, value=None):
- +++ LabelFrame-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
- +++ LabelFrame-config = configure(self, cnf=None, **kw):
- +++ LabelFrame-configure(self, cnf=None, **kw):
- +++ LabelFrame-deletecommand(self, name):
- +++ LabelFrame-event_add(self, virtual, *sequences):
- +++ LabelFrame-event_delete(self, virtual, *sequences):
- +++ LabelFrame-event_generate(self, sequence, **kw):
- +++ LabelFrame-event_info(self, virtual=None):
- +++ LabelFrame-focus = focus_set(self):
- +++ LabelFrame-focus_display of(self):
- +++ LabelFrame-focus_force(self):
- +++ LabelFrame-focus_get(self):
- +++ LabelFrame-focus_lastfor(self):
- +++ LabelFrame-focus_set(self):
- +++ LabelFrame-getboolean(self, s):
- +++ LabelFrame-getvar(self, name='PY_VAR'):
- +++ LabelFrame-grab_current(self):
- +++ LabelFrame-grab_release(self):
- +++ LabelFrame-grab_set(self):
- +++ LabelFrame-grab_set_global(self):
- +++ LabelFrame-grab_status(self):
- +++ LabelFrame-grid_bbox(self, column=None):
- +++ LabelFrame-grid_columnconfigure(self, index, cnf={}, **kw):
- +++ LabelFrame-grid_location(self, x, y):
- +++ LabelFrame-grid_propagate(self, flag=['_noarg_']):
- +++ LabelFrame-grid_rowconfigure(self, index, cnf={}, **kw):
- +++ LabelFrame-grid_size(self):
- +++ LabelFrame-grid_slaves(self, row=None):
- +++ LabelFrame-image_names(self):
- +++ LabelFrame-image_types(self):
- +++ LabelFrame-keys(self):
- +++ LabelFrame-lift = tkraise(self, aboveThis=None):
- +++ LabelFrame-lower(self, belowThis=None):
- +++ LabelFrame-mainloop(self, n=0):
- +++ LabelFrame-nametowidget(self, name):
- +++ LabelFrame-option_add(self, pattern, value, priority=None):
- +++ LabelFrame-option_clear(self):
- +++ LabelFrame-option_get(self, name, className):
- +++ LabelFrame-option_readfile(self, fileName, priority=None):
- +++ LabelFrame-pack_propagate(self, flag=['_noarg_']):
- +++ LabelFrame-pack_slaves(self):
- +++ LabelFrame-place_slaves(self):
- +++ LabelFrame-propagate = pack_propagate(self, flag=['_noarg_']):
- +++ LabelFrame-quit(self):
- +++ LabelFrame-register = _register(self, func, subst=1):
- +++ LabelFrame-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
- +++ LabelFrame-selection_clear(self, **kw):
- +++ LabelFrame-selection_get(self, **kw):
- +++ LabelFrame-selection_handle(self, command, **kw):
- +++ LabelFrame-selection_own(self, **kw):
- +++ LabelFrame-selection_own_get(self, **kw):
- +++ LabelFrame-send(self, interp, cmd, *args):
- +++ LabelFrame-setvar(self, name='1'):
- +++ LabelFrame-size = grid_size(self):
- +++ LabelFrame-slaves = pack_slaves(self):
- +++ LabelFrame-tk_bisque(self):
- +++ LabelFrame-tk_focusFollowsMouse(self):
- +++ LabelFrame-tk_focusNext(self):
- +++ LabelFrame-tk_focusPrev(self):
- +++ LabelFrame-tk_menuBar(self, *args):
- +++ LabelFrame-tk_setPalette(self, *args, **kw):
- +++ LabelFrame-tk_strictMotif(self, boolean=None):
- +++ LabelFrame-tkraise(self, aboveThis=None):
- +++ LabelFrame-unbind(self, sequence, funcid=None):
- +++ LabelFrame-unbind_all(self, sequence):
- +++ LabelFrame-unbind_class(self, className, sequence):
- +++ LabelFrame-update(self):
- +++ LabelFrame-update_idletasks(self):
- +++ LabelFrame-wait_variable(self, name='PY_VAR'):
- +++ LabelFrame-wait_visibility(self, window=None):
- +++ LabelFrame-wait_window(self, window=None):
- +++ LabelFrame-waitvar = wait_variable(self, name='PY_VAR'):
- +++ LabelFrame-winfo_atom(self, name, display of=0):
- +++ LabelFrame-winfo_atomname(self, id, display of=0):
- +++ LabelFrame-winfo_cells(self):
- +++ LabelFrame-winfo_children(self):
- +++ LabelFrame-winfo_class(self):
- +++ LabelFrame-winfo_colormapfull(self):
- +++ LabelFrame-winfo_containing(self, rootX, rootY, display of=0):
- +++ LabelFrame-winfo_depth(self):
- +++ LabelFrame-winfo_exists(self):
- +++ LabelFrame-winfo_fpixels(self, number):
- +++ LabelFrame-winfo_geometry(self):
- +++ LabelFrame-winfo_height(self):
- +++ LabelFrame-winfo_id(self):
- +++ LabelFrame-winfo_interps(self, display of=0):
- +++ LabelFrame-winfo_ismapped(self):
- +++ LabelFrame-winfo_manager(self):
- +++ LabelFrame-winfo_name(self):
- +++ LabelFrame-winfo_parent(self):
- +++ LabelFrame-winfo_pathname(self, id, display of=0):
- +++ LabelFrame-winfo_pixels(self, number):
- +++ LabelFrame-winfo_pointerx(self):
- +++ LabelFrame-winfo_pointerxy(self):
- +++ LabelFrame-winfo_pointery(self):
- +++ LabelFrame-winfo_reqheight(self):
- +++ LabelFrame-winfo_reqwidth(self):
- +++ LabelFrame-winfo_rgb(self, color):
- +++ LabelFrame-winfo_rootx(self):
- +++ LabelFrame-winfo_rooty(self):
- +++ LabelFrame-winfo_screen(self):
- +++ LabelFrame-winfo_screencells(self):
- +++ LabelFrame-winfo_screendepth(self):
- +++ LabelFrame-winfo_screenheight(self):
- +++ LabelFrame-winfo_screenmmheight(self):
- +++ LabelFrame-winfo_screenmmwidth(self):
- +++ LabelFrame-winfo_screenvisual(self):
- +++ LabelFrame-winfo_screenwidth(self):
- +++ LabelFrame-winfo_server(self):
- +++ LabelFrame-winfo_toplevel(self):
- +++ LabelFrame-winfo_viewable(self):
- +++ LabelFrame-winfo_visual(self):
- +++ LabelFrame-winfo_visualid(self):
- +++ LabelFrame-winfo_visualsavailable(self, includeids=0):
- +++ LabelFrame-winfo_vrootheight(self):
- +++ LabelFrame-winfo_vrootwidth(self):
- +++ LabelFrame-winfo_vrootx(self):
- +++ LabelFrame-winfo_vrooty(self):
- +++ LabelFrame-winfo_width(self):
- +++ LabelFrame-winfo_x(self):
- +++ LabelFrame-winfo_y(self):
- +++ LabelFrame-forget = pack_forget(self):
- +++ LabelFrame-info = pack_info(self):
- +++ LabelFrame-pack = pack_configure(self, cnf={}, **kw):
- +++ LabelFrame-pack_configure(self, cnf={}, **kw):
- +++ LabelFrame-pack_forget(self):
- +++ LabelFrame-pack_info(self):LabelFrame-place = place_configure(self, cnf={}, **kw):
- +++ LabelFrame-place_configure(self, cnf={}, **kw):
- +++ LabelFrame-place_forget(self):
- +++ LabelFrame-place_info(self):LabelFrame-grid = grid_configure(self, cnf={}, **kw):
- +++ LabelFrame-grid_configure(self, cnf={}, **kw):
- +++ LabelFrame-grid_forget(self):
- +++ LabelFrame-grid_info(self):
- +++ LabelFrame-grid_remove(self):
- +++ LabelFrame-location = grid_location(self, x, y):
- Listbox widget which can display a list of strings.
- Listbox
- +++ Listbox-__init__(self, master={}, **kw):
- Construct a listbox widget with the parent MASTER.
- exportselection, fg, font, foreground, height, highlightbackground,
- highlightcolor, highlightthickness, relief, selectbackground,
- selectborderwidth, selectforeground, selectmode, setgrid, takefocus,
- width, xscrollcommand, yscrollcommand, listvariable.
- +++ Listbox-activate(self, index):
- Activate item identified by INDEX.
- +++ Listbox-bbox(self, index):
- which encloses the item identified by the given index.
- +++ Listbox-curselection(self):
- Return the indices of currently selected item.
- +++ Listbox-delete(self, first, last=None):
- Delete items from FIRST to LAST (included).
- +++ Listbox-get(self, first, last=None):
- Get list of items from FIRST to LAST (included).
- +++ Listbox-index(self, index):
- Return index of item identified with INDEX.
- +++ Listbox-insert(self, index, *elements):
- Insert ELEMENTS at INDEX.
- +++ Listbox-itemcget(self, index, option):
- Return the resource value for an ITEM and an OPTION.
- +++ Listbox-itemconfig = itemconfigure(self, index, cnf=None, **kw)
- +++ Listbox-itemconfigure(self, index, cnf=None, **kw):
- Configure resources of an ITEM.
- The values for resources are specified as keyword arguments.
- To get an overview about the allowed keyword arguments
- call the method without arguments.
- Valid resource names: background, bg, foreground, fg,
- selectbackground, selectforeground.
- +++ Listbox-nearest(self, y):
- Get index of item which is nearest to y coordinate Y.
- +++ Listbox-scan_dragto(self, x, y):
- Adjust the view of the listbox to 10 times the
- +++ Listbox-scan_mark(self, x, y):
- +++ Listbox-see(self, index):
- Scroll such that INDEX is visible.
- +++ Listbox-select_anchor = selection_anchor(self, index)
- +++ Listbox-select_clear = selection_clear(self, first, last=None)
- +++ Listbox-select_includes = selection_includes(self, index)
- +++ Listbox-select_set = selection_set(self, first, last=None)
- +++ Listbox-selection_anchor(self, index):
- Set the fixed end oft the selection to INDEX.
- +++ Listbox-selection_clear(self, first, last=None):
- Clear the selection from FIRST to LAST (included).
- +++ Listbox-selection_includes(self, index):
- Return 1 if INDEX is part of the selection.
- +++ Listbox-selection_set(self, first, last=None):
- Set the selection from FIRST to LAST (included) without
- changing the currently selected elements.
- +++ Listbox-size(self):
- Return the number of elements in the listbox.Listbox-destroy(self):Listbox-__contains__(self, key)
- +++ Listbox-__getitem__ = cget(self, key):
- +++ Listbox-__setitem__(self, key, value)
- +++ Listbox-__str__(self):
- +++ Listbox-after(self, ms, func=None, *args):
- +++ Listbox-after_cancel(self, id):
- +++ Listbox-after_idle(self, func, *args):
- +++ Listbox-bell(self, display of=0):
- +++ Listbox-bind(self, sequence=None):Listbox-bind_all(self, sequence=None):
- +++ Listbox-bind_class(self, className, sequence=None):
- +++ Listbox-bindtags(self, tagList=None):
- +++ Listbox-cget(self, key):
- +++ Listbox-clipboard_append(self, string, **kw):
- +++ Listbox-clipboard_clear(self, **kw):
- +++ Listbox-clipboard_get(self, **kw):Listbox-colormodel(self, value=None):
- +++ Listbox-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
- +++ Listbox-config = configure(self, cnf=None, **kw):
- +++ Listbox-configure(self, cnf=None, **kw):
- +++ Listbox-deletecommand(self, name):
- +++ Listbox-event_add(self, virtual, *sequences):
- +++ Listbox-event_delete(self, virtual, *sequences):
- +++ Listbox-event_generate(self, sequence, **kw):
- +++ Listbox-event_info(self, virtual=None):
- +++ Listbox-focus = focus_set(self):
- +++ Listbox-focus_display of(self):
- +++ Listbox-focus_force(self):
- +++ Listbox-focus_get(self):
- +++ Listbox-focus_lastfor(self):
- +++ Listbox-focus_set(self):
- +++ Listbox-getboolean(self, s):
- +++ Listbox-getvar(self, name='PY_VAR'):
- +++ Listbox-grab_current(self):
- +++ Listbox-grab_release(self):
- +++ Listbox-grab_set(self):
- +++ Listbox-grab_set_global(self):
- +++ Listbox-grab_status(self):
- +++ Listbox-grid_bbox(self, column=None):
- +++ Listbox-grid_columnconfigure(self, index, cnf={}, **kw):
- +++ Listbox-grid_location(self, x, y):
- +++ Listbox-grid_propagate(self, flag=['_noarg_']):
- +++ Listbox-grid_rowconfigure(self, index, cnf={}, **kw):
- +++ Listbox-grid_size(self):
- +++ Listbox-grid_slaves(self, row=None):
- +++ Listbox-image_names(self):
- +++ Listbox-image_types(self):
- +++ Listbox-keys(self):
- +++ Listbox-lift = tkraise(self, aboveThis=None):
- +++ Listbox-lower(self, belowThis=None):
- +++ Listbox-mainloop(self, n=0):
- +++ Listbox-nametowidget(self, name):
- +++ Listbox-option_add(self, pattern, value, priority=None):
- +++ Listbox-option_clear(self):
- +++ Listbox-option_get(self, name, className):
- +++ Listbox-option_readfile(self, fileName, priority=None):
- +++ Listbox-pack_propagate(self, flag=['_noarg_']):
- +++ Listbox-pack_slaves(self):
- +++ Listbox-place_slaves(self):
- +++ Listbox-propagate = pack_propagate(self, flag=['_noarg_']):
- +++ Listbox-quit(self):
- +++ Listbox-register = _register(self, func, subst=1):
- +++ Listbox-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
- +++ Listbox-selection_get(self, **kw):
- +++ Listbox-selection_handle(self, command, **kw):
- +++ Listbox-selection_own(self, **kw):
- +++ Listbox-selection_own_get(self, **kw):
- +++ Listbox-send(self, interp, cmd, *args):
- +++ Listbox-setvar(self, name='1'):
- +++ Listbox-slaves = pack_slaves(self):
- +++ Listbox-tk_bisque(self):
- +++ Listbox-tk_focusFollowsMouse(self):
- +++ Listbox-tk_focusNext(self):
- +++ Listbox-tk_focusPrev(self):
- +++ Listbox-tk_menuBar(self, *args):
- +++ Listbox-tk_setPalette(self, *args, **kw):
- +++ Listbox-tk_strictMotif(self, boolean=None):
- +++ Listbox-tkraise(self, aboveThis=None):
- +++ Listbox-unbind(self, sequence, funcid=None):
- +++ Listbox-unbind_all(self, sequence):
- +++ Listbox-unbind_class(self, className, sequence):
- +++ Listbox-update(self):
- +++ Listbox-update_idletasks(self):
- +++ Listbox-wait_variable(self, name='PY_VAR'):
- +++ Listbox-wait_visibility(self, window=None):
- +++ Listbox-wait_window(self, window=None):
- +++ Listbox-waitvar = wait_variable(self, name='PY_VAR'):
- +++ Listbox-winfo_atom(self, name, display of=0):
- +++ Listbox-winfo_atomname(self, id, display of=0):
- +++ Listbox-winfo_cells(self):
- +++ Listbox-winfo_children(self):
- +++ Listbox-winfo_class(self):
- +++ Listbox-winfo_colormapfull(self):
- +++ Listbox-winfo_containing(self, rootX, rootY, display of=0):
- +++ Listbox-winfo_depth(self):
- +++ Listbox-winfo_exists(self):
- +++ Listbox-winfo_fpixels(self, number):
- +++ Listbox-winfo_geometry(self):
- +++ Listbox-winfo_height(self):
- +++ Listbox-winfo_id(self):
- +++ Listbox-winfo_interps(self, display of=0):
- +++ Listbox-winfo_ismapped(self):
- +++ Listbox-winfo_manager(self):
- +++ Listbox-winfo_name(self):
- +++ Listbox-winfo_parent(self):
- +++ Listbox-winfo_pathname(self, id, display of=0):
- +++ Listbox-winfo_pixels(self, number):
- +++ Listbox-winfo_pointerx(self):
- +++ Listbox-winfo_pointerxy(self):
- +++ Listbox-winfo_pointery(self):
- +++ Listbox-winfo_reqheight(self):
- +++ Listbox-winfo_reqwidth(self):
- +++ Listbox-winfo_rgb(self, color):
- +++ Listbox-winfo_rootx(self):
- +++ Listbox-winfo_rooty(self):
- +++ Listbox-winfo_screen(self):
- +++ Listbox-winfo_screencells(self):
- +++ Listbox-winfo_screendepth(self):
- +++ Listbox-winfo_screenheight(self):
- +++ Listbox-winfo_screenmmheight(self):
- +++ Listbox-winfo_screenmmwidth(self):
- +++ Listbox-winfo_screenvisual(self):
- +++ Listbox-winfo_screenwidth(self):
- +++ Listbox-winfo_server(self):
- +++ Listbox-winfo_toplevel(self):
- +++ Listbox-winfo_viewable(self):
- +++ Listbox-winfo_visual(self):
- +++ Listbox-winfo_visualid(self):
- +++ Listbox-winfo_visualsavailable(self, includeids=0):
- +++ Listbox-winfo_vrootheight(self):
- +++ Listbox-winfo_vrootwidth(self):
- +++ Listbox-winfo_vrootx(self):
- +++ Listbox-winfo_vrooty(self):
- +++ Listbox-winfo_width(self):
- +++ Listbox-winfo_x(self):
- +++ Listbox-winfo_y(self):
- +++ Listbox-forget = pack_forget(self):
- +++ Listbox-info = pack_info(self):
- +++ Listbox-pack = pack_configure(self, cnf={}, **kw):
- +++ Listbox-pack_configure(self, cnf={}, **kw):
- +++ Listbox-pack_forget(self):
- +++ Listbox-pack_info(self):Listbox-place = place_configure(self, cnf={}, **kw):
- +++ Listbox-place_configure(self, cnf={}, **kw):
- +++ Listbox-place_forget(self):
- +++ Listbox-place_info(self):Listbox-grid = grid_configure(self, cnf={}, **kw):
- +++ Listbox-grid_configure(self, cnf={}, **kw):
- +++ Listbox-grid_forget(self):
- +++ Listbox-grid_info(self):
- +++ Listbox-grid_remove(self):
- +++ Listbox-location = grid_location(self, x, y):Listbox-xview(self, *args):
- +++ Listbox-xview_moveto(self, fraction):
- +++ Listbox-xview_scroll(self, number, what):Listbox-yview(self, *args):
- +++ Listbox-yview_moveto(self, fraction):
- +++ Listbox-yview_scroll(self, number, what):
- Menu widget which allows to display menu bars, pull-down menus and pop-up menus.
- *** Menu
- +++ Menu-__init__(self, master={}, **kw):
- Construct menu widget with the parent MASTER.
- Valid resource names: activebackground, activeborderwidth,
- activeforeground, background, bd, bg, borderwidth, cursor,
- disabledforeground, fg, font, foreground, postcommand, relief,
- selectcolor, takefocus, tearoff, tearoffcommand, title, type.
- +++ Menu-activate(self, index):
- Activate entry at INDEX.
- +++ Menu-add(self, itemType, cnf={}, **kw):
- +++ Menu-add_cascade(self, cnf={}, **kw):
- Add hierarchical menu item.
- +++ Menu-add_checkbutton(self, cnf={}, **kw):
- Add checkbutton menu item.
- +++ Menu-add_command(self, cnf={}, **kw):
- Add command menu item.
- +++ Menu-add_radiobutton(self, cnf={}, **kw):
- Addd radio menu item.
- +++ Menu-add_separator(self, cnf={}, **kw):
- Add separator.
- +++ Menu-delete(self, index1, index2=None):
- Delete menu items between INDEX1 and INDEX2 (included).
- +++ Menu-entrycget(self, index, option):
- Return the resource value of an menu item for OPTION at INDEX.
- +++ Menu-entryconfig = entryconfigure(self, index, cnf=None, **kw)
- +++ Menu-entryconfigure(self, index, cnf=None, **kw):
- Configure a menu item at INDEX.
- +++ Menu-index(self, index):
- Return the index of a menu item identified by INDEX.
- +++ Menu-insert(self, index, itemType, cnf={}, **kw):
- +++ Menu-insert_cascade(self, index, cnf={}, **kw):
- Add hierarchical menu item at INDEX.
- +++ Menu-insert_checkbutton(self, index, cnf={}, **kw):
- Add checkbutton menu item at INDEX.
- +++ Menu-insert_command(self, index, cnf={}, **kw):
- Add command menu item at INDEX.
- +++ Menu-insert_radiobutton(self, index, cnf={}, **kw):
- Addd radio menu item at INDEX.
- +++ Menu-insert_separator(self, index, cnf={}, **kw):
- Add separator at INDEX.
- +++ Menu-invoke(self, index):
- Invoke a menu item identified by INDEX and execute
- the associated command.
- +++ Menu-post(self, x, y):
- Display a menu at position X,Y.
- +++ Menu-tk_bindForTraversal(self)
- +++ Menu-tk_firstMenu(self)
- +++ Menu-tk_getMenuButtons(self)
- +++ Menu-tk_invokeMenu(self)
- +++ Menu-tk_mbButtonDown(self)
- +++ Menu-tk_mbPost(self)
- +++ Menu-tk_mbUnpost(self)
- +++ Menu-tk_nextMenu(self, count)
- +++ Menu-tk_nextMenuEntry(self, count)
- +++ Menu-tk_popup(self, x, y, entry=''):
- Post the menu at position X,Y with entry ENTRY.
- +++ Menu-tk_traverseToMenu(self, char)
- +++ Menu-tk_traverseWithinMenu(self, char)
- +++ Menu-type(self, index):
- Return the type of the menu item at INDEX.
- +++ Menu-unpost(self):
- Unmap a menu.
- +++ Menu-yposition(self, index):
- Return the y-position of the topmost pixel of the menu item at INDEX.Menu-destroy(self):Menu-__contains__(self, key)
- +++ Menu-__getitem__ = cget(self, key):
- +++ Menu-__setitem__(self, key, value)
- +++ Menu-__str__(self):
- +++ Menu-after(self, ms, func=None, *args):
- +++ Menu-after_cancel(self, id):
- +++ Menu-after_idle(self, func, *args):
- +++ Menu-bbox = grid_bbox(self, column=None):
- +++ Menu-bell(self, display of=0):
- +++ Menu-bind(self, sequence=None):Menu-bind_all(self, sequence=None):
- +++ Menu-bind_class(self, className, sequence=None):
- +++ Menu-bindtags(self, tagList=None):
- +++ Menu-cget(self, key):
- +++ Menu-clipboard_append(self, string, **kw):
- +++ Menu-clipboard_clear(self, **kw):
- +++ Menu-clipboard_get(self, **kw):Menu-colormodel(self, value=None):
- +++ Menu-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
- +++ Menu-config = configure(self, cnf=None, **kw):
- +++ Menu-configure(self, cnf=None, **kw):
- +++ Menu-deletecommand(self, name):
- +++ Menu-event_add(self, virtual, *sequences):
- +++ Menu-event_delete(self, virtual, *sequences):
- +++ Menu-event_generate(self, sequence, **kw):
- +++ Menu-event_info(self, virtual=None):
- +++ Menu-focus = focus_set(self):
- +++ Menu-focus_display of(self):
- +++ Menu-focus_force(self):
- +++ Menu-focus_get(self):
- +++ Menu-focus_lastfor(self):
- +++ Menu-focus_set(self):
- +++ Menu-getboolean(self, s):
- +++ Menu-getvar(self, name='PY_VAR'):
- +++ Menu-grab_current(self):
- +++ Menu-grab_release(self):
- +++ Menu-grab_set(self):
- +++ Menu-grab_set_global(self):
- +++ Menu-grab_status(self):
- +++ Menu-grid_bbox(self, column=None):
- +++ Menu-grid_columnconfigure(self, index, cnf={}, **kw):
- +++ Menu-grid_location(self, x, y):
- +++ Menu-grid_propagate(self, flag=['_noarg_']):
- +++ Menu-grid_rowconfigure(self, index, cnf={}, **kw):
- +++ Menu-grid_size(self):
- +++ Menu-grid_slaves(self, row=None):
- +++ Menu-image_names(self):
- +++ Menu-image_types(self):
- +++ Menu-keys(self):
- +++ Menu-lift = tkraise(self, aboveThis=None):
- +++ Menu-lower(self, belowThis=None):
- +++ Menu-mainloop(self, n=0):
- +++ Menu-nametowidget(self, name):
- +++ Menu-option_add(self, pattern, value, priority=None):
- +++ Menu-option_clear(self):
- +++ Menu-option_get(self, name, className):
- +++ Menu-option_readfile(self, fileName, priority=None):
- +++ Menu-pack_propagate(self, flag=['_noarg_']):
- +++ Menu-pack_slaves(self):
- +++ Menu-place_slaves(self):
- +++ Menu-propagate = pack_propagate(self, flag=['_noarg_']):
- +++ Menu-quit(self):
- +++ Menu-register = _register(self, func, subst=1):
- +++ Menu-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
- +++ Menu-selection_clear(self, **kw):
- +++ Menu-selection_get(self, **kw):
- +++ Menu-selection_handle(self, command, **kw):
- +++ Menu-selection_own(self, **kw):
- +++ Menu-selection_own_get(self, **kw):
- +++ Menu-send(self, interp, cmd, *args):
- +++ Menu-setvar(self, name='1'):
- +++ Menu-size = grid_size(self):
- +++ Menu-slaves = pack_slaves(self):
- +++ Menu-tk_bisque(self):
- +++ Menu-tk_focusFollowsMouse(self):
- +++ Menu-tk_focusNext(self):
- +++ Menu-tk_focusPrev(self):
- +++ Menu-tk_menuBar(self, *args):
- +++ Menu-tk_setPalette(self, *args, **kw):
- +++ Menu-tk_strictMotif(self, boolean=None):
- +++ Menu-tkraise(self, aboveThis=None):
- +++ Menu-unbind(self, sequence, funcid=None):
- +++ Menu-unbind_all(self, sequence):
- +++ Menu-unbind_class(self, className, sequence):
- +++ Menu-update(self):
- +++ Menu-update_idletasks(self):
- +++ Menu-wait_variable(self, name='PY_VAR'):
- +++ Menu-wait_visibility(self, window=None):
- +++ Menu-wait_window(self, window=None):
- +++ Menu-waitvar = wait_variable(self, name='PY_VAR'):
- +++ Menu-winfo_atom(self, name, display of=0):
- +++ Menu-winfo_atomname(self, id, display of=0):
- +++ Menu-winfo_cells(self):
- +++ Menu-winfo_children(self):
- +++ Menu-winfo_class(self):
- +++ Menu-winfo_colormapfull(self):
- +++ Menu-winfo_containing(self, rootX, rootY, display of=0):
- +++ Menu-winfo_depth(self):
- +++ Menu-winfo_exists(self):
- +++ Menu-winfo_fpixels(self, number):
- +++ Menu-winfo_geometry(self):
- +++ Menu-winfo_height(self):
- +++ Menu-winfo_id(self):
- +++ Menu-winfo_interps(self, display of=0):
- +++ Menu-winfo_ismapped(self):
- +++ Menu-winfo_manager(self):
- +++ Menu-winfo_name(self):
- +++ Menu-winfo_parent(self):
- +++ Menu-winfo_pathname(self, id, display of=0):
- +++ Menu-winfo_pixels(self, number):
- +++ Menu-winfo_pointerx(self):
- +++ Menu-winfo_pointerxy(self):
- +++ Menu-winfo_pointery(self):
- +++ Menu-winfo_reqheight(self):
- +++ Menu-winfo_reqwidth(self):
- +++ Menu-winfo_rgb(self, color):
- +++ Menu-winfo_rootx(self):
- +++ Menu-winfo_rooty(self):
- +++ Menu-winfo_screen(self):
- +++ Menu-winfo_screencells(self):
- +++ Menu-winfo_screendepth(self):
- +++ Menu-winfo_screenheight(self):
- +++ Menu-winfo_screenmmheight(self):
- +++ Menu-winfo_screenmmwidth(self):
- +++ Menu-winfo_screenvisual(self):
- +++ Menu-winfo_screenwidth(self):
- +++ Menu-winfo_server(self):
- +++ Menu-winfo_toplevel(self):
- +++ Menu-winfo_viewable(self):
- +++ Menu-winfo_visual(self):
- +++ Menu-winfo_visualid(self):
- +++ Menu-winfo_visualsavailable(self, includeids=0):
- +++ Menu-winfo_vrootheight(self):
- +++ Menu-winfo_vrootwidth(self):
- +++ Menu-winfo_vrootx(self):
- +++ Menu-winfo_vrooty(self):
- +++ Menu-winfo_width(self):
- +++ Menu-winfo_x(self):
- +++ Menu-winfo_y(self):
- +++ Menu-forget = pack_forget(self):
- +++ Menu-info = pack_info(self):
- +++ Menu-pack = pack_configure(self, cnf={}, **kw):
- +++ Menu-pack_configure(self, cnf={}, **kw):
- +++ Menu-pack_forget(self):
- +++ Menu-pack_info(self):Menu-place = place_configure(self, cnf={}, **kw):
- +++ Menu-place_configure(self, cnf={}, **kw):
- +++ Menu-place_forget(self):
- +++ Menu-place_info(self):Menu-grid = grid_configure(self, cnf={}, **kw):
- +++ Menu-grid_configure(self, cnf={}, **kw):
- +++ Menu-grid_forget(self):
- +++ Menu-grid_info(self):
- +++ Menu-grid_remove(self):
- +++ Menu-location = grid_location(self, x, y):
- Menubutton widget, obsolete since Tk8.0.
- *** Menubutton
- +++ Menubutton-__init__(self, master={}, **kw)Menubutton-destroy(self):Menubutton-__contains__(self, key)
- +++ Menubutton-__getitem__ = cget(self, key):
- +++ Menubutton-__setitem__(self, key, value)
- +++ Menubutton-__str__(self):
- +++ Menubutton-after(self, ms, func=None, *args):
- +++ Menubutton-after_cancel(self, id):
- +++ Menubutton-after_idle(self, func, *args):
- +++ Menubutton-bbox = grid_bbox(self, column=None):
- +++ Menubutton-bell(self, display of=0):
- +++ Menubutton-bind(self, sequence=None):Menubutton-bind_all(self, sequence=None):
- +++ Menubutton-bind_class(self, className, sequence=None):
- +++ Menubutton-bindtags(self, tagList=None):
- +++ Menubutton-cget(self, key):
- +++ Menubutton-clipboard_append(self, string, **kw):
- +++ Menubutton-clipboard_clear(self, **kw):
- +++ Menubutton-clipboard_get(self, **kw):Menubutton-colormodel(self, value=None):
- +++ Menubutton-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
- +++ Menubutton-config = configure(self, cnf=None, **kw):
- +++ Menubutton-configure(self, cnf=None, **kw):
- +++ Menubutton-deletecommand(self, name):
- +++ Menubutton-event_add(self, virtual, *sequences):
- +++ Menubutton-event_delete(self, virtual, *sequences):
- +++ Menubutton-event_generate(self, sequence, **kw):
- +++ Menubutton-event_info(self, virtual=None):
- +++ Menubutton-focus = focus_set(self):
- +++ Menubutton-focus_display of(self):
- +++ Menubutton-focus_force(self):
- +++ Menubutton-focus_get(self):
- +++ Menubutton-focus_lastfor(self):
- +++ Menubutton-focus_set(self):
- +++ Menubutton-getboolean(self, s):
- +++ Menubutton-getvar(self, name='PY_VAR'):
- +++ Menubutton-grab_current(self):
- +++ Menubutton-grab_release(self):
- +++ Menubutton-grab_set(self):
- +++ Menubutton-grab_set_global(self):
- +++ Menubutton-grab_status(self):
- +++ Menubutton-grid_bbox(self, column=None):
- +++ Menubutton-grid_columnconfigure(self, index, cnf={}, **kw):
- +++ Menubutton-grid_location(self, x, y):
- +++ Menubutton-grid_propagate(self, flag=['_noarg_']):
- +++ Menubutton-grid_rowconfigure(self, index, cnf={}, **kw):
- +++ Menubutton-grid_size(self):
- +++ Menubutton-grid_slaves(self, row=None):
- +++ Menubutton-image_names(self):
- +++ Menubutton-image_types(self):
- +++ Menubutton-keys(self):
- +++ Menubutton-lift = tkraise(self, aboveThis=None):
- +++ Menubutton-lower(self, belowThis=None):
- +++ Menubutton-mainloop(self, n=0):
- +++ Menubutton-nametowidget(self, name):
- +++ Menubutton-option_add(self, pattern, value, priority=None):
- +++ Menubutton-option_clear(self):
- +++ Menubutton-option_get(self, name, className):
- +++ Menubutton-option_readfile(self, fileName, priority=None):
- +++ Menubutton-pack_propagate(self, flag=['_noarg_']):
- +++ Menubutton-pack_slaves(self):
- +++ Menubutton-place_slaves(self):
- +++ Menubutton-propagate = pack_propagate(self, flag=['_noarg_']):
- +++ Menubutton-quit(self):
- +++ Menubutton-register = _register(self, func, subst=1):
- +++ Menubutton-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
- +++ Menubutton-selection_clear(self, **kw):
- +++ Menubutton-selection_get(self, **kw):
- +++ Menubutton-selection_handle(self, command, **kw):
- +++ Menubutton-selection_own(self, **kw):
- +++ Menubutton-selection_own_get(self, **kw):
- +++ Menubutton-send(self, interp, cmd, *args):
- +++ Menubutton-setvar(self, name='1'):
- +++ Menubutton-size = grid_size(self):
- +++ Menubutton-slaves = pack_slaves(self):
- +++ Menubutton-tk_bisque(self):
- +++ Menubutton-tk_focusFollowsMouse(self):
- +++ Menubutton-tk_focusNext(self):
- +++ Menubutton-tk_focusPrev(self):
- +++ Menubutton-tk_menuBar(self, *args):
- +++ Menubutton-tk_setPalette(self, *args, **kw):
- +++ Menubutton-tk_strictMotif(self, boolean=None):
- +++ Menubutton-tkraise(self, aboveThis=None):
- +++ Menubutton-unbind(self, sequence, funcid=None):
- +++ Menubutton-unbind_all(self, sequence):
- +++ Menubutton-unbind_class(self, className, sequence):
- +++ Menubutton-update(self):
- +++ Menubutton-update_idletasks(self):
- +++ Menubutton-wait_variable(self, name='PY_VAR'):
- +++ Menubutton-wait_visibility(self, window=None):
- +++ Menubutton-wait_window(self, window=None):
- +++ Menubutton-waitvar = wait_variable(self, name='PY_VAR'):
- +++ Menubutton-winfo_atom(self, name, display of=0):
- +++ Menubutton-winfo_atomname(self, id, display of=0):
- +++ Menubutton-winfo_cells(self):
- +++ Menubutton-winfo_children(self):
- +++ Menubutton-winfo_class(self):
- +++ Menubutton-winfo_colormapfull(self):
- +++ Menubutton-winfo_containing(self, rootX, rootY, display of=0):
- +++ Menubutton-winfo_depth(self):
- +++ Menubutton-winfo_exists(self):
- +++ Menubutton-winfo_fpixels(self, number):
- +++ Menubutton-winfo_geometry(self):
- +++ Menubutton-winfo_height(self):
- +++ Menubutton-winfo_id(self):
- +++ Menubutton-winfo_interps(self, display of=0):
- +++ Menubutton-winfo_ismapped(self):
- +++ Menubutton-winfo_manager(self):
- +++ Menubutton-winfo_name(self):
- +++ Menubutton-winfo_parent(self):
- +++ Menubutton-winfo_pathname(self, id, display of=0):
- +++ Menubutton-winfo_pixels(self, number):
- +++ Menubutton-winfo_pointerx(self):
- +++ Menubutton-winfo_pointerxy(self):
- +++ Menubutton-winfo_pointery(self):
- +++ Menubutton-winfo_reqheight(self):
- +++ Menubutton-winfo_reqwidth(self):
- +++ Menubutton-winfo_rgb(self, color):
- +++ Menubutton-winfo_rootx(self):
- +++ Menubutton-winfo_rooty(self):
- +++ Menubutton-winfo_screen(self):
- +++ Menubutton-winfo_screencells(self):
- +++ Menubutton-winfo_screendepth(self):
- +++ Menubutton-winfo_screenheight(self):
- +++ Menubutton-winfo_screenmmheight(self):
- +++ Menubutton-winfo_screenmmwidth(self):
- +++ Menubutton-winfo_screenvisual(self):
- +++ Menubutton-winfo_screenwidth(self):
- +++ Menubutton-winfo_server(self):
- +++ Menubutton-winfo_toplevel(self):
- +++ Menubutton-winfo_viewable(self):
- +++ Menubutton-winfo_visual(self):
- +++ Menubutton-winfo_visualid(self):
- +++ Menubutton-winfo_visualsavailable(self, includeids=0):
- +++ Menubutton-winfo_vrootheight(self):
- +++ Menubutton-winfo_vrootwidth(self):
- +++ Menubutton-winfo_vrootx(self):
- +++ Menubutton-winfo_vrooty(self):
- +++ Menubutton-winfo_width(self):
- +++ Menubutton-winfo_x(self):
- +++ Menubutton-winfo_y(self):
- +++ Menubutton-forget = pack_forget(self):
- +++ Menubutton-info = pack_info(self):
- +++ Menubutton-pack = pack_configure(self, cnf={}, **kw):
- +++ Menubutton-pack_configure(self, cnf={}, **kw):
- +++ Menubutton-pack_forget(self):
- +++ Menubutton-pack_info(self):Menubutton-place = place_configure(self, cnf={}, **kw):
- +++ Menubutton-place_configure(self, cnf={}, **kw):
- +++ Menubutton-place_forget(self):
- +++ Menubutton-place_info(self):Menubutton-grid = grid_configure(self, cnf={}, **kw):
- +++ Menubutton-grid_configure(self, cnf={}, **kw):
- +++ Menubutton-grid_forget(self):
- +++ Menubutton-grid_info(self):
- +++ Menubutton-grid_remove(self):
- +++ Menubutton-location = grid_location(self, x, y):
- Label does it too.
- *** Message
- +++ Message-__init__(self, master={}, **kw)Message-destroy(self):Message-__contains__(self, key)
- +++ Message-__getitem__ = cget(self, key):
- +++ Message-__setitem__(self, key, value)
- +++ Message-__str__(self):
- +++ Message-after(self, ms, func=None, *args):
- +++ Message-after_cancel(self, id):
- +++ Message-after_idle(self, func, *args):
- +++ Message-bbox = grid_bbox(self, column=None):
- +++ Message-bell(self, display of=0):
- +++ Message-bind(self, sequence=None):Message-bind_all(self, sequence=None):
- +++ Message-bind_class(self, className, sequence=None):
- +++ Message-bindtags(self, tagList=None):
- +++ Message-cget(self, key):
- +++ Message-clipboard_append(self, string, **kw):
- +++ Message-clipboard_clear(self, **kw):
- +++ Message-clipboard_get(self, **kw):Message-colormodel(self, value=None):
- +++ Message-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
- +++ Message-config = configure(self, cnf=None, **kw):
- +++ Message-configure(self, cnf=None, **kw):
- +++ Message-deletecommand(self, name):
- +++ Message-event_add(self, virtual, *sequences):
- +++ Message-event_delete(self, virtual, *sequences):
- +++ Message-event_generate(self, sequence, **kw):
- +++ Message-event_info(self, virtual=None):
- +++ Message-focus = focus_set(self):
- +++ Message-focus_display of(self):
- +++ Message-focus_force(self):
- +++ Message-focus_get(self):
- +++ Message-focus_lastfor(self):
- +++ Message-focus_set(self):
- +++ Message-getboolean(self, s):
- +++ Message-getvar(self, name='PY_VAR'):
- +++ Message-grab_current(self):
- +++ Message-grab_release(self):
- +++ Message-grab_set(self):
- +++ Message-grab_set_global(self):
- +++ Message-grab_status(self):
- +++ Message-grid_bbox(self, column=None):
- +++ Message-grid_columnconfigure(self, index, cnf={}, **kw):
- +++ Message-grid_location(self, x, y):
- +++ Message-grid_propagate(self, flag=['_noarg_']):
- +++ Message-grid_rowconfigure(self, index, cnf={}, **kw):
- +++ Message-grid_size(self):
- +++ Message-grid_slaves(self, row=None):
- +++ Message-image_names(self):
- +++ Message-image_types(self):
- +++ Message-keys(self):
- +++ Message-lift = tkraise(self, aboveThis=None):
- +++ Message-lower(self, belowThis=None):
- +++ Message-mainloop(self, n=0):
- +++ Message-nametowidget(self, name):
- +++ Message-option_add(self, pattern, value, priority=None):
- +++ Message-option_clear(self):
- +++ Message-option_get(self, name, className):
- +++ Message-option_readfile(self, fileName, priority=None):
- +++ Message-pack_propagate(self, flag=['_noarg_']):
- +++ Message-pack_slaves(self):
- +++ Message-place_slaves(self):
- +++ Message-propagate = pack_propagate(self, flag=['_noarg_']):
- +++ Message-quit(self):
- +++ Message-register = _register(self, func, subst=1):
- +++ Message-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
- +++ Message-selection_clear(self, **kw):
- +++ Message-selection_get(self, **kw):
- +++ Message-selection_handle(self, command, **kw):
- +++ Message-selection_own(self, **kw):
- +++ Message-selection_own_get(self, **kw):
- +++ Message-send(self, interp, cmd, *args):
- +++ Message-setvar(self, name='1'):
- +++ Message-size = grid_size(self):
- +++ Message-slaves = pack_slaves(self):
- +++ Message-tk_bisque(self):
- +++ Message-tk_focusFollowsMouse(self):
- +++ Message-tk_focusNext(self):
- +++ Message-tk_focusPrev(self):
- +++ Message-tk_menuBar(self, *args):
- +++ Message-tk_setPalette(self, *args, **kw):
- +++ Message-tk_strictMotif(self, boolean=None):
- +++ Message-tkraise(self, aboveThis=None):
- +++ Message-unbind(self, sequence, funcid=None):
- +++ Message-unbind_all(self, sequence):
- +++ Message-unbind_class(self, className, sequence):
- +++ Message-update(self):
- +++ Message-update_idletasks(self):
- +++ Message-wait_variable(self, name='PY_VAR'):
- +++ Message-wait_visibility(self, window=None):
- +++ Message-wait_window(self, window=None):
- +++ Message-waitvar = wait_variable(self, name='PY_VAR'):
- +++ Message-winfo_atom(self, name, display of=0):
- +++ Message-winfo_atomname(self, id, display of=0):
- +++ Message-winfo_cells(self):
- +++ Message-winfo_children(self):
- +++ Message-winfo_class(self):
- +++ Message-winfo_colormapfull(self):
- +++ Message-winfo_containing(self, rootX, rootY, display of=0):
- +++ Message-winfo_depth(self):
- +++ Message-winfo_exists(self):
- +++ Message-winfo_fpixels(self, number):
- +++ Message-winfo_geometry(self):
- +++ Message-winfo_height(self):
- +++ Message-winfo_id(self):
- +++ Message-winfo_interps(self, display of=0):
- +++ Message-winfo_ismapped(self):
- +++ Message-winfo_manager(self):
- +++ Message-winfo_name(self):
- +++ Message-winfo_parent(self):
- +++ Message-winfo_pathname(self, id, display of=0):
- +++ Message-winfo_pixels(self, number):
- +++ Message-winfo_pointerx(self):
- +++ Message-winfo_pointerxy(self):
- +++ Message-winfo_pointery(self):
- +++ Message-winfo_reqheight(self):
- +++ Message-winfo_reqwidth(self):
- +++ Message-winfo_rgb(self, color):
- +++ Message-winfo_rootx(self):
- +++ Message-winfo_rooty(self):
- +++ Message-winfo_screen(self):
- +++ Message-winfo_screencells(self):
- +++ Message-winfo_screendepth(self):
- +++ Message-winfo_screenheight(self):
- +++ Message-winfo_screenmmheight(self):
- +++ Message-winfo_screenmmwidth(self):
- +++ Message-winfo_screenvisual(self):
- +++ Message-winfo_screenwidth(self):
- +++ Message-winfo_server(self):
- +++ Message-winfo_toplevel(self):
- +++ Message-winfo_viewable(self):
- +++ Message-winfo_visual(self):
- +++ Message-winfo_visualid(self):
- +++ Message-winfo_visualsavailable(self, includeids=0):
- +++ Message-winfo_vrootheight(self):
- +++ Message-winfo_vrootwidth(self):
- +++ Message-winfo_vrootx(self):
- +++ Message-winfo_vrooty(self):
- +++ Message-winfo_width(self):
- +++ Message-winfo_x(self):
- +++ Message-winfo_y(self):
- +++ Message-forget = pack_forget(self):
- +++ Message-info = pack_info(self):
- +++ Message-pack = pack_configure(self, cnf={}, **kw):
- +++ Message-pack_configure(self, cnf={}, **kw):
- +++ Message-pack_forget(self):
- +++ Message-pack_info(self):Message-place = place_configure(self, cnf={}, **kw):
- +++ Message-place_configure(self, cnf={}, **kw):
- +++ Message-place_forget(self):
- +++ Message-place_info(self):Message-grid = grid_configure(self, cnf={}, **kw):
- +++ Message-grid_configure(self, cnf={}, **kw):
- +++ Message-grid_forget(self):
- +++ Message-grid_info(self):
- +++ Message-grid_remove(self):
- +++ Message-location = grid_location(self, x, y):
- *** class Misc
- Base class which defines methods common for interior widgets.
- +++ Misc-__contains__(self, key)
- +++ Misc-__getitem__ = cget(self, key)
- +++ Misc-__setitem__(self, key, value)
- +++ Misc-__str__(self):
- +++ Misc-after(self, ms, func=None, *args):
- +++ Misc-after_cancel(self, id):
- +++ Misc-after_idle(self, func, *args):
- +++ Misc-bbox = grid_bbox(self, column=None)
- +++ Misc-bell(self, display of=0):
- +++ Misc-bind(self, sequence=None):Misc-bind_all(self, sequence=None):
- +++ Misc-bind_class(self, className, sequence=None):
- +++ Misc-bindtags(self, tagList=None):
- +++ Misc-cget(self, key):
- +++ Misc-clipboard_append(self, string, **kw):
- +++ Misc-clipboard_clear(self, **kw):
- +++ Misc-clipboard_get(self, **kw):Misc-colormodel(self, value=None):
- +++ Misc-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw)
- +++ Misc-config = configure(self, cnf=None, **kw)
- +++ Misc-configure(self, cnf=None, **kw):
- +++ Misc-deletecommand(self, name):
- +++ Misc-destroy(self):
- Delete all Tcl commands created for
- this widget in the Tcl interpreter.
- +++ Misc-event_add(self, virtual, *sequences):
- +++ Misc-event_delete(self, virtual, *sequences):
- +++ Misc-event_generate(self, sequence, **kw):
- +++ Misc-event_info(self, virtual=None):
- +++ Misc-focus = focus_set(self)
- +++ Misc-focus_display of(self):
- +++ Misc-focus_force(self):
- +++ Misc-focus_get(self):
- +++ Misc-focus_lastfor(self):
- +++ Misc-focus_set(self):
- +++ Misc-getboolean(self, s):
- +++ Misc-getvar(self, name='PY_VAR'):
- +++ Misc-grab_current(self):
- +++ Misc-grab_release(self):
- +++ Misc-grab_set(self):
- +++ Misc-grab_set_global(self):
- +++ Misc-grab_status(self):
- +++ Misc-grid_bbox(self, column=None):
- +++ Misc-grid_columnconfigure(self, index, cnf={}, **kw):
- +++ Misc-grid_location(self, x, y):
- +++ Misc-grid_propagate(self, flag=['_noarg_']):
- +++ Misc-grid_rowconfigure(self, index, cnf={}, **kw):
- +++ Misc-grid_size(self):
- +++ Misc-grid_slaves(self, row=None):
- +++ Misc-image_names(self):
- +++ Misc-image_types(self):
- +++ Misc-keys(self):
- +++ Misc-lift = tkraise(self, aboveThis=None)
- +++ Misc-lower(self, belowThis=None):
- +++ Misc-mainloop(self, n=0):
- +++ Misc-nametowidget(self, name):
- +++ Misc-option_add(self, pattern, value, priority=None):
- +++ Misc-option_clear(self):
- +++ Misc-option_get(self, name, className):
- +++ Misc-option_readfile(self, fileName, priority=None):
- +++ Misc-pack_propagate(self, flag=['_noarg_']):
- +++ Misc-pack_slaves(self):
- +++ Misc-place_slaves(self):
- +++ Misc-propagate = pack_propagate(self, flag=['_noarg_'])
- +++ Misc-quit(self):
- +++ Misc-register = _register(self, func, subst=1)
- +++ Misc-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw)
- +++ Misc-selection_clear(self, **kw):
- +++ Misc-selection_get(self, **kw):
- +++ Misc-selection_handle(self, command, **kw):
- +++ Misc-selection_own(self, **kw):
- +++ Misc-selection_own_get(self, **kw):
- +++ Misc-send(self, interp, cmd, *args):
- +++ Misc-setvar(self, name='1'):
- +++ Misc-size = grid_size(self)
- +++ Misc-slaves = pack_slaves(self)
- +++ Misc-tk_bisque(self):
- +++ Misc-tk_focusFollowsMouse(self):
- +++ Misc-tk_focusNext(self):
- +++ Misc-tk_focusPrev(self):
- +++ Misc-tk_menuBar(self, *args):
- +++ Misc-tk_setPalette(self, *args, **kw):
- +++ Misc-tk_strictMotif(self, boolean=None):
- +++ Misc-tkraise(self, aboveThis=None):
- +++ Misc-unbind(self, sequence, funcid=None):
- +++ Misc-unbind_all(self, sequence):
- +++ Misc-unbind_class(self, className, sequence):
- +++ Misc-update(self):
- +++ Misc-update_idletasks(self):
- +++ Misc-wait_variable(self, name='PY_VAR'):
- +++ Misc-wait_visibility(self, window=None):
- +++ Misc-wait_window(self, window=None):
- +++ Misc-waitvar = wait_variable(self, name='PY_VAR')
- +++ Misc-winfo_atom(self, name, display of=0):
- +++ Misc-winfo_atomname(self, id, display of=0):
- +++ Misc-winfo_cells(self):
- +++ Misc-winfo_children(self):
- +++ Misc-winfo_class(self):
- +++ Misc-winfo_colormapfull(self):
- +++ Misc-winfo_containing(self, rootX, rootY, display of=0):
- +++ Misc-winfo_depth(self):
- +++ Misc-winfo_exists(self):
- +++ Misc-winfo_fpixels(self, number):
- +++ Misc-winfo_geometry(self):
- +++ Misc-winfo_height(self):
- +++ Misc-winfo_id(self):
- +++ Misc-winfo_interps(self, display of=0):
- +++ Misc-winfo_ismapped(self):
- +++ Misc-winfo_manager(self):
- +++ Misc-winfo_name(self):
- +++ Misc-winfo_parent(self):
- +++ Misc-winfo_pathname(self, id, display of=0):
- +++ Misc-winfo_pixels(self, number):
- +++ Misc-winfo_pointerx(self):
- +++ Misc-winfo_pointerxy(self):
- +++ Misc-winfo_pointery(self):
- +++ Misc-winfo_reqheight(self):
- +++ Misc-winfo_reqwidth(self):
- +++ Misc-winfo_rgb(self, color):
- +++ Misc-winfo_rootx(self):
- +++ Misc-winfo_rooty(self):
- +++ Misc-winfo_screen(self):
- +++ Misc-winfo_screencells(self):
- +++ Misc-winfo_screendepth(self):
- +++ Misc-winfo_screenheight(self):
- +++ Misc-winfo_screenmmheight(self):
- +++ Misc-winfo_screenmmwidth(self):
- +++ Misc-winfo_screenvisual(self):
- +++ Misc-winfo_screenwidth(self):
- +++ Misc-winfo_server(self):
- +++ Misc-winfo_toplevel(self):
- +++ Misc-winfo_viewable(self):
- +++ Misc-winfo_visual(self):
- +++ Misc-winfo_visualid(self):
- +++ Misc-winfo_visualsavailable(self, includeids=0):
- +++ Misc-winfo_vrootheight(self):
- +++ Misc-winfo_vrootwidth(self):
- +++ Misc-winfo_vrootx(self):
- +++ Misc-winfo_vrooty(self):
- +++ Misc-winfo_width(self):
- +++ Misc-winfo_x(self):
- +++ Misc-winfo_y(self):Data and other attributes defined here:
- Menubutton *****
- OptionMenu which allows the user to select a value from a menu.
- OptionMenu
- +++ OptionMenu-__getitem__(self, name)
- +++ OptionMenu-__init__(self, master, variable, value, *values, **kwargs):
- Construct an optionmenu widget with the parent MASTER, with
- the resource textvariable set to VARIABLE, the initially selected
- value VALUE, the other menu values VALUES and an additional
- keyword argument command.
- +++ OptionMenu-destroy(self):
- Destroy this widget and the associated menu.OptionMenu-__contains__(self, key)
- +++ OptionMenu-__setitem__(self, key, value)
- +++ OptionMenu-__str__(self):
- +++ OptionMenu-after(self, ms, func=None, *args):
- +++ OptionMenu-after_cancel(self, id):
- +++ OptionMenu-after_idle(self, func, *args):
- +++ OptionMenu-bbox = grid_bbox(self, column=None):
- +++ OptionMenu-bell(self, display of=0):
- +++ OptionMenu-bind(self, sequence=None):OptionMenu-bind_all(self, sequence=None):
- +++ OptionMenu-bind_class(self, className, sequence=None):
- +++ OptionMenu-bindtags(self, tagList=None):
- +++ OptionMenu-cget(self, key):
- +++ OptionMenu-clipboard_append(self, string, **kw):
- +++ OptionMenu-clipboard_clear(self, **kw):
- +++ OptionMenu-clipboard_get(self, **kw):OptionMenu-colormodel(self, value=None):
- +++ OptionMenu-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
- +++ OptionMenu-config = configure(self, cnf=None, **kw):
- +++ OptionMenu-configure(self, cnf=None, **kw):
- +++ OptionMenu-deletecommand(self, name):
- +++ OptionMenu-event_add(self, virtual, *sequences):
- +++ OptionMenu-event_delete(self, virtual, *sequences):
- +++ OptionMenu-event_generate(self, sequence, **kw):
- +++ OptionMenu-event_info(self, virtual=None):
- +++ OptionMenu-focus = focus_set(self):
- +++ OptionMenu-focus_display of(self):
- +++ OptionMenu-focus_force(self):
- +++ OptionMenu-focus_get(self):
- +++ OptionMenu-focus_lastfor(self):
- +++ OptionMenu-focus_set(self):
- +++ OptionMenu-getboolean(self, s):
- +++ OptionMenu-getvar(self, name='PY_VAR'):
- +++ OptionMenu-grab_current(self):
- +++ OptionMenu-grab_release(self):
- +++ OptionMenu-grab_set(self):
- +++ OptionMenu-grab_set_global(self):
- +++ OptionMenu-grab_status(self):
- +++ OptionMenu-grid_bbox(self, column=None):
- +++ OptionMenu-grid_columnconfigure(self, index, cnf={}, **kw):
- +++ OptionMenu-grid_location(self, x, y):
- +++ OptionMenu-grid_propagate(self, flag=['_noarg_']):
- +++ OptionMenu-grid_rowconfigure(self, index, cnf={}, **kw):
- +++ OptionMenu-grid_size(self):
- +++ OptionMenu-grid_slaves(self, row=None):
- +++ OptionMenu-image_names(self):
- +++ OptionMenu-image_types(self):
- +++ OptionMenu-keys(self):
- +++ OptionMenu-lift = tkraise(self, aboveThis=None):
- +++ OptionMenu-lower(self, belowThis=None):
- +++ OptionMenu-mainloop(self, n=0):
- +++ OptionMenu-nametowidget(self, name):
- +++ OptionMenu-option_add(self, pattern, value, priority=None):
- +++ OptionMenu-option_clear(self):
- +++ OptionMenu-option_get(self, name, className):
- +++ OptionMenu-option_readfile(self, fileName, priority=None):
- +++ OptionMenu-pack_propagate(self, flag=['_noarg_']):
- +++ OptionMenu-pack_slaves(self):
- +++ OptionMenu-place_slaves(self):
- +++ OptionMenu-propagate = pack_propagate(self, flag=['_noarg_']):
- +++ OptionMenu-quit(self):
- +++ OptionMenu-register = _register(self, func, subst=1):
- +++ OptionMenu-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
- +++ OptionMenu-selection_clear(self, **kw):
- +++ OptionMenu-selection_get(self, **kw):
- +++ OptionMenu-selection_handle(self, command, **kw):
- +++ OptionMenu-selection_own(self, **kw):
- +++ OptionMenu-selection_own_get(self, **kw):
- +++ OptionMenu-send(self, interp, cmd, *args):
- +++ OptionMenu-setvar(self, name='1'):
- +++ OptionMenu-size = grid_size(self):
- +++ OptionMenu-slaves = pack_slaves(self):
- +++ OptionMenu-tk_bisque(self):
- +++ OptionMenu-tk_focusFollowsMouse(self):
- +++ OptionMenu-tk_focusNext(self):
- +++ OptionMenu-tk_focusPrev(self):
- +++ OptionMenu-tk_menuBar(self, *args):
- +++ OptionMenu-tk_setPalette(self, *args, **kw):
- +++ OptionMenu-tk_strictMotif(self, boolean=None):
- +++ OptionMenu-tkraise(self, aboveThis=None):
- +++ OptionMenu-unbind(self, sequence, funcid=None):
- +++ OptionMenu-unbind_all(self, sequence):
- +++ OptionMenu-unbind_class(self, className, sequence):
- +++ OptionMenu-update(self):
- +++ OptionMenu-update_idletasks(self):
- +++ OptionMenu-wait_variable(self, name='PY_VAR'):
- +++ OptionMenu-wait_visibility(self, window=None):
- +++ OptionMenu-wait_window(self, window=None):
- +++ OptionMenu-waitvar = wait_variable(self, name='PY_VAR'):
- +++ OptionMenu-winfo_atom(self, name, display of=0):
- +++ OptionMenu-winfo_atomname(self, id, display of=0):
- +++ OptionMenu-winfo_cells(self):
- +++ OptionMenu-winfo_children(self):
- +++ OptionMenu-winfo_class(self):
- +++ OptionMenu-winfo_colormapfull(self):
- +++ OptionMenu-winfo_containing(self, rootX, rootY, display of=0):
- +++ OptionMenu-winfo_depth(self):
- +++ OptionMenu-winfo_exists(self):
- +++ OptionMenu-winfo_fpixels(self, number):
- +++ OptionMenu-winfo_geometry(self):
- +++ OptionMenu-winfo_height(self):
- +++ OptionMenu-winfo_id(self):
- +++ OptionMenu-winfo_interps(self, display of=0):
- +++ OptionMenu-winfo_ismapped(self):
- +++ OptionMenu-winfo_manager(self):
- +++ OptionMenu-winfo_name(self):
- +++ OptionMenu-winfo_parent(self):
- +++ OptionMenu-winfo_pathname(self, id, display of=0):
- +++ OptionMenu-winfo_pixels(self, number):
- +++ OptionMenu-winfo_pointerx(self):
- +++ OptionMenu-winfo_pointerxy(self):
- +++ OptionMenu-winfo_pointery(self):
- +++ OptionMenu-winfo_reqheight(self):
- +++ OptionMenu-winfo_reqwidth(self):
- +++ OptionMenu-winfo_rgb(self, color):
- +++ OptionMenu-winfo_rootx(self):
- +++ OptionMenu-winfo_rooty(self):
- +++ OptionMenu-winfo_screen(self):
- +++ OptionMenu-winfo_screencells(self):
- +++ OptionMenu-winfo_screendepth(self):
- +++ OptionMenu-winfo_screenheight(self):
- +++ OptionMenu-winfo_screenmmheight(self):
- +++ OptionMenu-winfo_screenmmwidth(self):
- +++ OptionMenu-winfo_screenvisual(self):
- +++ OptionMenu-winfo_screenwidth(self):
- +++ OptionMenu-winfo_server(self):
- +++ OptionMenu-winfo_toplevel(self):
- +++ OptionMenu-winfo_viewable(self):
- +++ OptionMenu-winfo_visual(self):
- +++ OptionMenu-winfo_visualid(self):
- +++ OptionMenu-winfo_visualsavailable(self, includeids=0):
- +++ OptionMenu-winfo_vrootheight(self):
- +++ OptionMenu-winfo_vrootwidth(self):
- +++ OptionMenu-winfo_vrootx(self):
- +++ OptionMenu-winfo_vrooty(self):
- +++ OptionMenu-winfo_width(self):
- +++ OptionMenu-winfo_x(self):
- +++ OptionMenu-winfo_y(self):
- +++ OptionMenu-forget = pack_forget(self):
- +++ OptionMenu-info = pack_info(self):
- +++ OptionMenu-pack = pack_configure(self, cnf={}, **kw):
- +++ OptionMenu-pack_configure(self, cnf={}, **kw):
- +++ OptionMenu-pack_forget(self):
- +++ OptionMenu-pack_info(self):OptionMenu-place = place_configure(self, cnf={}, **kw):
- +++ OptionMenu-place_configure(self, cnf={}, **kw):
- +++ OptionMenu-place_forget(self):
- +++ OptionMenu-place_info(self):OptionMenu-grid = grid_configure(self, cnf={}, **kw):
- +++ OptionMenu-grid_configure(self, cnf={}, **kw):
- +++ OptionMenu-grid_forget(self):
- +++ OptionMenu-grid_info(self):
- +++ OptionMenu-grid_remove(self):
- +++ OptionMenu-location = grid_location(self, x, y):
- *** class Pack
- Geometry manager Pack.
- Base class to use the methods pack_* in every widget.
- +++ Pack-config = pack_configure(self, cnf={}, **kw)
- +++ Pack-configure = pack_configure(self, cnf={}, **kw)
- +++ Pack-forget = pack_forget(self)
- +++ Pack-info = pack_info(self)
- +++ Pack-pack = pack_configure(self, cnf={}, **kw)
- +++ Pack-pack_configure(self, cnf={}, **kw):
- +++ Pack-pack_forget(self):
- +++ Pack-pack_info(self):
- +++ Pack-pack_propagate(self, flagMisc:
- +++ Pack-pack_slaves(self)Misc:
- +++ Pack-propagate = pack_propagate(self, flagMisc:
- +++ Pack-slaves = pack_slaves(self)Misc:
- panedwindow widget.
- PanedWindow
- +++ PanedWindow-__init__(self, master={}, **kw):
- Construct a panedwindow widget with the parent MASTER.
- background, borderwidth, cursor, height,
- orient, relief, width
- handlepad, handlesize, opaqueresize,
- sashcursor, sashpad, sashrelief,
- sashwidth, showhandle,
- +++ PanedWindow-add(self, child, **kw):
- Add a child widget to the panedwindow in a new pane.
- The child argument is the name of the child widget
- followed by pairs of arguments that specify how to
- manage the windows. The possible options and values
- are the ones accepted by the paneconfigure method.
- +++ PanedWindow-forget = remove(self, child)
- +++ PanedWindow-identify(self, x, y):
- Identify the panedwindow component at point x, y
- If the point is over a sash or a sash handle, the result
- is a two element list containing the index of the sash or
- handle, and a word indicating whether it is over a sash
- or a handle, such as {0 sash} or {2 handle}. If the point
- is over any other part of the panedwindow, the result is
- an empty list.
- +++ PanedWindow-panecget(self, child, option):
- Query a management option for window.
- Option may be any value allowed by the paneconfigure subcommand
- +++ PanedWindow-paneconfig = paneconfigure(self, tagOrId, cnf=None, **kw)
- +++ PanedWindow-paneconfigure(self, tagOrId, cnf=None, **kw):
- Query or modify the management options for window.
- If no option is specified, returns a list describing all
- of the available options for pathName. If option is
- specified with no value, then the command returns a list
- describing the one named option (this list will be identical
- to the corresponding sublist of the value returned if no
- option is specified). If one or more option-value pairs are
- specified, then the command modifies the given widget
- option(s) to have the given value(s); in this case the
- command returns an empty string. The following options
- are supported:
- after window
- Insert the window after the window specified. window
- should be the name of a window already managed by pathName.
- before window
- Insert the window before the window specified. window
- height size
- Specify a height for the window. The height will be the
- outer dimension of the window including its border, if
- any. If size is an empty string, or if -height is not
- specified, then the height requested internally by the
- window will be used initially; the height may later be
- adjusted by the movement of sashes in the panedwindow.
- Size may be any value accepted by Tk_GetPixels.
- minsize n
- Specifies that the size of the window cannot be made
- less than n. This constraint only affects the size of
- the widget in the paned dimension -- the x dimension
- for horizontal panedwindows, the y dimension for
- vertical panedwindows. May be any value accepted by
- Tk_GetPixels.
- padx n
- Specifies a non-negative value indicating how much
- extra space to leave on each side of the window in
- the X-direction. The value may have any of the forms
- accepted by Tk_GetPixels.
- pady n
- the Y-direction. The value may have any of the forms
- sticky style
- If a window's pane is larger than the requested
- dimensions of the window, this option may be used
- to position (or stretch) the window within its pane.
- Style is a string that contains zero or more of the
- characters n, s, e or w. The string can optionally
- contains spaces or commas, but they are ignored. Each
- letter refers to a side (north, south, east, or west)
- that the window will "stick" to. If both n and s
- (or e and w) are specified, the window will be
- stretched to fill the entire height (or width) of
- its cavity.
- width size
- Specify a width for the window. The width will be
- the outer dimension of the window including its
- border, if any. If size is an empty string, or
- if -width is not specified, then the width requested
- internally by the window will be used initially; the
- width may later be adjusted by the movement of sashes
- in the panedwindow. Size may be any value accepted by
- +++ PanedWindow-panes(self):
- Returns an ordered list of the child panes.
- +++ PanedWindow-proxy(self, *args):
- +++ PanedWindow-proxy_coord(self):
- Return the x and y pair of the most recent proxy location
- +++ PanedWindow-proxy_forget(self):
- Remove the proxy from the display.
- +++ PanedWindow-proxy_place(self, x, y):
- Place the proxy at the given x and y coordinates.
- +++ PanedWindow-remove(self, child):
- Remove the pane containing child from the panedwindow
- All geometry management options for child will be forgotten.
- +++ PanedWindow-sash(self, *args):
- +++ PanedWindow-sash_coord(self, index):
- Return the current x and y pair for the sash given by index.
- Index must be an integer between 0 and 1 less than the
- number of panes in the panedwindow. The coordinates given are
- those of the top left corner of the region containing the sash.
- pathName sash dragto index x y This command computes the
- difference between the given coordinates and the coordinates
- given to the last sash coord command for the given sash. It then
- moves that sash the computed difference. The return value is the
- empty string.
- +++ PanedWindow-sash_mark(self, index):
- Records x and y for the sash given by index;
- Used in conjunction with later dragto commands to move the sash.
- +++ PanedWindow-sash_place(self, index, x, y):
- Place the sash given by index at the given coordinatesPanedWindow-destroy(self):PanedWindow-__contains__(self, key)
- +++ PanedWindow-__getitem__ = cget(self, key):
- +++ PanedWindow-__setitem__(self, key, value)
- +++ PanedWindow-__str__(self):
- +++ PanedWindow-after(self, ms, func=None, *args):
- +++ PanedWindow-after_cancel(self, id):
- +++ PanedWindow-after_idle(self, func, *args):
- +++ PanedWindow-bbox = grid_bbox(self, column=None):
- +++ PanedWindow-bell(self, display of=0):
- +++ PanedWindow-bind(self, sequence=None):PanedWindow-bind_all(self, sequence=None):
- +++ PanedWindow-bind_class(self, className, sequence=None):
- +++ PanedWindow-bindtags(self, tagList=None):
- +++ PanedWindow-cget(self, key):
- +++ PanedWindow-clipboard_append(self, string, **kw):
- +++ PanedWindow-clipboard_clear(self, **kw):
- +++ PanedWindow-clipboard_get(self, **kw):PanedWindow-colormodel(self, value=None):
- +++ PanedWindow-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
- +++ PanedWindow-config = configure(self, cnf=None, **kw):
- +++ PanedWindow-configure(self, cnf=None, **kw):
- +++ PanedWindow-deletecommand(self, name):
- +++ PanedWindow-event_add(self, virtual, *sequences):
- +++ PanedWindow-event_delete(self, virtual, *sequences):
- +++ PanedWindow-event_generate(self, sequence, **kw):
- +++ PanedWindow-event_info(self, virtual=None):
- +++ PanedWindow-focus = focus_set(self):
- +++ PanedWindow-focus_display of(self):
- +++ PanedWindow-focus_force(self):
- +++ PanedWindow-focus_get(self):
- +++ PanedWindow-focus_lastfor(self):
- +++ PanedWindow-focus_set(self):
- +++ PanedWindow-getboolean(self, s):
- +++ PanedWindow-getvar(self, name='PY_VAR'):
- +++ PanedWindow-grab_current(self):
- +++ PanedWindow-grab_release(self):
- +++ PanedWindow-grab_set(self):
- +++ PanedWindow-grab_set_global(self):
- +++ PanedWindow-grab_status(self):
- +++ PanedWindow-grid_bbox(self, column=None):
- +++ PanedWindow-grid_columnconfigure(self, index, cnf={}, **kw):
- +++ PanedWindow-grid_location(self, x, y):
- +++ PanedWindow-grid_propagate(self, flag=['_noarg_']):
- +++ PanedWindow-grid_rowconfigure(self, index, cnf={}, **kw):
- +++ PanedWindow-grid_size(self):
- +++ PanedWindow-grid_slaves(self, row=None):
- +++ PanedWindow-image_names(self):
- +++ PanedWindow-image_types(self):
- +++ PanedWindow-keys(self):
- +++ PanedWindow-lift = tkraise(self, aboveThis=None):
- +++ PanedWindow-lower(self, belowThis=None):
- +++ PanedWindow-mainloop(self, n=0):
- +++ PanedWindow-nametowidget(self, name):
- +++ PanedWindow-option_add(self, pattern, value, priority=None):
- +++ PanedWindow-option_clear(self):
- +++ PanedWindow-option_get(self, name, className):
- +++ PanedWindow-option_readfile(self, fileName, priority=None):
- +++ PanedWindow-pack_propagate(self, flag=['_noarg_']):
- +++ PanedWindow-pack_slaves(self):
- +++ PanedWindow-place_slaves(self):
- +++ PanedWindow-propagate = pack_propagate(self, flag=['_noarg_']):
- +++ PanedWindow-quit(self):
- +++ PanedWindow-register = _register(self, func, subst=1):
- +++ PanedWindow-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
- +++ PanedWindow-selection_clear(self, **kw):
- +++ PanedWindow-selection_get(self, **kw):
- +++ PanedWindow-selection_handle(self, command, **kw):
- +++ PanedWindow-selection_own(self, **kw):
- +++ PanedWindow-selection_own_get(self, **kw):
- +++ PanedWindow-send(self, interp, cmd, *args):
- +++ PanedWindow-setvar(self, name='1'):
- +++ PanedWindow-size = grid_size(self):
- +++ PanedWindow-slaves = pack_slaves(self):
- +++ PanedWindow-tk_bisque(self):
- +++ PanedWindow-tk_focusFollowsMouse(self):
- +++ PanedWindow-tk_focusNext(self):
- +++ PanedWindow-tk_focusPrev(self):
- +++ PanedWindow-tk_menuBar(self, *args):
- +++ PanedWindow-tk_setPalette(self, *args, **kw):
- +++ PanedWindow-tk_strictMotif(self, boolean=None):
- +++ PanedWindow-tkraise(self, aboveThis=None):
- +++ PanedWindow-unbind(self, sequence, funcid=None):
- +++ PanedWindow-unbind_all(self, sequence):
- +++ PanedWindow-unbind_class(self, className, sequence):
- +++ PanedWindow-update(self):
- +++ PanedWindow-update_idletasks(self):
- +++ PanedWindow-wait_variable(self, name='PY_VAR'):
- +++ PanedWindow-wait_visibility(self, window=None):
- +++ PanedWindow-wait_window(self, window=None):
- +++ PanedWindow-waitvar = wait_variable(self, name='PY_VAR'):
- +++ PanedWindow-winfo_atom(self, name, display of=0):
- +++ PanedWindow-winfo_atomname(self, id, display of=0):
- +++ PanedWindow-winfo_cells(self):
- +++ PanedWindow-winfo_children(self):
- +++ PanedWindow-winfo_class(self):
- +++ PanedWindow-winfo_colormapfull(self):
- +++ PanedWindow-winfo_containing(self, rootX, rootY, display of=0):
- +++ PanedWindow-winfo_depth(self):
- +++ PanedWindow-winfo_exists(self):
- +++ PanedWindow-winfo_fpixels(self, number):
- +++ PanedWindow-winfo_geometry(self):
- +++ PanedWindow-winfo_height(self):
- +++ PanedWindow-winfo_id(self):
- +++ PanedWindow-winfo_interps(self, display of=0):
- +++ PanedWindow-winfo_ismapped(self):
- +++ PanedWindow-winfo_manager(self):
- +++ PanedWindow-winfo_name(self):
- +++ PanedWindow-winfo_parent(self):
- +++ PanedWindow-winfo_pathname(self, id, display of=0):
- +++ PanedWindow-winfo_pixels(self, number):
- +++ PanedWindow-winfo_pointerx(self):
- +++ PanedWindow-winfo_pointerxy(self):
- +++ PanedWindow-winfo_pointery(self):
- +++ PanedWindow-winfo_reqheight(self):
- +++ PanedWindow-winfo_reqwidth(self):
- +++ PanedWindow-winfo_rgb(self, color):
- +++ PanedWindow-winfo_rootx(self):
- +++ PanedWindow-winfo_rooty(self):
- +++ PanedWindow-winfo_screen(self):
- +++ PanedWindow-winfo_screencells(self):
- +++ PanedWindow-winfo_screendepth(self):
- +++ PanedWindow-winfo_screenheight(self):
- +++ PanedWindow-winfo_screenmmheight(self):
- +++ PanedWindow-winfo_screenmmwidth(self):
- +++ PanedWindow-winfo_screenvisual(self):
- +++ PanedWindow-winfo_screenwidth(self):
- +++ PanedWindow-winfo_server(self):
- +++ PanedWindow-winfo_toplevel(self):
- +++ PanedWindow-winfo_viewable(self):
- +++ PanedWindow-winfo_visual(self):
- +++ PanedWindow-winfo_visualid(self):
- +++ PanedWindow-winfo_visualsavailable(self, includeids=0):
- +++ PanedWindow-winfo_vrootheight(self):
- +++ PanedWindow-winfo_vrootwidth(self):
- +++ PanedWindow-winfo_vrootx(self):
- +++ PanedWindow-winfo_vrooty(self):
- +++ PanedWindow-winfo_width(self):
- +++ PanedWindow-winfo_x(self):
- +++ PanedWindow-winfo_y(self):
- +++ PanedWindow-info = pack_info(self):
- +++ PanedWindow-pack = pack_configure(self, cnf={}, **kw):
- +++ PanedWindow-pack_configure(self, cnf={}, **kw):
- +++ PanedWindow-pack_forget(self):
- +++ PanedWindow-pack_info(self):PanedWindow-place = place_configure(self, cnf={}, **kw):
- +++ PanedWindow-place_configure(self, cnf={}, **kw):
- +++ PanedWindow-place_forget(self):
- +++ PanedWindow-place_info(self):PanedWindow-grid = grid_configure(self, cnf={}, **kw):
- +++ PanedWindow-grid_configure(self, cnf={}, **kw):
- +++ PanedWindow-grid_forget(self):
- +++ PanedWindow-grid_info(self):
- +++ PanedWindow-grid_remove(self):
- +++ PanedWindow-location = grid_location(self, x, y):
- Widget which can display colored images in GIF, PPM/PGM format.
- +++ PhotoImage-__getitem__(self, key):
- # XXX config
- +++ PhotoImage-__init__(self, name=None, **kw):
- Create an image with NAME.
- Valid resource names: data, format, file, gamma, height, palette,
- width.
- +++ PhotoImage-blank(self):
- Display a transparent image.
- +++ PhotoImage-cget(self, option):
- Return the value of OPTION.
- +++ PhotoImage-copy(self):
- Return a new PhotoImage with the same image as this widget.
- +++ PhotoImage-get(self, x, y):
- Return the color (red, green, blue) of the pixel at X,Y.
- +++ PhotoImage-put(self, data, to=None):
- Put row formatted colors to image starting from
- position TO, e.g. image.put("{red green} {blue yellow}", to=(4,6))
- +++ PhotoImage-subsample(self, x, y=''):
- Return a new PhotoImage based on the same image as this widget
- but use only every Xth or Yth pixel.
- +++ PhotoImage-write(self, filename, format=None):
- Write image to file FILENAME in FORMAT starting from
- position FROM_COORDS.
- +++ PhotoImage-zoom(self, x, y=''):
- Return a new PhotoImage with the same image as this widget
- but zoom it with X and Y.Methods inherited from Image:
- +++ PhotoImage-__del__(self)
- +++ PhotoImage-__setitem__(self, key, value)
- +++ PhotoImage-__str__(self)
- +++ PhotoImage-config = configure(self, **kw):
- +++ PhotoImage-configure(self, **kw):
- +++ PhotoImage-height(self):
- +++ PhotoImage-type(self):
- +++ PhotoImage-width(self):
- *** class Place
- Geometry manager Place.
- Base class to use the methods place_* in every widget.
- +++ Place-config = place_configure(self, cnf={}, **kw)
- +++ Place-configure = place_configure(self, cnf={}, **kw)
- +++ Place-forget = place_forget(self)
- +++ Place-info = place_info(self)
- +++ Place-place = place_configure(self, cnf={}, **kw)
- +++ Place-place_configure(self, cnf={}, **kw):
- +++ Place-place_forget(self):
- +++ Place-place_info(self):
- +++ Place-place_slaves(self)Misc:
- +++ Place-slaves = place_slaves(self)Misc:
- Radiobutton widget which shows only one of several buttons in on-state.
- Radiobutton
- +++ Radiobutton-__init__(self, master={}, **kw):
- Construct a radiobutton widget with the parent MASTER.
- indicatoron, justify, padx, pady, relief, selectcolor, selectimage,
- state, takefocus, text, textvariable, underline, value, variable,
- width, wraplength.
- +++ Radiobutton-deselect(self):
- +++ Radiobutton-flash(self):
- +++ Radiobutton-invoke(self):
- +++ Radiobutton-select(self):Radiobutton-destroy(self):Radiobutton-__contains__(self, key)
- +++ Radiobutton-__getitem__ = cget(self, key):
- +++ Radiobutton-__setitem__(self, key, value)
- +++ Radiobutton-__str__(self):
- +++ Radiobutton-after(self, ms, func=None, *args):
- +++ Radiobutton-after_cancel(self, id):
- +++ Radiobutton-after_idle(self, func, *args):
- +++ Radiobutton-bbox = grid_bbox(self, column=None):
- +++ Radiobutton-bell(self, display of=0):
- +++ Radiobutton-bind(self, sequence=None):Radiobutton-bind_all(self, sequence=None):
- +++ Radiobutton-bind_class(self, className, sequence=None):
- +++ Radiobutton-bindtags(self, tagList=None):
- +++ Radiobutton-cget(self, key):
- +++ Radiobutton-clipboard_append(self, string, **kw):
- +++ Radiobutton-clipboard_clear(self, **kw):
- +++ Radiobutton-clipboard_get(self, **kw):Radiobutton-colormodel(self, value=None):
- +++ Radiobutton-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
- +++ Radiobutton-config = configure(self, cnf=None, **kw):
- +++ Radiobutton-configure(self, cnf=None, **kw):
- +++ Radiobutton-deletecommand(self, name):
- +++ Radiobutton-event_add(self, virtual, *sequences):
- +++ Radiobutton-event_delete(self, virtual, *sequences):
- +++ Radiobutton-event_generate(self, sequence, **kw):
- +++ Radiobutton-event_info(self, virtual=None):
- +++ Radiobutton-focus = focus_set(self):
- +++ Radiobutton-focus_display of(self):
- +++ Radiobutton-focus_force(self):
- +++ Radiobutton-focus_get(self):
- +++ Radiobutton-focus_lastfor(self):
- +++ Radiobutton-focus_set(self):
- +++ Radiobutton-getboolean(self, s):
- +++ Radiobutton-getvar(self, name='PY_VAR'):
- +++ Radiobutton-grab_current(self):
- +++ Radiobutton-grab_release(self):
- +++ Radiobutton-grab_set(self):
- +++ Radiobutton-grab_set_global(self):
- +++ Radiobutton-grab_status(self):
- +++ Radiobutton-grid_bbox(self, column=None):
- +++ Radiobutton-grid_columnconfigure(self, index, cnf={}, **kw):
- +++ Radiobutton-grid_location(self, x, y):
- +++ Radiobutton-grid_propagate(self, flag=['_noarg_']):
- +++ Radiobutton-grid_rowconfigure(self, index, cnf={}, **kw):
- +++ Radiobutton-grid_size(self):
- +++ Radiobutton-grid_slaves(self, row=None):
- +++ Radiobutton-image_names(self):
- +++ Radiobutton-image_types(self):
- +++ Radiobutton-keys(self):
- +++ Radiobutton-lift = tkraise(self, aboveThis=None):
- +++ Radiobutton-lower(self, belowThis=None):
- +++ Radiobutton-mainloop(self, n=0):
- +++ Radiobutton-nametowidget(self, name):
- +++ Radiobutton-option_add(self, pattern, value, priority=None):
- +++ Radiobutton-option_clear(self):
- +++ Radiobutton-option_get(self, name, className):
- +++ Radiobutton-option_readfile(self, fileName, priority=None):
- +++ Radiobutton-pack_propagate(self, flag=['_noarg_']):
- +++ Radiobutton-pack_slaves(self):
- +++ Radiobutton-place_slaves(self):
- +++ Radiobutton-propagate = pack_propagate(self, flag=['_noarg_']):
- +++ Radiobutton-quit(self):
- +++ Radiobutton-register = _register(self, func, subst=1):
- +++ Radiobutton-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
- +++ Radiobutton-selection_clear(self, **kw):
- +++ Radiobutton-selection_get(self, **kw):
- +++ Radiobutton-selection_handle(self, command, **kw):
- +++ Radiobutton-selection_own(self, **kw):
- +++ Radiobutton-selection_own_get(self, **kw):
- +++ Radiobutton-send(self, interp, cmd, *args):
- +++ Radiobutton-setvar(self, name='1'):
- +++ Radiobutton-size = grid_size(self):
- +++ Radiobutton-slaves = pack_slaves(self):
- +++ Radiobutton-tk_bisque(self):
- +++ Radiobutton-tk_focusFollowsMouse(self):
- +++ Radiobutton-tk_focusNext(self):
- +++ Radiobutton-tk_focusPrev(self):
- +++ Radiobutton-tk_menuBar(self, *args):
- +++ Radiobutton-tk_setPalette(self, *args, **kw):
- +++ Radiobutton-tk_strictMotif(self, boolean=None):
- +++ Radiobutton-tkraise(self, aboveThis=None):
- +++ Radiobutton-unbind(self, sequence, funcid=None):
- +++ Radiobutton-unbind_all(self, sequence):
- +++ Radiobutton-unbind_class(self, className, sequence):
- +++ Radiobutton-update(self):
- +++ Radiobutton-update_idletasks(self):
- +++ Radiobutton-wait_variable(self, name='PY_VAR'):
- +++ Radiobutton-wait_visibility(self, window=None):
- +++ Radiobutton-wait_window(self, window=None):
- +++ Radiobutton-waitvar = wait_variable(self, name='PY_VAR'):
- +++ Radiobutton-winfo_atom(self, name, display of=0):
- +++ Radiobutton-winfo_atomname(self, id, display of=0):
- +++ Radiobutton-winfo_cells(self):
- +++ Radiobutton-winfo_children(self):
- +++ Radiobutton-winfo_class(self):
- +++ Radiobutton-winfo_colormapfull(self):
- +++ Radiobutton-winfo_containing(self, rootX, rootY, display of=0):
- +++ Radiobutton-winfo_depth(self):
- +++ Radiobutton-winfo_exists(self):
- +++ Radiobutton-winfo_fpixels(self, number):
- +++ Radiobutton-winfo_geometry(self):
- +++ Radiobutton-winfo_height(self):
- +++ Radiobutton-winfo_id(self):
- +++ Radiobutton-winfo_interps(self, display of=0):
- +++ Radiobutton-winfo_ismapped(self):
- +++ Radiobutton-winfo_manager(self):
- +++ Radiobutton-winfo_name(self):
- +++ Radiobutton-winfo_parent(self):
- +++ Radiobutton-winfo_pathname(self, id, display of=0):
- +++ Radiobutton-winfo_pixels(self, number):
- +++ Radiobutton-winfo_pointerx(self):
- +++ Radiobutton-winfo_pointerxy(self):
- +++ Radiobutton-winfo_pointery(self):
- +++ Radiobutton-winfo_reqheight(self):
- +++ Radiobutton-winfo_reqwidth(self):
- +++ Radiobutton-winfo_rgb(self, color):
- +++ Radiobutton-winfo_rootx(self):
- +++ Radiobutton-winfo_rooty(self):
- +++ Radiobutton-winfo_screen(self):
- +++ Radiobutton-winfo_screencells(self):
- +++ Radiobutton-winfo_screendepth(self):
- +++ Radiobutton-winfo_screenheight(self):
- +++ Radiobutton-winfo_screenmmheight(self):
- +++ Radiobutton-winfo_screenmmwidth(self):
- +++ Radiobutton-winfo_screenvisual(self):
- +++ Radiobutton-winfo_screenwidth(self):
- +++ Radiobutton-winfo_server(self):
- +++ Radiobutton-winfo_toplevel(self):
- +++ Radiobutton-winfo_viewable(self):
- +++ Radiobutton-winfo_visual(self):
- +++ Radiobutton-winfo_visualid(self):
- +++ Radiobutton-winfo_visualsavailable(self, includeids=0):
- +++ Radiobutton-winfo_vrootheight(self):
- +++ Radiobutton-winfo_vrootwidth(self):
- +++ Radiobutton-winfo_vrootx(self):
- +++ Radiobutton-winfo_vrooty(self):
- +++ Radiobutton-winfo_width(self):
- +++ Radiobutton-winfo_x(self):
- +++ Radiobutton-winfo_y(self):
- +++ Radiobutton-forget = pack_forget(self):
- +++ Radiobutton-info = pack_info(self):
- +++ Radiobutton-pack = pack_configure(self, cnf={}, **kw):
- +++ Radiobutton-pack_configure(self, cnf={}, **kw):
- +++ Radiobutton-pack_forget(self):
- +++ Radiobutton-pack_info(self):Radiobutton-place = place_configure(self, cnf={}, **kw):
- +++ Radiobutton-place_configure(self, cnf={}, **kw):
- +++ Radiobutton-place_forget(self):
- +++ Radiobutton-place_info(self):Radiobutton-grid = grid_configure(self, cnf={}, **kw):
- +++ Radiobutton-grid_configure(self, cnf={}, **kw):
- +++ Radiobutton-grid_forget(self):
- +++ Radiobutton-grid_info(self):
- +++ Radiobutton-grid_remove(self):
- +++ Radiobutton-location = grid_location(self, x, y):
- Scale widget which can display a numerical scale.
- Scale
- +++ Scale-__init__(self, master={}, **kw):
- Construct a scale widget with the parent MASTER.
- Valid resource names: activebackground, background, bigincrement, bd,
- bg, borderwidth, command, cursor, digits, fg, font, foreground, from,
- highlightbackground, highlightcolor, highlightthickness, label,
- length, orient, relief, repeatdelay, repeatinterval, resolution,
- showvalue, sliderlength, sliderrelief, state, takefocus,
- tickinterval, to, troughcolor, variable, width.
- +++ Scale-coords(self, value=None):
- Return a tuple (X,Y) of the point along the centerline of the
- trough that corresponds to VALUE or the current value if None is
- given.
- +++ Scale-get(self):
- Get the current value as integer or float.
- +++ Scale-identify(self, x, y):
- Return where the point X,Y lies. Valid return values are "slider",
- "though1" and "though2".
- +++ Scale-set(self, value):
- Set the value to VALUE.Scale-destroy(self):Scale-__contains__(self, key)
- +++ Scale-__getitem__ = cget(self, key):
- +++ Scale-__setitem__(self, key, value)
- +++ Scale-__str__(self):
- +++ Scale-after(self, ms, func=None, *args):
- +++ Scale-after_cancel(self, id):
- +++ Scale-after_idle(self, func, *args):
- +++ Scale-bbox = grid_bbox(self, column=None):
- +++ Scale-bell(self, display of=0):
- +++ Scale-bind(self, sequence=None):Scale-bind_all(self, sequence=None):
- +++ Scale-bind_class(self, className, sequence=None):
- +++ Scale-bindtags(self, tagList=None):
- +++ Scale-cget(self, key):
- +++ Scale-clipboard_append(self, string, **kw):
- +++ Scale-clipboard_clear(self, **kw):
- +++ Scale-clipboard_get(self, **kw):Scale-colormodel(self, value=None):
- +++ Scale-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
- +++ Scale-config = configure(self, cnf=None, **kw):
- +++ Scale-configure(self, cnf=None, **kw):
- +++ Scale-deletecommand(self, name):
- +++ Scale-event_add(self, virtual, *sequences):
- +++ Scale-event_delete(self, virtual, *sequences):
- +++ Scale-event_generate(self, sequence, **kw):
- +++ Scale-event_info(self, virtual=None):
- +++ Scale-focus = focus_set(self):
- +++ Scale-focus_display of(self):
- +++ Scale-focus_force(self):
- +++ Scale-focus_get(self):
- +++ Scale-focus_lastfor(self):
- +++ Scale-focus_set(self):
- +++ Scale-getboolean(self, s):
- +++ Scale-getvar(self, name='PY_VAR'):
- +++ Scale-grab_current(self):
- +++ Scale-grab_release(self):
- +++ Scale-grab_set(self):
- +++ Scale-grab_set_global(self):
- +++ Scale-grab_status(self):
- +++ Scale-grid_bbox(self, column=None):
- +++ Scale-grid_columnconfigure(self, index, cnf={}, **kw):
- +++ Scale-grid_location(self, x, y):
- +++ Scale-grid_propagate(self, flag=['_noarg_']):
- +++ Scale-grid_rowconfigure(self, index, cnf={}, **kw):
- +++ Scale-grid_size(self):
- +++ Scale-grid_slaves(self, row=None):
- +++ Scale-image_names(self):
- +++ Scale-image_types(self):
- +++ Scale-keys(self):
- +++ Scale-lift = tkraise(self, aboveThis=None):
- +++ Scale-lower(self, belowThis=None):
- +++ Scale-mainloop(self, n=0):
- +++ Scale-nametowidget(self, name):
- +++ Scale-option_add(self, pattern, value, priority=None):
- +++ Scale-option_clear(self):
- +++ Scale-option_get(self, name, className):
- +++ Scale-option_readfile(self, fileName, priority=None):
- +++ Scale-pack_propagate(self, flag=['_noarg_']):
- +++ Scale-pack_slaves(self):
- +++ Scale-place_slaves(self):
- +++ Scale-propagate = pack_propagate(self, flag=['_noarg_']):
- +++ Scale-quit(self):
- +++ Scale-register = _register(self, func, subst=1):
- +++ Scale-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
- +++ Scale-selection_clear(self, **kw):
- +++ Scale-selection_get(self, **kw):
- +++ Scale-selection_handle(self, command, **kw):
- +++ Scale-selection_own(self, **kw):
- +++ Scale-selection_own_get(self, **kw):
- +++ Scale-send(self, interp, cmd, *args):
- +++ Scale-setvar(self, name='1'):
- +++ Scale-size = grid_size(self):
- +++ Scale-slaves = pack_slaves(self):
- +++ Scale-tk_bisque(self):
- +++ Scale-tk_focusFollowsMouse(self):
- +++ Scale-tk_focusNext(self):
- +++ Scale-tk_focusPrev(self):
- +++ Scale-tk_menuBar(self, *args):
- +++ Scale-tk_setPalette(self, *args, **kw):
- +++ Scale-tk_strictMotif(self, boolean=None):
- +++ Scale-tkraise(self, aboveThis=None):
- +++ Scale-unbind(self, sequence, funcid=None):
- +++ Scale-unbind_all(self, sequence):
- +++ Scale-unbind_class(self, className, sequence):
- +++ Scale-update(self):
- +++ Scale-update_idletasks(self):
- +++ Scale-wait_variable(self, name='PY_VAR'):
- +++ Scale-wait_visibility(self, window=None):
- +++ Scale-wait_window(self, window=None):
- +++ Scale-waitvar = wait_variable(self, name='PY_VAR'):
- +++ Scale-winfo_atom(self, name, display of=0):
- +++ Scale-winfo_atomname(self, id, display of=0):
- +++ Scale-winfo_cells(self):
- +++ Scale-winfo_children(self):
- +++ Scale-winfo_class(self):
- +++ Scale-winfo_colormapfull(self):
- +++ Scale-winfo_containing(self, rootX, rootY, display of=0):
- +++ Scale-winfo_depth(self):
- +++ Scale-winfo_exists(self):
- +++ Scale-winfo_fpixels(self, number):
- +++ Scale-winfo_geometry(self):
- +++ Scale-winfo_height(self):
- +++ Scale-winfo_id(self):
- +++ Scale-winfo_interps(self, display of=0):
- +++ Scale-winfo_ismapped(self):
- +++ Scale-winfo_manager(self):
- +++ Scale-winfo_name(self):
- +++ Scale-winfo_parent(self):
- +++ Scale-winfo_pathname(self, id, display of=0):
- +++ Scale-winfo_pixels(self, number):
- +++ Scale-winfo_pointerx(self):
- +++ Scale-winfo_pointerxy(self):
- +++ Scale-winfo_pointery(self):
- +++ Scale-winfo_reqheight(self):
- +++ Scale-winfo_reqwidth(self):
- +++ Scale-winfo_rgb(self, color):
- +++ Scale-winfo_rootx(self):
- +++ Scale-winfo_rooty(self):
- +++ Scale-winfo_screen(self):
- +++ Scale-winfo_screencells(self):
- +++ Scale-winfo_screendepth(self):
- +++ Scale-winfo_screenheight(self):
- +++ Scale-winfo_screenmmheight(self):
- +++ Scale-winfo_screenmmwidth(self):
- +++ Scale-winfo_screenvisual(self):
- +++ Scale-winfo_screenwidth(self):
- +++ Scale-winfo_server(self):
- +++ Scale-winfo_toplevel(self):
- +++ Scale-winfo_viewable(self):
- +++ Scale-winfo_visual(self):
- +++ Scale-winfo_visualid(self):
- +++ Scale-winfo_visualsavailable(self, includeids=0):
- +++ Scale-winfo_vrootheight(self):
- +++ Scale-winfo_vrootwidth(self):
- +++ Scale-winfo_vrootx(self):
- +++ Scale-winfo_vrooty(self):
- +++ Scale-winfo_width(self):
- +++ Scale-winfo_x(self):
- +++ Scale-winfo_y(self):
- +++ Scale-forget = pack_forget(self):
- +++ Scale-info = pack_info(self):
- +++ Scale-pack = pack_configure(self, cnf={}, **kw):
- +++ Scale-pack_configure(self, cnf={}, **kw):
- +++ Scale-pack_forget(self):
- +++ Scale-pack_info(self):Scale-place = place_configure(self, cnf={}, **kw):
- +++ Scale-place_configure(self, cnf={}, **kw):
- +++ Scale-place_forget(self):
- +++ Scale-place_info(self):Scale-grid = grid_configure(self, cnf={}, **kw):
- +++ Scale-grid_configure(self, cnf={}, **kw):
- +++ Scale-grid_forget(self):
- +++ Scale-grid_info(self):
- +++ Scale-grid_remove(self):
- +++ Scale-location = grid_location(self, x, y):
- Scrollbar widget which displays a slider at a certain position.
- Scrollbar
- +++ Scrollbar-__init__(self, master={}, **kw):
- Construct a scrollbar widget with the parent MASTER.
- Valid resource names: activebackground, activerelief,
- background, bd, bg, borderwidth, command, cursor,
- elementborderwidth, highlightbackground,
- highlightcolor, highlightthickness, jump, orient,
- relief, repeatdelay, repeatinterval, takefocus,
- troughcolor, width.
- +++ Scrollbar-activate(self, index):
- Display the element at INDEX with activebackground and activerelief.
- INDEX can be "arrow1","slider" or "arrow2".
- +++ Scrollbar-delta(self, deltax, deltay):
- Return the fractional change of the scrollbar setting if it
- would be moved by DELTAX or DELTAY pixels.
- +++ Scrollbar-fraction(self, x, y):
- Return the fractional value which corresponds to a slider
- position of X,Y.
- +++ Scrollbar-get(self):
- Return the current fractional values (upper and lower end)
- of the slider position.
- +++ Scrollbar-identify(self, x, y):
- Return the element under position X,Y as one of
- "arrow1","slider","arrow2" or "".
- +++ Scrollbar-set(self, *args):
- Set the fractional values of the slider position (upper and
- lower ends as value between 0 and 1).Scrollbar-destroy(self):Scrollbar-__contains__(self, key)
- +++ Scrollbar-__getitem__ = cget(self, key):
- +++ Scrollbar-__setitem__(self, key, value)
- +++ Scrollbar-__str__(self):
- +++ Scrollbar-after(self, ms, func=None, *args):
- +++ Scrollbar-after_cancel(self, id):
- +++ Scrollbar-after_idle(self, func, *args):
- +++ Scrollbar-bbox = grid_bbox(self, column=None):
- +++ Scrollbar-bell(self, display of=0):
- +++ Scrollbar-bind(self, sequence=None):Scrollbar-bind_all(self, sequence=None):
- +++ Scrollbar-bind_class(self, className, sequence=None):
- +++ Scrollbar-bindtags(self, tagList=None):
- +++ Scrollbar-cget(self, key):
- +++ Scrollbar-clipboard_append(self, string, **kw):
- +++ Scrollbar-clipboard_clear(self, **kw):
- +++ Scrollbar-clipboard_get(self, **kw):Scrollbar-colormodel(self, value=None):
- +++ Scrollbar-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
- +++ Scrollbar-config = configure(self, cnf=None, **kw):
- +++ Scrollbar-configure(self, cnf=None, **kw):
- +++ Scrollbar-deletecommand(self, name):
- +++ Scrollbar-event_add(self, virtual, *sequences):
- +++ Scrollbar-event_delete(self, virtual, *sequences):
- +++ Scrollbar-event_generate(self, sequence, **kw):
- +++ Scrollbar-event_info(self, virtual=None):
- +++ Scrollbar-focus = focus_set(self):
- +++ Scrollbar-focus_display of(self):
- +++ Scrollbar-focus_force(self):
- +++ Scrollbar-focus_get(self):
- +++ Scrollbar-focus_lastfor(self):
- +++ Scrollbar-focus_set(self):
- +++ Scrollbar-getboolean(self, s):
- +++ Scrollbar-getvar(self, name='PY_VAR'):
- +++ Scrollbar-grab_current(self):
- +++ Scrollbar-grab_release(self):
- +++ Scrollbar-grab_set(self):
- +++ Scrollbar-grab_set_global(self):
- +++ Scrollbar-grab_status(self):
- +++ Scrollbar-grid_bbox(self, column=None):
- +++ Scrollbar-grid_columnconfigure(self, index, cnf={}, **kw):
- +++ Scrollbar-grid_location(self, x, y):
- +++ Scrollbar-grid_propagate(self, flag=['_noarg_']):
- +++ Scrollbar-grid_rowconfigure(self, index, cnf={}, **kw):
- +++ Scrollbar-grid_size(self):
- +++ Scrollbar-grid_slaves(self, row=None):
- +++ Scrollbar-image_names(self):
- +++ Scrollbar-image_types(self):
- +++ Scrollbar-keys(self):
- +++ Scrollbar-lift = tkraise(self, aboveThis=None):
- +++ Scrollbar-lower(self, belowThis=None):
- +++ Scrollbar-mainloop(self, n=0):
- +++ Scrollbar-nametowidget(self, name):
- +++ Scrollbar-option_add(self, pattern, value, priority=None):
- +++ Scrollbar-option_clear(self):
- +++ Scrollbar-option_get(self, name, className):
- +++ Scrollbar-option_readfile(self, fileName, priority=None):
- +++ Scrollbar-pack_propagate(self, flag=['_noarg_']):
- +++ Scrollbar-pack_slaves(self):
- +++ Scrollbar-place_slaves(self):
- +++ Scrollbar-propagate = pack_propagate(self, flag=['_noarg_']):
- +++ Scrollbar-quit(self):
- +++ Scrollbar-register = _register(self, func, subst=1):
- +++ Scrollbar-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
- +++ Scrollbar-selection_clear(self, **kw):
- +++ Scrollbar-selection_get(self, **kw):
- +++ Scrollbar-selection_handle(self, command, **kw):
- +++ Scrollbar-selection_own(self, **kw):
- +++ Scrollbar-selection_own_get(self, **kw):
- +++ Scrollbar-send(self, interp, cmd, *args):
- +++ Scrollbar-setvar(self, name='1'):
- +++ Scrollbar-size = grid_size(self):
- +++ Scrollbar-slaves = pack_slaves(self):
- +++ Scrollbar-tk_bisque(self):
- +++ Scrollbar-tk_focusFollowsMouse(self):
- +++ Scrollbar-tk_focusNext(self):
- +++ Scrollbar-tk_focusPrev(self):
- +++ Scrollbar-tk_menuBar(self, *args):
- +++ Scrollbar-tk_setPalette(self, *args, **kw):
- +++ Scrollbar-tk_strictMotif(self, boolean=None):
- +++ Scrollbar-tkraise(self, aboveThis=None):
- +++ Scrollbar-unbind(self, sequence, funcid=None):
- +++ Scrollbar-unbind_all(self, sequence):
- +++ Scrollbar-unbind_class(self, className, sequence):
- +++ Scrollbar-update(self):
- +++ Scrollbar-update_idletasks(self):
- +++ Scrollbar-wait_variable(self, name='PY_VAR'):
- +++ Scrollbar-wait_visibility(self, window=None):
- +++ Scrollbar-wait_window(self, window=None):
- +++ Scrollbar-waitvar = wait_variable(self, name='PY_VAR'):
- +++ Scrollbar-winfo_atom(self, name, display of=0):
- +++ Scrollbar-winfo_atomname(self, id, display of=0):
- +++ Scrollbar-winfo_cells(self):
- +++ Scrollbar-winfo_children(self):
- +++ Scrollbar-winfo_class(self):
- +++ Scrollbar-winfo_colormapfull(self):
- +++ Scrollbar-winfo_containing(self, rootX, rootY, display of=0):
- +++ Scrollbar-winfo_depth(self):
- +++ Scrollbar-winfo_exists(self):
- +++ Scrollbar-winfo_fpixels(self, number):
- +++ Scrollbar-winfo_geometry(self):
- +++ Scrollbar-winfo_height(self):
- +++ Scrollbar-winfo_id(self):
- +++ Scrollbar-winfo_interps(self, display of=0):
- +++ Scrollbar-winfo_ismapped(self):
- +++ Scrollbar-winfo_manager(self):
- +++ Scrollbar-winfo_name(self):
- +++ Scrollbar-winfo_parent(self):
- +++ Scrollbar-winfo_pathname(self, id, display of=0):
- +++ Scrollbar-winfo_pixels(self, number):
- +++ Scrollbar-winfo_pointerx(self):
- +++ Scrollbar-winfo_pointerxy(self):
- +++ Scrollbar-winfo_pointery(self):
- +++ Scrollbar-winfo_reqheight(self):
- +++ Scrollbar-winfo_reqwidth(self):
- +++ Scrollbar-winfo_rgb(self, color):
- +++ Scrollbar-winfo_rootx(self):
- +++ Scrollbar-winfo_rooty(self):
- +++ Scrollbar-winfo_screen(self):
- +++ Scrollbar-winfo_screencells(self):
- +++ Scrollbar-winfo_screendepth(self):
- +++ Scrollbar-winfo_screenheight(self):
- +++ Scrollbar-winfo_screenmmheight(self):
- +++ Scrollbar-winfo_screenmmwidth(self):
- +++ Scrollbar-winfo_screenvisual(self):
- +++ Scrollbar-winfo_screenwidth(self):
- +++ Scrollbar-winfo_server(self):
- +++ Scrollbar-winfo_toplevel(self):
- +++ Scrollbar-winfo_viewable(self):
- +++ Scrollbar-winfo_visual(self):
- +++ Scrollbar-winfo_visualid(self):
- +++ Scrollbar-winfo_visualsavailable(self, includeids=0):
- +++ Scrollbar-winfo_vrootheight(self):
- +++ Scrollbar-winfo_vrootwidth(self):
- +++ Scrollbar-winfo_vrootx(self):
- +++ Scrollbar-winfo_vrooty(self):
- +++ Scrollbar-winfo_width(self):
- +++ Scrollbar-winfo_x(self):
- +++ Scrollbar-winfo_y(self):
- +++ Scrollbar-forget = pack_forget(self):
- +++ Scrollbar-info = pack_info(self):
- +++ Scrollbar-pack = pack_configure(self, cnf={}, **kw):
- +++ Scrollbar-pack_configure(self, cnf={}, **kw):
- +++ Scrollbar-pack_forget(self):
- +++ Scrollbar-pack_info(self):Scrollbar-place = place_configure(self, cnf={}, **kw):
- +++ Scrollbar-place_configure(self, cnf={}, **kw):
- +++ Scrollbar-place_forget(self):
- +++ Scrollbar-place_info(self):Scrollbar-grid = grid_configure(self, cnf={}, **kw):
- +++ Scrollbar-grid_configure(self, cnf={}, **kw):
- +++ Scrollbar-grid_forget(self):
- +++ Scrollbar-grid_info(self):
- +++ Scrollbar-grid_remove(self):
- +++ Scrollbar-location = grid_location(self, x, y):
- spinbox widget.
- Spinbox
- +++ Spinbox-__init__(self, master={}, **kw):
- Construct a spinbox widget with the parent MASTER.
- activebackground, background, borderwidth,
- cursor, exportselection, font, foreground,
- highlightthickness, insertbackground,
- insertborderwidth, insertofftime,
- insertontime, insertwidth, justify, relief,
- repeatdelay, repeatinterval,
- selectbackground, selectborderwidth
- selectforeground, takefocus, textvariable
- xscrollcommand.
- buttonbackground, buttoncursor,
- buttondownrelief, buttonuprelief,
- command, disabledbackground,
- disabledforeground, format, from,
- invalidcommand, increment,
- readonlybackground, state, to,
- validate, validatecommand values,
- width, wrap,
- +++ Spinbox-bbox(self, index):
- Return a tuple of X1,Y1,X2,Y2 coordinates for a
- rectangle which encloses the character given by index.
- The first two elements of the list give the x and y
- coordinates of the upper-left corner of the screen
- area covered by the character (in pixels relative
- to the widget) and the last two elements give the
- width and height of the character, in pixels. The
- bounding box may refer to a region outside the
- visible area of the window.
- +++ Spinbox-delete(self, first, last=None):
- Delete one or more elements of the spinbox.
- First is the index of the first character to delete,
- and last is the index of the character just after
- the last one to delete. If last isn't specified it
- defaults to first+1, i.e. a single character is
- deleted. This command returns an empty string.
- +++ Spinbox-get(self):
- Returns the spinbox's string
- +++ Spinbox-icursor(self, index):
- Alter the position of the insertion cursor.
- The insertion cursor will be displayed just before
- the character given by index. Returns an empty string
- +++ Spinbox-identify(self, x, y):
- Returns the name of the widget at position x, y
- Return value is one of: none, buttondown, buttonup, entry
- +++ Spinbox-index(self, index):
- Returns the numerical index corresponding to index
- +++ Spinbox-insert(self, index, s):
- Insert string s at index
- Returns an empty string.
- +++ Spinbox-invoke(self, element):
- Causes the specified element to be invoked
- The element could be buttondown or buttonup
- triggering the action associated with it.
- +++ Spinbox-scan(self, *args):
- +++ Spinbox-scan_dragto(self, x):
- Compute the difference between the given x argument
- and the x argument to the last scan mark command
- It then adjusts the view left or right by 10 times the
- difference in x-coordinates. This command is typically
- associated with mouse motion events in the widget, to
- produce the effect of dragging the spinbox at high speed
- through the window. The return value is an empty string.
- +++ Spinbox-scan_mark(self, x):
- Records x and the current view in the spinbox window;
- used in conjunction with later scan dragto commands.
- Typically this command is associated with a mouse button
- press in the widget. It returns an empty string.
- +++ Spinbox-selection(self, *args):
- +++ Spinbox-selection_adjust(self, index):
- Locate the end of the selection nearest to the character
- given by index,
- Then adjust that end of the selection to be at index
- (i.e including but not going beyond index). The other
- end of the selection is made the anchor point for future
- select to commands. If the selection isn't currently in
- the spinbox, then a new selection is created to include
- the characters between index and the most recent selection
- anchor point, inclusive. Returns an empty string.
- +++ Spinbox-selection_clear(self):
- Clear the selection
- If the selection isn't in this widget then the
- command has no effect. Returns an empty string.
- +++ Spinbox-selection_element(self, element=None):
- Sets or gets the currently selected element.
- If a spinbutton element is specified, it will be
- displayed depressed
- +++ Spinbox-destroy(self):Spinbox-__contains__(self, key)
- +++ Spinbox-__getitem__ = cget(self, key):
- +++ Spinbox-__setitem__(self, key, value)
- +++ Spinbox-__str__(self):
- +++ Spinbox-after(self, ms, func=None, *args):
- +++ Spinbox-after_cancel(self, id):
- +++ Spinbox-after_idle(self, func, *args):
- +++ Spinbox-bell(self, display of=0):
- +++ Spinbox-bind(self, sequence=None):Spinbox-bind_all(self, sequence=None):
- +++ Spinbox-bind_class(self, className, sequence=None):
- +++ Spinbox-bindtags(self, tagList=None):
- +++ Spinbox-cget(self, key):
- +++ Spinbox-clipboard_append(self, string, **kw):
- +++ Spinbox-clipboard_clear(self, **kw):
- +++ Spinbox-clipboard_get(self, **kw):Spinbox-colormodel(self, value=None):
- +++ Spinbox-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
- +++ Spinbox-config = configure(self, cnf=None, **kw):
- +++ Spinbox-configure(self, cnf=None, **kw):
- +++ Spinbox-deletecommand(self, name):
- +++ Spinbox-event_add(self, virtual, *sequences):
- +++ Spinbox-event_delete(self, virtual, *sequences):
- +++ Spinbox-event_generate(self, sequence, **kw):
- +++ Spinbox-event_info(self, virtual=None):
- +++ Spinbox-focus = focus_set(self):
- +++ Spinbox-focus_display of(self):
- +++ Spinbox-focus_force(self):
- +++ Spinbox-focus_get(self):
- +++ Spinbox-focus_lastfor(self):
- +++ Spinbox-focus_set(self):
- +++ Spinbox-getboolean(self, s):
- +++ Spinbox-getvar(self, name='PY_VAR'):
- +++ Spinbox-grab_current(self):
- +++ Spinbox-grab_release(self):
- +++ Spinbox-grab_set(self):
- +++ Spinbox-grab_set_global(self):
- +++ Spinbox-grab_status(self):
- +++ Spinbox-grid_bbox(self, column=None):
- +++ Spinbox-grid_columnconfigure(self, index, cnf={}, **kw):
- +++ Spinbox-grid_location(self, x, y):
- +++ Spinbox-grid_propagate(self, flag=['_noarg_']):
- +++ Spinbox-grid_rowconfigure(self, index, cnf={}, **kw):
- +++ Spinbox-grid_size(self):
- +++ Spinbox-grid_slaves(self, row=None):
- +++ Spinbox-image_names(self):
- +++ Spinbox-image_types(self):
- +++ Spinbox-keys(self):
- +++ Spinbox-lift = tkraise(self, aboveThis=None):
- +++ Spinbox-lower(self, belowThis=None):
- +++ Spinbox-mainloop(self, n=0):
- +++ Spinbox-nametowidget(self, name):
- +++ Spinbox-option_add(self, pattern, value, priority=None):
- +++ Spinbox-option_clear(self):
- +++ Spinbox-option_get(self, name, className):
- +++ Spinbox-option_readfile(self, fileName, priority=None):
- +++ Spinbox-pack_propagate(self, flag=['_noarg_']):
- +++ Spinbox-pack_slaves(self):
- +++ Spinbox-place_slaves(self):
- +++ Spinbox-propagate = pack_propagate(self, flag=['_noarg_']):
- +++ Spinbox-quit(self):
- +++ Spinbox-register = _register(self, func, subst=1):
- +++ Spinbox-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
- +++ Spinbox-selection_get(self, **kw):
- +++ Spinbox-selection_handle(self, command, **kw):
- +++ Spinbox-selection_own(self, **kw):
- +++ Spinbox-selection_own_get(self, **kw):
- +++ Spinbox-send(self, interp, cmd, *args):
- +++ Spinbox-setvar(self, name='1'):
- +++ Spinbox-size = grid_size(self):
- +++ Spinbox-slaves = pack_slaves(self):
- +++ Spinbox-tk_bisque(self):
- +++ Spinbox-tk_focusFollowsMouse(self):
- +++ Spinbox-tk_focusNext(self):
- +++ Spinbox-tk_focusPrev(self):
- +++ Spinbox-tk_menuBar(self, *args):
- +++ Spinbox-tk_setPalette(self, *args, **kw):
- +++ Spinbox-tk_strictMotif(self, boolean=None):
- +++ Spinbox-tkraise(self, aboveThis=None):
- +++ Spinbox-unbind(self, sequence, funcid=None):
- +++ Spinbox-unbind_all(self, sequence):
- +++ Spinbox-unbind_class(self, className, sequence):
- +++ Spinbox-update(self):
- +++ Spinbox-update_idletasks(self):
- +++ Spinbox-wait_variable(self, name='PY_VAR'):
- +++ Spinbox-wait_visibility(self, window=None):
- +++ Spinbox-wait_window(self, window=None):
- +++ Spinbox-waitvar = wait_variable(self, name='PY_VAR'):
- +++ Spinbox-winfo_atom(self, name, display of=0):
- +++ Spinbox-winfo_atomname(self, id, display of=0):
- +++ Spinbox-winfo_cells(self):
- +++ Spinbox-winfo_children(self):
- +++ Spinbox-winfo_class(self):
- +++ Spinbox-winfo_colormapfull(self):
- +++ Spinbox-winfo_containing(self, rootX, rootY, display of=0):
- +++ Spinbox-winfo_depth(self):
- +++ Spinbox-winfo_exists(self):
- +++ Spinbox-winfo_fpixels(self, number):
- +++ Spinbox-winfo_geometry(self):
- +++ Spinbox-winfo_height(self):
- +++ Spinbox-winfo_id(self):
- +++ Spinbox-winfo_interps(self, display of=0):
- +++ Spinbox-winfo_ismapped(self):
- +++ Spinbox-winfo_manager(self):
- +++ Spinbox-winfo_name(self):
- +++ Spinbox-winfo_parent(self):
- +++ Spinbox-winfo_pathname(self, id, display of=0):
- +++ Spinbox-winfo_pixels(self, number):
- +++ Spinbox-winfo_pointerx(self):
- +++ Spinbox-winfo_pointerxy(self):
- +++ Spinbox-winfo_pointery(self):
- +++ Spinbox-winfo_reqheight(self):
- +++ Spinbox-winfo_reqwidth(self):
- +++ Spinbox-winfo_rgb(self, color):
- +++ Spinbox-winfo_rootx(self):
- +++ Spinbox-winfo_rooty(self):
- +++ Spinbox-winfo_screen(self):
- +++ Spinbox-winfo_screencells(self):
- +++ Spinbox-winfo_screendepth(self):
- +++ Spinbox-winfo_screenheight(self):
- +++ Spinbox-winfo_screenmmheight(self):
- +++ Spinbox-winfo_screenmmwidth(self):
- +++ Spinbox-winfo_screenvisual(self):
- +++ Spinbox-winfo_screenwidth(self):
- +++ Spinbox-winfo_server(self):
- +++ Spinbox-winfo_toplevel(self):
- +++ Spinbox-winfo_viewable(self):
- +++ Spinbox-winfo_visual(self):
- +++ Spinbox-winfo_visualid(self):
- +++ Spinbox-winfo_visualsavailable(self, includeids=0):
- +++ Spinbox-winfo_vrootheight(self):
- +++ Spinbox-winfo_vrootwidth(self):
- +++ Spinbox-winfo_vrootx(self):
- +++ Spinbox-winfo_vrooty(self):
- +++ Spinbox-winfo_width(self):
- +++ Spinbox-winfo_x(self):
- +++ Spinbox-winfo_y(self):
- +++ Spinbox-forget = pack_forget(self):
- +++ Spinbox-info = pack_info(self):
- +++ Spinbox-pack = pack_configure(self, cnf={}, **kw):
- +++ Spinbox-pack_configure(self, cnf={}, **kw):
- +++ Spinbox-pack_forget(self):
- +++ Spinbox-pack_info(self):Spinbox-place = place_configure(self, cnf={}, **kw):
- +++ Spinbox-place_configure(self, cnf={}, **kw):
- +++ Spinbox-place_forget(self):
- +++ Spinbox-place_info(self):Spinbox-grid = grid_configure(self, cnf={}, **kw):
- +++ Spinbox-grid_configure(self, cnf={}, **kw):
- +++ Spinbox-grid_forget(self):
- +++ Spinbox-grid_info(self):
- +++ Spinbox-grid_remove(self):
- +++ Spinbox-location = grid_location(self, x, y):Spinbox-xview(self, *args):
- +++ Spinbox-xview_moveto(self, fraction):
- +++ Spinbox-xview_scroll(self, number, what):
- Value holder for strings variables.
- +++ StringVar-__init__(self, master=None):
- Construct a string variable.
- VALUE is an optional value (defaults to "")
- +++ StringVar-get(self):
- Return value of variable as string.StringVar-__del__(self):
- +++ StringVar-__eq__(self, other):
- +++ StringVar-__str__(self):
- +++ StringVar-set(self, value):
- +++ StringVar-trace = trace_variable(self, mode, callback):
- +++ StringVar-trace_variable(self, mode, callback):
- +++ StringVar-trace_vdelete(self, mode, cbname):
- +++ StringVar-trace_vinfo(self):
- Button *****
- Studbutton
- +++ Studbutton-__init__(self, master={}, **kw)Methods inherited from Button:
- +++ Studbutton-flash(self):
- +++ Studbutton-invoke(self):
- +++ Studbutton-tkButtonDown(self, *dummy)
- +++ Studbutton-tkButtonEnter(self, *dummy)
- +++ Studbutton-tkButtonInvoke(self, *dummy)
- +++ Studbutton-tkButtonLeave(self, *dummy)
- +++ Studbutton-tkButtonUp(self, *dummy)Studbutton-destroy(self):Studbutton-__contains__(self, key)
- +++ Studbutton-__getitem__ = cget(self, key):
- +++ Studbutton-__setitem__(self, key, value)
- +++ Studbutton-__str__(self):
- +++ Studbutton-after(self, ms, func=None, *args):
- +++ Studbutton-after_cancel(self, id):
- +++ Studbutton-after_idle(self, func, *args):
- +++ Studbutton-bbox = grid_bbox(self, column=None):
- +++ Studbutton-bell(self, display of=0):
- +++ Studbutton-bind(self, sequence=None):Studbutton-bind_all(self, sequence=None):
- +++ Studbutton-bind_class(self, className, sequence=None):
- +++ Studbutton-bindtags(self, tagList=None):
- +++ Studbutton-cget(self, key):
- +++ Studbutton-clipboard_append(self, string, **kw):
- +++ Studbutton-clipboard_clear(self, **kw):
- +++ Studbutton-clipboard_get(self, **kw):Studbutton-colormodel(self, value=None):
- +++ Studbutton-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
- +++ Studbutton-config = configure(self, cnf=None, **kw):
- +++ Studbutton-configure(self, cnf=None, **kw):
- +++ Studbutton-deletecommand(self, name):
- +++ Studbutton-event_add(self, virtual, *sequences):
- +++ Studbutton-event_delete(self, virtual, *sequences):
- +++ Studbutton-event_generate(self, sequence, **kw):
- +++ Studbutton-event_info(self, virtual=None):
- +++ Studbutton-focus = focus_set(self):
- +++ Studbutton-focus_display of(self):
- +++ Studbutton-focus_force(self):
- +++ Studbutton-focus_get(self):
- +++ Studbutton-focus_lastfor(self):
- +++ Studbutton-focus_set(self):
- +++ Studbutton-getboolean(self, s):
- +++ Studbutton-getvar(self, name='PY_VAR'):
- +++ Studbutton-grab_current(self):
- +++ Studbutton-grab_release(self):
- +++ Studbutton-grab_set(self):
- +++ Studbutton-grab_set_global(self):
- +++ Studbutton-grab_status(self):
- +++ Studbutton-grid_bbox(self, column=None):
- +++ Studbutton-grid_columnconfigure(self, index, cnf={}, **kw):
- +++ Studbutton-grid_location(self, x, y):
- +++ Studbutton-grid_propagate(self, flag=['_noarg_']):
- +++ Studbutton-grid_rowconfigure(self, index, cnf={}, **kw):
- +++ Studbutton-grid_size(self):
- +++ Studbutton-grid_slaves(self, row=None):
- +++ Studbutton-image_names(self):
- +++ Studbutton-image_types(self):
- +++ Studbutton-keys(self):
- +++ Studbutton-lift = tkraise(self, aboveThis=None):
- +++ Studbutton-lower(self, belowThis=None):
- +++ Studbutton-mainloop(self, n=0):
- +++ Studbutton-nametowidget(self, name):
- +++ Studbutton-option_add(self, pattern, value, priority=None):
- +++ Studbutton-option_clear(self):
- +++ Studbutton-option_get(self, name, className):
- +++ Studbutton-option_readfile(self, fileName, priority=None):
- +++ Studbutton-pack_propagate(self, flag=['_noarg_']):
- +++ Studbutton-pack_slaves(self):
- +++ Studbutton-place_slaves(self):
- +++ Studbutton-propagate = pack_propagate(self, flag=['_noarg_']):
- +++ Studbutton-quit(self):
- +++ Studbutton-register = _register(self, func, subst=1):
- +++ Studbutton-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
- +++ Studbutton-selection_clear(self, **kw):
- +++ Studbutton-selection_get(self, **kw):
- +++ Studbutton-selection_handle(self, command, **kw):
- +++ Studbutton-selection_own(self, **kw):
- +++ Studbutton-selection_own_get(self, **kw):
- +++ Studbutton-send(self, interp, cmd, *args):
- +++ Studbutton-setvar(self, name='1'):
- +++ Studbutton-size = grid_size(self):
- +++ Studbutton-slaves = pack_slaves(self):
- +++ Studbutton-tk_bisque(self):
- +++ Studbutton-tk_focusFollowsMouse(self):
- +++ Studbutton-tk_focusNext(self):
- +++ Studbutton-tk_focusPrev(self):
- +++ Studbutton-tk_menuBar(self, *args):
- +++ Studbutton-tk_setPalette(self, *args, **kw):
- +++ Studbutton-tk_strictMotif(self, boolean=None):
- +++ Studbutton-tkraise(self, aboveThis=None):
- +++ Studbutton-unbind(self, sequence, funcid=None):
- +++ Studbutton-unbind_all(self, sequence):
- +++ Studbutton-unbind_class(self, className, sequence):
- +++ Studbutton-update(self):
- +++ Studbutton-update_idletasks(self):
- +++ Studbutton-wait_variable(self, name='PY_VAR'):
- +++ Studbutton-wait_visibility(self, window=None):
- +++ Studbutton-wait_window(self, window=None):
- +++ Studbutton-waitvar = wait_variable(self, name='PY_VAR'):
- +++ Studbutton-winfo_atom(self, name, display of=0):
- +++ Studbutton-winfo_atomname(self, id, display of=0):
- +++ Studbutton-winfo_cells(self):
- +++ Studbutton-winfo_children(self):
- +++ Studbutton-winfo_class(self):
- +++ Studbutton-winfo_colormapfull(self):
- +++ Studbutton-winfo_containing(self, rootX, rootY, display of=0):
- +++ Studbutton-winfo_depth(self):
- +++ Studbutton-winfo_exists(self):
- +++ Studbutton-winfo_fpixels(self, number):
- +++ Studbutton-winfo_geometry(self):
- +++ Studbutton-winfo_height(self):
- +++ Studbutton-winfo_id(self):
- +++ Studbutton-winfo_interps(self, display of=0):
- +++ Studbutton-winfo_ismapped(self):
- +++ Studbutton-winfo_manager(self):
- +++ Studbutton-winfo_name(self):
- +++ Studbutton-winfo_parent(self):
- +++ Studbutton-winfo_pathname(self, id, display of=0):
- +++ Studbutton-winfo_pixels(self, number):
- +++ Studbutton-winfo_pointerx(self):
- +++ Studbutton-winfo_pointerxy(self):
- +++ Studbutton-winfo_pointery(self):
- +++ Studbutton-winfo_reqheight(self):
- +++ Studbutton-winfo_reqwidth(self):
- +++ Studbutton-winfo_rgb(self, color):
- +++ Studbutton-winfo_rootx(self):
- +++ Studbutton-winfo_rooty(self):
- +++ Studbutton-winfo_screen(self):
- +++ Studbutton-winfo_screencells(self):
- +++ Studbutton-winfo_screendepth(self):
- +++ Studbutton-winfo_screenheight(self):
- +++ Studbutton-winfo_screenmmheight(self):
- +++ Studbutton-winfo_screenmmwidth(self):
- +++ Studbutton-winfo_screenvisual(self):
- +++ Studbutton-winfo_screenwidth(self):
- +++ Studbutton-winfo_server(self):
- +++ Studbutton-winfo_toplevel(self):
- +++ Studbutton-winfo_viewable(self):
- +++ Studbutton-winfo_visual(self):
- +++ Studbutton-winfo_visualid(self):
- +++ Studbutton-winfo_visualsavailable(self, includeids=0):
- +++ Studbutton-winfo_vrootheight(self):
- +++ Studbutton-winfo_vrootwidth(self):
- +++ Studbutton-winfo_vrootx(self):
- +++ Studbutton-winfo_vrooty(self):
- +++ Studbutton-winfo_width(self):
- +++ Studbutton-winfo_x(self):
- +++ Studbutton-winfo_y(self):
- +++ Studbutton-forget = pack_forget(self):
- +++ Studbutton-info = pack_info(self):
- +++ Studbutton-pack = pack_configure(self, cnf={}, **kw):
- +++ Studbutton-pack_configure(self, cnf={}, **kw):
- +++ Studbutton-pack_forget(self):
- +++ Studbutton-pack_info(self):Studbutton-place = place_configure(self, cnf={}, **kw):
- +++ Studbutton-place_configure(self, cnf={}, **kw):
- +++ Studbutton-place_forget(self):
- +++ Studbutton-place_info(self):Studbutton-grid = grid_configure(self, cnf={}, **kw):
- +++ Studbutton-grid_configure(self, cnf={}, **kw):
- +++ Studbutton-grid_forget(self):
- +++ Studbutton-grid_info(self):
- +++ Studbutton-grid_remove(self):
- +++ Studbutton-location = grid_location(self, x, y):
- Text widget which can display text in various forms.
- Text
- +++ Text-__init__(self, master={}, **kw):
- Construct a text widget with the parent MASTER.
- background, borderwidth, cursor,
- exportselection, font, foreground,
- insertontime, insertwidth, padx, pady,
- relief, selectbackground,
- selectborderwidth, selectforeground,
- setgrid, takefocus,
- xscrollcommand, yscrollcommand,
- autoseparators, height, maxundo,
- spacing1, spacing2, spacing3,
- state, tabs, undo, width, wrap,
- +++ Text-bbox(self, *args):
- Return a tuple of (x,y,width,height) which gives the bounding
- box of the visible part of the character at the index in ARGS.
- +++ Text-compare(self, index1, op, index2):
- Return whether between index INDEX1 and index INDEX2 the
- relation OP is satisfied. OP is one of <, <=, ==, >=, >, or !=.
- +++ Text-debug(self, boolean=None):
- Turn on the internal consistency checks of the B-Tree inside the text
- widget according to BOOLEAN.
- +++ Text-delete(self, index1, index2=None):
- Delete the characters between INDEX1 and INDEX2 (not included).
- +++ Text-dlineinfo(self, index):
- Return tuple (x,y,width,height,baseline) giving the bounding box
- and baseline position of the visible part of the line containing
- the character at INDEX.
- +++ Text-dump(self, index1, index2=None, **kw):
- Return the contents of the widget between index1 and index2.
- The type of contents returned in filtered based on the keyword
- parameters; if 'all', 'image', 'mark', 'tag', 'text', or 'window' are
- given and true, then the corresponding items are returned. The result
- is a list of triples of the form (key, value, index). If none of the
- keywords are true then 'all' is used by default.
- If the 'command' argument is given, it is called once for each element
- of the list of triples, with the values of each triple serving as the
- arguments to the function. In this case the list is not returned.
- +++ Text-edit(self, *args):
- Internal method
- This method controls the undo mechanism and
- the modified flag. The exact behavior of the
- command depends on the option argument that
- follows the edit argument. The following forms
- of the command are currently supported:
- edit_modified, edit_redo, edit_reset, edit_separator
- and edit_undo
- +++ Text-edit_modified(self, arg=None):
- Get or Set the modified flag
- If arg is not specified, returns the modified
- flag of the widget. The insert, delete, edit undo and
- edit redo commands or the user can set or clear the
- modified flag. If boolean is specified, sets the
- modified flag of the widget to arg.
- +++ Text-edit_redo(self):
- Redo the last undone edit
- When the undo option is true, reapplies the last
- undone edits provided no other edits were done since
- then. Generates an error when the redo stack is empty.
- Does nothing when the undo option is false.
- +++ Text-edit_reset(self):
- Clears the undo and redo stacks
- +++ Text-edit_separator(self):
- Inserts a separator (boundary) on the undo stack.
- Does nothing when the undo option is false
- +++ Text-edit_undo(self):
- Undoes the last edit action
- If the undo option is true. An edit action is defined
- as all the insert and delete commands that are recorded
- on the undo stack in between two separators. Generates
- an error when the undo stack is empty. Does nothing
- when the undo option is false
- +++ Text-get(self, index1, index2=None):
- Return the text from INDEX1 to INDEX2 (not included).
- +++ Text-image_cget(self, index, option):
- Return the value of OPTION of an embedded image at INDEX.
- +++ Text-image_configure(self, index, cnf=None, **kw):
- Configure an embedded image at INDEX.
- +++ Text-image_create(self, index, cnf={}, **kw):
- Create an embedded image at INDEX.
- +++ Text-image_names(self):
- Return all names of embedded images in this widget.
- +++ Text-index(self, index):
- Return the index in the form line.char for INDEX.
- +++ Text-insert(self, index, chars, *args):
- Insert CHARS before the characters at INDEX. An additional
- tag can be given in ARGS. Additional CHARS and tags can follow in ARGS.
- +++ Text-mark_gravity(self, markName, direction=None):
- Change the gravity of a mark MARKNAME to DIRECTION (LEFT or RIGHT).
- Return the current value if None is given for DIRECTION.
- +++ Text-mark_names(self):
- Return all mark names.
- +++ Text-mark_next(self, index):
- Return the name of the next mark after INDEX.
- +++ Text-mark_previous(self, index):
- Return the name of the previous mark before INDEX.
- +++ Text-mark_set(self, markName, index):
- Set mark MARKNAME before the character at INDEX.
- +++ Text-mark_unset(self, *markNames):
- Delete all marks in MARKNAMES.
- +++ Text-scan_dragto(self, x, y):
- Adjust the view of the text to 10 times the
- +++ Text-scan_mark(self, x, y):
- +++ Text-search(self, pattern, index, stopindex=None):
- Search PATTERN beginning from INDEX until STOPINDEX.
- Return the index of the first character of a match or an
- empty string.
- +++ Text-see(self, index):
- Scroll such that the character at INDEX is visible.
- +++ Text-tag_add(self, tagName, index1, *args):
- Add tag TAGNAME to all characters between INDEX1 and index2 in ARGS.
- Additional pairs of indices may follow in ARGS.
- +++ Text-tag_bind(self, tagName, sequence, func, add=None):
- Bind to all characters with TAGNAME at event SEQUENCE a call to function FUNC.
- +++ Text-tag_cget(self, tagName, option):
- Return the value of OPTION for tag TAGNAME.
- +++ Text-tag_config = tag_configure(self, tagName, cnf=None, **kw)
- +++ Text-tag_configure(self, tagName, cnf=None, **kw):
- Configure a tag TAGNAME.
- +++ Text-tag_delete(self, *tagNames):
- Delete all tags in TAGNAMES.
- +++ Text-tag_lower(self, tagName, belowThis=None):
- Change the priority of tag TAGNAME such that it is lower
- than the priority of BELOWTHIS.
- +++ Text-tag_names(self, index=None):
- Return a list of all tag names.
- +++ Text-tag_nextrange(self, tagName, index1, index2=None):
- Return a list of start and end index for the first sequence of
- characters between INDEX1 and INDEX2 which all have tag TAGNAME.
- The text is searched forward from INDEX1.
- +++ Text-tag_prevrange(self, tagName, index1, index2=None):
- The text is searched backwards from INDEX1.
- +++ Text-tag_raise(self, tagName, aboveThis=None):
- Change the priority of tag TAGNAME such that it is higher
- than the priority of ABOVETHIS.
- +++ Text-tag_ranges(self, tagName):
- Return a list of ranges of text which have tag TAGNAME.
- +++ Text-tag_remove(self, tagName, index1, index2=None):
- Remove tag TAGNAME from all characters between INDEX1 and INDEX2.
- +++ Text-tag_unbind(self, tagName, sequence, funcid=None):
- Unbind for all characters with TAGNAME for event SEQUENCE the
- +++ Text-tk_textBackspace(self)
- +++ Text-tk_textIndexCloser(self, a, b, c)
- +++ Text-tk_textResetAnchor(self, index)
- +++ Text-tk_textSelectTo(self, index)
- +++ Text-window_cget(self, index, option):
- Return the value of OPTION of an embedded window at INDEX.
- +++ Text-window_config = window_configure(self, index, cnf=None, **kw)
- +++ Text-window_configure(self, index, cnf=None, **kw):
- Configure an embedded window at INDEX.
- +++ Text-window_create(self, index, cnf={}, **kw):
- Create a window at INDEX.
- +++ Text-window_names(self):
- Return all names of embedded windows in this widget.
- +++ Text-yview_pickplace(self, *what):
- Obsolete function, use see.Text-destroy(self):Text-__contains__(self, key)
- +++ Text-__getitem__ = cget(self, key):
- +++ Text-__setitem__(self, key, value)
- +++ Text-__str__(self):
- +++ Text-after(self, ms, func=None, *args):
- +++ Text-after_cancel(self, id):
- +++ Text-after_idle(self, func, *args):
- +++ Text-bell(self, display of=0):
- +++ Text-bind(self, sequence=None):Text-bind_all(self, sequence=None):
- +++ Text-bind_class(self, className, sequence=None):
- +++ Text-bindtags(self, tagList=None):
- +++ Text-cget(self, key):
- +++ Text-clipboard_append(self, string, **kw):
- +++ Text-clipboard_clear(self, **kw):
- +++ Text-clipboard_get(self, **kw):Text-colormodel(self, value=None):
- +++ Text-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
- +++ Text-config = configure(self, cnf=None, **kw):
- +++ Text-configure(self, cnf=None, **kw):
- +++ Text-deletecommand(self, name):
- +++ Text-event_add(self, virtual, *sequences):
- +++ Text-event_delete(self, virtual, *sequences):
- +++ Text-event_generate(self, sequence, **kw):
- +++ Text-event_info(self, virtual=None):
- +++ Text-focus = focus_set(self):
- +++ Text-focus_display of(self):
- +++ Text-focus_force(self):
- +++ Text-focus_get(self):
- +++ Text-focus_lastfor(self):
- +++ Text-focus_set(self):
- +++ Text-getboolean(self, s):
- +++ Text-getvar(self, name='PY_VAR'):
- +++ Text-grab_current(self):
- +++ Text-grab_release(self):
- +++ Text-grab_set(self):
- +++ Text-grab_set_global(self):
- +++ Text-grab_status(self):
- +++ Text-grid_bbox(self, column=None):
- +++ Text-grid_columnconfigure(self, index, cnf={}, **kw):
- +++ Text-grid_location(self, x, y):
- +++ Text-grid_propagate(self, flag=['_noarg_']):
- +++ Text-grid_rowconfigure(self, index, cnf={}, **kw):
- +++ Text-grid_size(self):
- +++ Text-grid_slaves(self, row=None):
- +++ Text-image_types(self):
- +++ Text-keys(self):
- +++ Text-lift = tkraise(self, aboveThis=None):
- +++ Text-lower(self, belowThis=None):
- +++ Text-mainloop(self, n=0):
- +++ Text-nametowidget(self, name):
- +++ Text-option_add(self, pattern, value, priority=None):
- +++ Text-option_clear(self):
- +++ Text-option_get(self, name, className):
- +++ Text-option_readfile(self, fileName, priority=None):
- +++ Text-pack_propagate(self, flag=['_noarg_']):
- +++ Text-pack_slaves(self):
- +++ Text-place_slaves(self):
- +++ Text-propagate = pack_propagate(self, flag=['_noarg_']):
- +++ Text-quit(self):
- +++ Text-register = _register(self, func, subst=1):
- +++ Text-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
- +++ Text-selection_clear(self, **kw):
- +++ Text-selection_get(self, **kw):
- +++ Text-selection_handle(self, command, **kw):
- +++ Text-selection_own(self, **kw):
- +++ Text-selection_own_get(self, **kw):
- +++ Text-send(self, interp, cmd, *args):
- +++ Text-setvar(self, name='1'):
- +++ Text-size = grid_size(self):
- +++ Text-slaves = pack_slaves(self):
- +++ Text-tk_bisque(self):
- +++ Text-tk_focusFollowsMouse(self):
- +++ Text-tk_focusNext(self):
- +++ Text-tk_focusPrev(self):
- +++ Text-tk_menuBar(self, *args):
- +++ Text-tk_setPalette(self, *args, **kw):
- +++ Text-tk_strictMotif(self, boolean=None):
- +++ Text-tkraise(self, aboveThis=None):
- +++ Text-unbind(self, sequence, funcid=None):
- +++ Text-unbind_all(self, sequence):
- +++ Text-unbind_class(self, className, sequence):
- +++ Text-update(self):
- +++ Text-update_idletasks(self):
- +++ Text-wait_variable(self, name='PY_VAR'):
- +++ Text-wait_visibility(self, window=None):
- +++ Text-wait_window(self, window=None):
- +++ Text-waitvar = wait_variable(self, name='PY_VAR'):
- +++ Text-winfo_atom(self, name, display of=0):
- +++ Text-winfo_atomname(self, id, display of=0):
- +++ Text-winfo_cells(self):
- +++ Text-winfo_children(self):
- +++ Text-winfo_class(self):
- +++ Text-winfo_colormapfull(self):
- +++ Text-winfo_containing(self, rootX, rootY, display of=0):
- +++ Text-winfo_depth(self):
- +++ Text-winfo_exists(self):
- +++ Text-winfo_fpixels(self, number):
- +++ Text-winfo_geometry(self):
- +++ Text-winfo_height(self):
- +++ Text-winfo_id(self):
- +++ Text-winfo_interps(self, display of=0):
- +++ Text-winfo_ismapped(self):
- +++ Text-winfo_manager(self):
- +++ Text-winfo_name(self):
- +++ Text-winfo_parent(self):
- +++ Text-winfo_pathname(self, id, display of=0):
- +++ Text-winfo_pixels(self, number):
- +++ Text-winfo_pointerx(self):
- +++ Text-winfo_pointerxy(self):
- +++ Text-winfo_pointery(self):
- +++ Text-winfo_reqheight(self):
- +++ Text-winfo_reqwidth(self):
- +++ Text-winfo_rgb(self, color):
- +++ Text-winfo_rootx(self):
- +++ Text-winfo_rooty(self):
- +++ Text-winfo_screen(self):
- +++ Text-winfo_screencells(self):
- +++ Text-winfo_screendepth(self):
- +++ Text-winfo_screenheight(self):
- +++ Text-winfo_screenmmheight(self):
- +++ Text-winfo_screenmmwidth(self):
- +++ Text-winfo_screenvisual(self):
- +++ Text-winfo_screenwidth(self):
- +++ Text-winfo_server(self):
- +++ Text-winfo_toplevel(self):
- +++ Text-winfo_viewable(self):
- +++ Text-winfo_visual(self):
- +++ Text-winfo_visualid(self):
- +++ Text-winfo_visualsavailable(self, includeids=0):
- +++ Text-winfo_vrootheight(self):
- +++ Text-winfo_vrootwidth(self):
- +++ Text-winfo_vrootx(self):
- +++ Text-winfo_vrooty(self):
- +++ Text-winfo_width(self):
- +++ Text-winfo_x(self):
- +++ Text-winfo_y(self):
- +++ Text-forget = pack_forget(self):
- +++ Text-info = pack_info(self):
- +++ Text-pack = pack_configure(self, cnf={}, **kw):
- +++ Text-pack_configure(self, cnf={}, **kw):
- +++ Text-pack_forget(self):
- +++ Text-pack_info(self):Text-place = place_configure(self, cnf={}, **kw):
- +++ Text-place_configure(self, cnf={}, **kw):
- +++ Text-place_forget(self):
- +++ Text-place_info(self):Text-grid = grid_configure(self, cnf={}, **kw):
- +++ Text-grid_configure(self, cnf={}, **kw):
- +++ Text-grid_forget(self):
- +++ Text-grid_info(self):
- +++ Text-grid_remove(self):
- +++ Text-location = grid_location(self, x, y):Text-xview(self, *args):
- +++ Text-xview_moveto(self, fraction):
- +++ Text-xview_scroll(self, number, what):Text-yview(self, *args):
- +++ Text-yview_moveto(self, fraction):
- +++ Text-yview_scroll(self, number, what):
- Wm *****
- Toplevel widget of Tk which represents mostly the main window
- of an application. It has an associated Tcl interpreter.
- Wm
- +++ Tk-__getattr__(self, attr):
- Delegate attribute access to the interpreter object
- +++ Tk-__init__(self, screenName=None):
- Return a new Toplevel widget on screen SCREENNAME. A new Tcl interpreter will
- be created. BASENAME will be used for the identification of the profile file (see
- readprofile).
- It is constructed from sys.argv[0] without extensions if None is given. CLASSNAME
- is the name of the widget class.
- +++ Tk-destroy(self):
- Destroy this and all descendants widgets. This will
- end the application of this Tcl interpreter.
- +++ Tk-loadtk(self)
- +++ Tk-readprofile(self, baseName, className):
- Internal function. It reads BASENAME.tcl and CLASSNAME.tcl into
- the Tcl Interpreter and calls execfile on BASENAME.py and CLASSNAME.py if
- such a file exists in the home directory.
- +++ Tk-report_callback_exception(self, exc, val, tb):
- Report callback exception on sys.stderr.
- Applications may want to override this internal function, and
- should when sys.stderr is None
- ...
- Methods inherited from Misc:
- +++ Tk-__contains__(self, key)
- +++ Tk-__getitem__ = cget(self, key):
- +++ Tk-__setitem__(self, key, value)
- +++ Tk-__str__(self):
- +++ Tk-after(self, ms, func=None, *args):
- +++ Tk-after_cancel(self, id):
- +++ Tk-after_idle(self, func, *args):
- +++ Tk-bbox = grid_bbox(self, column=None):
- +++ Tk-bell(self, display of=0):
- +++ Tk-bind(self, sequence=None):Tk-bind_all(self, sequence=None):
- +++ Tk-bind_class(self, className, sequence=None):
- +++ Tk-bindtags(self, tagList=None):
- +++ Tk-cget(self, key):
- +++ Tk-clipboard_append(self, string, **kw):
- +++ Tk-clipboard_clear(self, **kw):
- +++ Tk-clipboard_get(self, **kw):Tk-colormodel(self, value=None):
- +++ Tk-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
- +++ Tk-config = configure(self, cnf=None, **kw):
- +++ Tk-configure(self, cnf=None, **kw):
- +++ Tk-deletecommand(self, name):
- +++ Tk-event_add(self, virtual, *sequences):
- +++ Tk-event_delete(self, virtual, *sequences):
- +++ Tk-event_generate(self, sequence, **kw):
- +++ Tk-event_info(self, virtual=None):
- +++ Tk-focus = focus_set(self):
- +++ Tk-focus_display of(self):
- +++ Tk-focus_force(self):
- +++ Tk-focus_get(self):
- +++ Tk-focus_lastfor(self):
- +++ Tk-focus_set(self):
- +++ Tk-getboolean(self, s):
- +++ Tk-getvar(self, name='PY_VAR'):
- +++ Tk-grab_current(self):
- +++ Tk-grab_release(self):
- +++ Tk-grab_set(self):
- +++ Tk-grab_set_global(self):
- +++ Tk-grab_status(self):
- +++ Tk-grid_bbox(self, column=None):
- +++ Tk-grid_columnconfigure(self, index, cnf={}, **kw):
- +++ Tk-grid_location(self, x, y):
- +++ Tk-grid_propagate(self, flag=['_noarg_']):
- +++ Tk-grid_rowconfigure(self, index, cnf={}, **kw):
- +++ Tk-grid_size(self):
- +++ Tk-grid_slaves(self, row=None):
- +++ Tk-image_names(self):
- +++ Tk-image_types(self):
- +++ Tk-keys(self):
- +++ Tk-lift = tkraise(self, aboveThis=None):
- +++ Tk-lower(self, belowThis=None):
- +++ Tk-mainloop(self, n=0):
- +++ Tk-nametowidget(self, name):
- +++ Tk-option_add(self, pattern, value, priority=None):
- +++ Tk-option_clear(self):
- +++ Tk-option_get(self, name, className):
- +++ Tk-option_readfile(self, fileName, priority=None):
- +++ Tk-pack_propagate(self, flag=['_noarg_']):
- +++ Tk-pack_slaves(self):
- +++ Tk-place_slaves(self):
- +++ Tk-propagate = pack_propagate(self, flag=['_noarg_']):
- +++ Tk-quit(self):
- +++ Tk-register = _register(self, func, subst=1):
- +++ Tk-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
- +++ Tk-selection_clear(self, **kw):
- +++ Tk-selection_get(self, **kw):
- +++ Tk-selection_handle(self, command, **kw):
- +++ Tk-selection_own(self, **kw):
- +++ Tk-selection_own_get(self, **kw):
- +++ Tk-send(self, interp, cmd, *args):
- +++ Tk-setvar(self, name='1'):
- +++ Tk-size = grid_size(self):
- +++ Tk-slaves = pack_slaves(self):
- +++ Tk-tk_bisque(self):
- +++ Tk-tk_focusFollowsMouse(self):
- +++ Tk-tk_focusNext(self):
- +++ Tk-tk_focusPrev(self):
- +++ Tk-tk_menuBar(self, *args):
- +++ Tk-tk_setPalette(self, *args, **kw):
- +++ Tk-tk_strictMotif(self, boolean=None):
- +++ Tk-tkraise(self, aboveThis=None):
- +++ Tk-unbind(self, sequence, funcid=None):
- +++ Tk-unbind_all(self, sequence):
- +++ Tk-unbind_class(self, className, sequence):
- +++ Tk-update(self):
- +++ Tk-update_idletasks(self):
- +++ Tk-wait_variable(self, name='PY_VAR'):
- +++ Tk-wait_visibility(self, window=None):
- +++ Tk-wait_window(self, window=None):
- +++ Tk-waitvar = wait_variable(self, name='PY_VAR'):
- +++ Tk-winfo_atom(self, name, display of=0):
- +++ Tk-winfo_atomname(self, id, display of=0):
- +++ Tk-winfo_cells(self):
- +++ Tk-winfo_children(self):
- +++ Tk-winfo_class(self):
- +++ Tk-winfo_colormapfull(self):
- +++ Tk-winfo_containing(self, rootX, rootY, display of=0):
- +++ Tk-winfo_depth(self):
- +++ Tk-winfo_exists(self):
- +++ Tk-winfo_fpixels(self, number):
- +++ Tk-winfo_geometry(self):
- +++ Tk-winfo_height(self):
- +++ Tk-winfo_id(self):
- +++ Tk-winfo_interps(self, display of=0):
- +++ Tk-winfo_ismapped(self):
- +++ Tk-winfo_manager(self):
- +++ Tk-winfo_name(self):
- +++ Tk-winfo_parent(self):
- +++ Tk-winfo_pathname(self, id, display of=0):
- +++ Tk-winfo_pixels(self, number):
- +++ Tk-winfo_pointerx(self):
- +++ Tk-winfo_pointerxy(self):
- +++ Tk-winfo_pointery(self):
- +++ Tk-winfo_reqheight(self):
- +++ Tk-winfo_reqwidth(self):
- +++ Tk-winfo_rgb(self, color):
- +++ Tk-winfo_rootx(self):
- +++ Tk-winfo_rooty(self):
- +++ Tk-winfo_screen(self):
- +++ Tk-winfo_screencells(self):
- +++ Tk-winfo_screendepth(self):
- +++ Tk-winfo_screenheight(self):
- +++ Tk-winfo_screenmmheight(self):
- +++ Tk-winfo_screenmmwidth(self):
- +++ Tk-winfo_screenvisual(self):
- +++ Tk-winfo_screenwidth(self):
- +++ Tk-winfo_server(self):
- +++ Tk-winfo_toplevel(self):
- +++ Tk-winfo_viewable(self):
- +++ Tk-winfo_visual(self):
- +++ Tk-winfo_visualid(self):
- +++ Tk-winfo_visualsavailable(self, includeids=0):
- +++ Tk-winfo_vrootheight(self):
- +++ Tk-winfo_vrootwidth(self):
- +++ Tk-winfo_vrootx(self):
- +++ Tk-winfo_vrooty(self):
- +++ Tk-winfo_width(self):
- +++ Tk-winfo_x(self):
- +++ Tk-winfo_y(self):
- ...
- Methods inherited from Wm:
- +++ Tk-aspect = wm_aspect(self, minNumer=None):
- Instruct the window manager to set the aspect ratio (width/height)
- of this widget to be between MINNUMER/MINDENOM and MAXNUMER/MAXDENOM. Return a tuple
- of the actual values if no argument is given.
- +++ Tk-attributes = wm_attributes(self, *args):
- This subcommand returns or sets platform specific attributes
- The first form returns a list of the platform specific flags and
- their values. The second form returns the value for the specific
- option. The third form sets one or more of the values. The values
- are as follows:
- On Windows, -disabled gets or sets whether the window is in a
- disabled state. -toolwindow gets or sets the style of the window
- to toolwindow (as defined in the MSDN). -topmost gets or sets
- whether this is a topmost window (displays above all other
- windows).
- On Macintosh, XXXXX
- On Unix, there are currently no special attribute values.
- +++ Tk-client = wm_client(self, name=None):
- Store NAME in WM_CLIENT_MACHINE property of this widget. Return
- current value.
- +++ Tk-colormapwindows = wm_colormapwindows(self, *wlist):
- Store list of window names (WLIST) into WM_COLORMAPWINDOWS property
- of this widget. This list contains windows whose colormaps differ from their
- parents. Return current list of widgets if WLIST is empty.
- +++ Tk-command = wm_command(self, value=None):
- Store VALUE in WM_COMMAND property. It is the command
- which shall be used to invoke the application. Return current
- command if VALUE is None.
- +++ Tk-deiconify = wm_deiconify(self):
- Deiconify this widget. If it was never mapped it will not be mapped.
- On Windows it will raise this widget and give it the focus.
- +++ Tk-focusmodel = wm_focusmodel(self, model=None):
- Set focus model to MODEL. "active" means that this widget will claim
- the focus itself, "passive" means that the window manager shall give
- the focus. Return current focus model if MODEL is None.
- +++ Tk-frame = wm_frame(self):
- Return identifier for decorative frame of this widget if present.
- +++ Tk-geometry = wm_geometry(self, newGeometry=None):
- Set geometry to NEWGEOMETRY of the form =widthxheight+x+y. Return
- current value if None is given.
- +++ Tk-grid = wm_grid(self, baseWidth=None):
- Instruct the window manager that this widget shall only be
- resized on grid boundaries. WIDTHINC and HEIGHTINC are the width and
- height of a grid unit in pixels. BASEWIDTH and BASEHEIGHT are the
- number of grid units requested in Tk_GeometryRequest.
- +++ Tk-group = wm_group(self, pathName=None):
- Set the group leader widgets for related widgets to PATHNAME. Return
- the group leader of this widget if None is given.
- +++ Tk-iconbitmap = wm_iconbitmap(self, bitmap=None):
- Set bitmap for the iconified widget to BITMAP. Return
- the bitmap if None is given.
- Under Windows, the DEFAULT parameter can be used to set the icon
- for the widget and any descendents that don't have an icon set
- explicitly. DEFAULT can be the relative path to a .ico file
- (example: root.iconbitmap(default='myicon.ico') ). See Tk
- documentation for more information.
- +++ Tk-iconify = wm_iconify(self):
- Display widget as icon.
- +++ Tk-iconmask = wm_iconmask(self, bitmap=None):
- Set mask for the icon bitmap of this widget. Return the
- mask if None is given.
- +++ Tk-iconname = wm_iconname(self, newName=None):
- Set the name of the icon for this widget. Return the name if
- None is given.
- +++ Tk-iconposition = wm_iconposition(self, x=None):
- Set the position of the icon of this widget to X and Y. Return
- a tuple of the current values of X and X if None is given.
- +++ Tk-iconwindow = wm_iconwindow(self, pathName=None):
- Set widget PATHNAME to be displayed instead of icon. Return the current
- value if None is given.
- +++ Tk-maxsize = wm_maxsize(self, width=None):
- Set max WIDTH and HEIGHT for this widget. If the window is gridded
- the values are given in grid units. Return the current values if None
- is given.
- +++ Tk-minsize = wm_minsize(self, width=None):
- Set min WIDTH and HEIGHT for this widget. If the window is gridded
- +++ Tk-overrideredirect = wm_overrideredirect(self, boolean=None):
- Instruct the window manager to ignore this widget
- if BOOLEAN is given with 1. Return the current value if None
- +++ Tk-positionfrom = wm_positionfrom(self, who=None):
- Instruct the window manager that the position of this widget shall
- be defined by the user if WHO is "user", and by its own policy if WHO is
- "program".
- +++ Tk-protocol = wm_protocol(self, name=None):
- Bind function FUNC to command NAME for this widget.
- Return the function bound to NAME if None is given. NAME could be
- e.g. "WM_SAVE_YOURSELF" or "WM_DELETE_WINDOW".
- +++ Tk-resizable = wm_resizable(self, width=None):
- Instruct the window manager whether this width can be resized
- in WIDTH or HEIGHT. Both values are boolean values.
- +++ Tk-sizefrom = wm_sizefrom(self, who=None):
- Instruct the window manager that the size of this widget shall
- +++ Tk-state = wm_state(self, newstate=None):
- Query or set the state of this widget as one of normal, icon,
- iconic (see wm_iconwindow), withdrawn, or zoomed (Windows only).
- +++ Tk-title = wm_title(self, string=None):
- Set the title of this widget.
- +++ Tk-transient = wm_transient(self, master=None):
- Instruct the window manager that this widget is transient
- with regard to widget MASTER.
- +++ Tk-withdraw = wm_withdraw(self):
- Withdraw this widget from the screen such that it is unmapped
- and forgotten by the window manager. Re-draw it with wm_deiconify.
- +++ Tk-wm_aspect(self, minNumer=None):
- +++ Tk-wm_attributes(self, *args):Tk-wm_client(self, name=None):
- +++ Tk-wm_colormapwindows(self, *wlist):
- +++ Tk-wm_command(self, value=None):
- +++ Tk-wm_deiconify(self):
- +++ Tk-wm_focusmodel(self, model=None):
- +++ Tk-wm_frame(self):
- +++ Tk-wm_geometry(self, newGeometry=None):
- +++ Tk-wm_grid(self, baseWidth=None):
- +++ Tk-wm_group(self, pathName=None):
- +++ Tk-wm_iconbitmap(self, bitmap=None):
- +++ Tk-wm_iconify(self):
- +++ Tk-wm_iconmask(self, bitmap=None):
- +++ Tk-wm_iconname(self, newName=None):
- +++ Tk-wm_iconposition(self, x=None):
- +++ Tk-wm_iconwindow(self, pathName=None):
- +++ Tk-wm_maxsize(self, width=None):
- +++ Tk-wm_minsize(self, width=None):
- +++ Tk-wm_overrideredirect(self, boolean=None):
- +++ Tk-wm_positionfrom(self, who=None):
- +++ Tk-wm_protocol(self, name=None):
- +++ Tk-wm_resizable(self, width=None):
- +++ Tk-wm_sizefrom(self, who=None):
- +++ Tk-wm_state(self, newstate=None):
- +++ Tk-wm_title(self, string=None):
- +++ Tk-wm_transient(self, master=None):
- +++ Tk-wm_withdraw(self):
- Toplevel widget, e.g. for dialogs.
- Toplevel
- Wm
- +++ Toplevel-__init__(self, master={}, **kw):
- Construct a toplevel widget with the parent MASTER.
- highlightcolor, highlightthickness, menu, relief, screen, takefocus,
- use, visual, width
- +++ Toplevel-destroy(self):Toplevel-__contains__(self, key)
- +++ Toplevel-__getitem__ = cget(self, key):
- +++ Toplevel-__setitem__(self, key, value)
- +++ Toplevel-__str__(self):
- +++ Toplevel-after(self, ms, func=None, *args):
- +++ Toplevel-after_cancel(self, id):
- +++ Toplevel-after_idle(self, func, *args):
- +++ Toplevel-bbox = grid_bbox(self, column=None):
- +++ Toplevel-bell(self, display of=0):
- +++ Toplevel-bind(self, sequence=None):Toplevel-bind_all(self, sequence=None):
- +++ Toplevel-bind_class(self, className, sequence=None):
- +++ Toplevel-bindtags(self, tagList=None):
- +++ Toplevel-cget(self, key):
- +++ Toplevel-clipboard_append(self, string, **kw):
- +++ Toplevel-clipboard_clear(self, **kw):
- +++ Toplevel-clipboard_get(self, **kw):Toplevel-colormodel(self, value=None):
- +++ Toplevel-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
- +++ Toplevel-config = configure(self, cnf=None, **kw):
- +++ Toplevel-configure(self, cnf=None, **kw):
- +++ Toplevel-deletecommand(self, name):
- +++ Toplevel-event_add(self, virtual, *sequences):
- +++ Toplevel-event_delete(self, virtual, *sequences):
- +++ Toplevel-event_generate(self, sequence, **kw):
- +++ Toplevel-event_info(self, virtual=None):
- +++ Toplevel-focus = focus_set(self):
- +++ Toplevel-focus_display of(self):
- +++ Toplevel-focus_force(self):
- +++ Toplevel-focus_get(self):
- +++ Toplevel-focus_lastfor(self):
- +++ Toplevel-focus_set(self):
- +++ Toplevel-getboolean(self, s):
- +++ Toplevel-getvar(self, name='PY_VAR'):
- +++ Toplevel-grab_current(self):
- +++ Toplevel-grab_release(self):
- +++ Toplevel-grab_set(self):
- +++ Toplevel-grab_set_global(self):
- +++ Toplevel-grab_status(self):
- +++ Toplevel-grid_bbox(self, column=None):
- +++ Toplevel-grid_columnconfigure(self, index, cnf={}, **kw):
- +++ Toplevel-grid_location(self, x, y):
- +++ Toplevel-grid_propagate(self, flag=['_noarg_']):
- +++ Toplevel-grid_rowconfigure(self, index, cnf={}, **kw):
- +++ Toplevel-grid_size(self):
- +++ Toplevel-grid_slaves(self, row=None):
- +++ Toplevel-image_names(self):
- +++ Toplevel-image_types(self):
- +++ Toplevel-keys(self):
- +++ Toplevel-lift = tkraise(self, aboveThis=None):
- +++ Toplevel-lower(self, belowThis=None):
- +++ Toplevel-mainloop(self, n=0):
- +++ Toplevel-nametowidget(self, name):
- +++ Toplevel-option_add(self, pattern, value, priority=None):
- +++ Toplevel-option_clear(self):
- +++ Toplevel-option_get(self, name, className):
- +++ Toplevel-option_readfile(self, fileName, priority=None):
- +++ Toplevel-pack_propagate(self, flag=['_noarg_']):
- +++ Toplevel-pack_slaves(self):
- +++ Toplevel-place_slaves(self):
- +++ Toplevel-propagate = pack_propagate(self, flag=['_noarg_']):
- +++ Toplevel-quit(self):
- +++ Toplevel-register = _register(self, func, subst=1):
- +++ Toplevel-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
- +++ Toplevel-selection_clear(self, **kw):
- +++ Toplevel-selection_get(self, **kw):
- +++ Toplevel-selection_handle(self, command, **kw):
- +++ Toplevel-selection_own(self, **kw):
- +++ Toplevel-selection_own_get(self, **kw):
- +++ Toplevel-send(self, interp, cmd, *args):
- +++ Toplevel-setvar(self, name='1'):
- +++ Toplevel-size = grid_size(self):
- +++ Toplevel-slaves = pack_slaves(self):
- +++ Toplevel-tk_bisque(self):
- +++ Toplevel-tk_focusFollowsMouse(self):
- +++ Toplevel-tk_focusNext(self):
- +++ Toplevel-tk_focusPrev(self):
- +++ Toplevel-tk_menuBar(self, *args):
- +++ Toplevel-tk_setPalette(self, *args, **kw):
- +++ Toplevel-tk_strictMotif(self, boolean=None):
- +++ Toplevel-tkraise(self, aboveThis=None):
- +++ Toplevel-unbind(self, sequence, funcid=None):
- +++ Toplevel-unbind_all(self, sequence):
- +++ Toplevel-unbind_class(self, className, sequence):
- +++ Toplevel-update(self):
- +++ Toplevel-update_idletasks(self):
- +++ Toplevel-wait_variable(self, name='PY_VAR'):
- +++ Toplevel-wait_visibility(self, window=None):
- +++ Toplevel-wait_window(self, window=None):
- +++ Toplevel-waitvar = wait_variable(self, name='PY_VAR'):
- +++ Toplevel-winfo_atom(self, name, display of=0):
- +++ Toplevel-winfo_atomname(self, id, display of=0):
- +++ Toplevel-winfo_cells(self):
- +++ Toplevel-winfo_children(self):
- +++ Toplevel-winfo_class(self):
- +++ Toplevel-winfo_colormapfull(self):
- +++ Toplevel-winfo_containing(self, rootX, rootY, display of=0):
- +++ Toplevel-winfo_depth(self):
- +++ Toplevel-winfo_exists(self):
- +++ Toplevel-winfo_fpixels(self, number):
- +++ Toplevel-winfo_geometry(self):
- +++ Toplevel-winfo_height(self):
- +++ Toplevel-winfo_id(self):
- +++ Toplevel-winfo_interps(self, display of=0):
- +++ Toplevel-winfo_ismapped(self):
- +++ Toplevel-winfo_manager(self):
- +++ Toplevel-winfo_name(self):
- +++ Toplevel-winfo_parent(self):
- +++ Toplevel-winfo_pathname(self, id, display of=0):
- +++ Toplevel-winfo_pixels(self, number):
- +++ Toplevel-winfo_pointerx(self):
- +++ Toplevel-winfo_pointerxy(self):
- +++ Toplevel-winfo_pointery(self):
- +++ Toplevel-winfo_reqheight(self):
- +++ Toplevel-winfo_reqwidth(self):
- +++ Toplevel-winfo_rgb(self, color):
- +++ Toplevel-winfo_rootx(self):
- +++ Toplevel-winfo_rooty(self):
- +++ Toplevel-winfo_screen(self):
- +++ Toplevel-winfo_screencells(self):
- +++ Toplevel-winfo_screendepth(self):
- +++ Toplevel-winfo_screenheight(self):
- +++ Toplevel-winfo_screenmmheight(self):
- +++ Toplevel-winfo_screenmmwidth(self):
- +++ Toplevel-winfo_screenvisual(self):
- +++ Toplevel-winfo_screenwidth(self):
- +++ Toplevel-winfo_server(self):
- +++ Toplevel-winfo_toplevel(self):
- +++ Toplevel-winfo_viewable(self):
- +++ Toplevel-winfo_visual(self):
- +++ Toplevel-winfo_visualid(self):
- +++ Toplevel-winfo_visualsavailable(self, includeids=0):
- +++ Toplevel-winfo_vrootheight(self):
- +++ Toplevel-winfo_vrootwidth(self):
- +++ Toplevel-winfo_vrootx(self):
- +++ Toplevel-winfo_vrooty(self):
- +++ Toplevel-winfo_width(self):
- +++ Toplevel-winfo_x(self):
- +++ Toplevel-winfo_y(self):
- +++ Toplevel-aspect = wm_aspect(self, minNumer=None):
- +++ Toplevel-attributes = wm_attributes(self, *args):Toplevel-client = wm_client(self, name=None):
- +++ Toplevel-colormapwindows = wm_colormapwindows(self, *wlist):
- +++ Toplevel-command = wm_command(self, value=None):
- +++ Toplevel-deiconify = wm_deiconify(self):
- +++ Toplevel-focusmodel = wm_focusmodel(self, model=None):
- +++ Toplevel-frame = wm_frame(self):
- +++ Toplevel-geometry = wm_geometry(self, newGeometry=None):
- +++ Toplevel-grid = wm_grid(self, baseWidth=None):
- +++ Toplevel-group = wm_group(self, pathName=None):
- +++ Toplevel-iconbitmap = wm_iconbitmap(self, bitmap=None):
- +++ Toplevel-iconify = wm_iconify(self):
- +++ Toplevel-iconmask = wm_iconmask(self, bitmap=None):
- +++ Toplevel-iconname = wm_iconname(self, newName=None):
- +++ Toplevel-iconposition = wm_iconposition(self, x=None):
- +++ Toplevel-iconwindow = wm_iconwindow(self, pathName=None):
- +++ Toplevel-maxsize = wm_maxsize(self, width=None):
- +++ Toplevel-minsize = wm_minsize(self, width=None):
- +++ Toplevel-overrideredirect = wm_overrideredirect(self, boolean=None):
- +++ Toplevel-positionfrom = wm_positionfrom(self, who=None):
- +++ Toplevel-protocol = wm_protocol(self, name=None):
- +++ Toplevel-resizable = wm_resizable(self, width=None):
- +++ Toplevel-sizefrom = wm_sizefrom(self, who=None):
- +++ Toplevel-state = wm_state(self, newstate=None):
- +++ Toplevel-title = wm_title(self, string=None):
- +++ Toplevel-transient = wm_transient(self, master=None):
- +++ Toplevel-withdraw = wm_withdraw(self):
- +++ Toplevel-wm_aspect(self, minNumer=None):
- +++ Toplevel-wm_attributes(self, *args):Toplevel-wm_client(self, name=None):
- +++ Toplevel-wm_colormapwindows(self, *wlist):
- +++ Toplevel-wm_command(self, value=None):
- +++ Toplevel-wm_deiconify(self):
- +++ Toplevel-wm_focusmodel(self, model=None):
- +++ Toplevel-wm_frame(self):
- +++ Toplevel-wm_geometry(self, newGeometry=None):
- +++ Toplevel-wm_grid(self, baseWidth=None):
- +++ Toplevel-wm_group(self, pathName=None):
- +++ Toplevel-wm_iconbitmap(self, bitmap=None):
- +++ Toplevel-wm_iconify(self):
- +++ Toplevel-wm_iconmask(self, bitmap=None):
- +++ Toplevel-wm_iconname(self, newName=None):
- +++ Toplevel-wm_iconposition(self, x=None):
- +++ Toplevel-wm_iconwindow(self, pathName=None):
- +++ Toplevel-wm_maxsize(self, width=None):
- +++ Toplevel-wm_minsize(self, width=None):
- +++ Toplevel-wm_overrideredirect(self, boolean=None):
- +++ Toplevel-wm_positionfrom(self, who=None):
- +++ Toplevel-wm_protocol(self, name=None):
- +++ Toplevel-wm_resizable(self, width=None):
- +++ Toplevel-wm_sizefrom(self, who=None):
- +++ Toplevel-wm_state(self, newstate=None):
- +++ Toplevel-wm_title(self, string=None):
- +++ Toplevel-wm_transient(self, master=None):
- +++ Toplevel-wm_withdraw(self):
- Tributton
- +++ Tributton-__init__(self, master={}, **kw)Tributton-flash(self):
- +++ Tributton-invoke(self):
- +++ Tributton-tkButtonDown(self, *dummy)
- +++ Tributton-tkButtonEnter(self, *dummy)
- +++ Tributton-tkButtonInvoke(self, *dummy)
- +++ Tributton-tkButtonLeave(self, *dummy)
- +++ Tributton-tkButtonUp(self, *dummy)Tributton-destroy(self):Tributton-__contains__(self, key)
- +++ Tributton-__getitem__ = cget(self, key):
- +++ Tributton-__setitem__(self, key, value)
- +++ Tributton-__str__(self):
- +++ Tributton-after(self, ms, func=None, *args):
- +++ Tributton-after_cancel(self, id):
- +++ Tributton-after_idle(self, func, *args):
- +++ Tributton-bbox = grid_bbox(self, column=None):
- +++ Tributton-bell(self, display of=0):
- +++ Tributton-bind(self, sequence=None):Tributton-bind_all(self, sequence=None):
- +++ Tributton-bind_class(self, className, sequence=None):
- +++ Tributton-bindtags(self, tagList=None):
- +++ Tributton-cget(self, key):
- +++ Tributton-clipboard_append(self, string, **kw):
- +++ Tributton-clipboard_clear(self, **kw):
- +++ Tributton-clipboard_get(self, **kw):
- +++ Tributton-colormodel(self, value=None):
- +++ Tributton-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
- +++ Tributton-config = configure(self, cnf=None, **kw):
- +++ Tributton-configure(self, cnf=None, **kw):
- +++ Tributton-deletecommand(self, name):
- +++ Tributton-event_add(self, virtual, *sequences):
- +++ Tributton-event_delete(self, virtual, *sequences):
- +++ Tributton-event_generate(self, sequence, **kw):
- +++ Tributton-event_info(self, virtual=None):
- +++ Tributton-focus = focus_set(self):
- +++ Tributton-focus_display of(self):
- +++ Tributton-focus_force(self):
- +++ Tributton-focus_get(self):
- +++ Tributton-focus_lastfor(self):
- +++ Tributton-focus_set(self):
- +++ Tributton-getboolean(self, s):
- +++ Tributton-getvar(self, name='PY_VAR'):
- +++ Tributton-grab_current(self):
- +++ Tributton-grab_release(self):
- +++ Tributton-grab_set(self):
- +++ Tributton-grab_set_global(self):
- +++ Tributton-grab_status(self):
- +++ Tributton-grid_bbox(self, column=None):
- +++ Tributton-grid_columnconfigure(self, index, cnf={}, **kw):
- +++ Tributton-grid_location(self, x, y):
- +++ Tributton-grid_propagate(self, flag=['_noarg_']):
- +++ Tributton-grid_rowconfigure(self, index, cnf={}, **kw):
- +++ Tributton-grid_size(self):
- +++ Tributton-grid_slaves(self, row=None):
- +++ Tributton-image_names(self):
- +++ Tributton-image_types(self):
- +++ Tributton-keys(self):
- +++ Tributton-lift = tkraise(self, aboveThis=None):
- +++ Tributton-lower(self, belowThis=None):
- +++ Tributton-mainloop(self, n=0):
- +++ Tributton-nametowidget(self, name):
- +++ Tributton-option_add(self, pattern, value, priority=None):
- +++ Tributton-option_clear(self):
- +++ Tributton-option_get(self, name, className):
- +++ Tributton-option_readfile(self, fileName, priority=None):
- +++ Tributton-pack_propagate(self, flag=['_noarg_']):
- +++ Tributton-pack_slaves(self):
- +++ Tributton-place_slaves(self):
- +++ Tributton-propagate = pack_propagate(self, flag=['_noarg_']):
- +++ Tributton-quit(self):
- +++ Tributton-register = _register(self, func, subst=1):
- +++ Tributton-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
- +++ Tributton-selection_clear(self, **kw):
- +++ Tributton-selection_get(self, **kw):
- +++ Tributton-selection_handle(self, command, **kw):
- +++ Tributton-selection_own(self, **kw):
- +++ Tributton-selection_own_get(self, **kw):
- +++ Tributton-send(self, interp, cmd, *args):
- +++ Tributton-setvar(self, name='1'):
- +++ Tributton-size = grid_size(self):
- +++ Tributton-slaves = pack_slaves(self):
- +++ Tributton-tk_bisque(self):
- +++ Tributton-tk_focusFollowsMouse(self):
- +++ Tributton-tk_focusNext(self):
- +++ Tributton-tk_focusPrev(self):
- +++ Tributton-tk_menuBar(self, *args):
- +++ Tributton-tk_setPalette(self, *args, **kw):
- +++ Tributton-tk_strictMotif(self, boolean=None):
- +++ Tributton-tkraise(self, aboveThis=None):
- +++ Tributton-unbind(self, sequence, funcid=None):
- +++ Tributton-unbind_all(self, sequence):
- +++ Tributton-unbind_class(self, className, sequence):
- +++ Tributton-update(self):
- +++ Tributton-update_idletasks(self):
- +++ Tributton-wait_variable(self, name='PY_VAR'):
- +++ Tributton-wait_visibility(self, window=None):
- +++ Tributton-wait_window(self, window=None):
- +++ Tributton-waitvar = wait_variable(self, name='PY_VAR'):
- +++ Tributton-winfo_atom(self, name, display of=0):
- +++ Tributton-winfo_atomname(self, id, display of=0):
- +++ Tributton-winfo_cells(self):
- +++ Tributton-winfo_children(self):
- +++ Tributton-winfo_class(self):
- +++ Tributton-winfo_colormapfull(self):
- +++ Tributton-winfo_containing(self, rootX, rootY, display of=0):
- +++ Tributton-winfo_depth(self):
- +++ Tributton-winfo_exists(self):
- +++ Tributton-winfo_fpixels(self, number):
- +++ Tributton-winfo_geometry(self):
- +++ Tributton-winfo_height(self):
- +++ Tributton-winfo_id(self):
- +++ Tributton-winfo_interps(self, display of=0):
- +++ Tributton-winfo_ismapped(self):
- +++ Tributton-winfo_manager(self):
- +++ Tributton-winfo_name(self):
- +++ Tributton-winfo_parent(self):
- +++ Tributton-winfo_pathname(self, id, display of=0):
- +++ Tributton-winfo_pixels(self, number):
- +++ Tributton-winfo_pointerx(self):
- +++ Tributton-winfo_pointerxy(self):
- +++ Tributton-winfo_pointery(self):
- +++ Tributton-winfo_reqheight(self):
- +++ Tributton-winfo_reqwidth(self):
- +++ Tributton-winfo_rgb(self, color):
- +++ Tributton-winfo_rootx(self):
- +++ Tributton-winfo_rooty(self):
- +++ Tributton-winfo_screen(self):
- +++ Tributton-winfo_screencells(self):
- +++ Tributton-winfo_screendepth(self):
- +++ Tributton-winfo_screenheight(self):
- +++ Tributton-winfo_screenmmheight(self):
- +++ Tributton-winfo_screenmmwidth(self):
- +++ Tributton-winfo_screenvisual(self):
- +++ Tributton-winfo_screenwidth(self):
- +++ Tributton-winfo_server(self):
- +++ Tributton-winfo_toplevel(self):
- +++ Tributton-winfo_viewable(self):
- +++ Tributton-winfo_visual(self):
- +++ Tributton-winfo_visualid(self):
- +++ Tributton-winfo_visualsavailable(self, includeids=0):
- +++ Tributton-winfo_vrootheight(self):
- +++ Tributton-winfo_vrootwidth(self):
- +++ Tributton-winfo_vrootx(self):
- +++ Tributton-winfo_vrooty(self):
- +++ Tributton-winfo_width(self):
- +++ Tributton-winfo_x(self):
- +++ Tributton-winfo_y(self):
- +++ Tributton-forget = pack_forget(self):
- +++ Tributton-info = pack_info(self):
- +++ Tributton-pack = pack_configure(self, cnf={}, **kw):
- +++ Tributton-pack_configure(self, cnf={}, **kw):
- +++ Tributton-pack_forget(self):
- +++ Tributton-pack_info(self):
- +++ Tributton-place = place_configure(self, cnf={}, **kw):
- +++ Tributton-place_configure(self, cnf={}, **kw):
- +++ Tributton-place_forget(self):
- +++ Tributton-place_info(self):
- +++ Tributton-grid = grid_configure(self, cnf={}, **kw):
- +++ Tributton-grid_configure(self, cnf={}, **kw):
- +++ Tributton-grid_forget(self):
- +++ Tributton-grid_info(self):
- +++ Tributton-grid_remove(self):
- +++ Tributton-location = grid_location(self, x, y):
- *** class Variable
- Class to define value holders for e.g. buttons.
- Subclasses BooleanVar are specializations
- that constrain the type of the value returned from get().
- +++ Variable-__del__(self):
- +++ Variable-__eq__(self, other):
- +++ Variable-__init__(self, master=None):
- Construct a variable
- +++ Variable-__str__(self):
- +++ Variable-get(self):
- Return value of variable.
- +++ Variable-set(self, value):
- +++ Variable-trace = trace_variable(self, mode, callback)
- +++ Variable-trace_variable(self, mode, callback):
- +++ Variable-trace_vdelete(self, mode, cbname):
- +++ Variable-trace_vinfo(self):
- Grid *****
- Base class for a widget which can be positioned with the geometry managers
- Grid
- ...
- +++ Widget-__init__(self, master, widgetName, cnf=()):
- +++ Widget-destroy(self):
- +++ Widget-__contains__(self, key)
- +++ Widget-__getitem__ = cget(self, key):
- +++ Widget-__setitem__(self, key, value)
- +++ Widget-__str__(self):
- +++ Widget-after(self, ms, func=None, *args):
- +++ Widget-after_cancel(self, id):
- +++ Widget-after_idle(self, func, *args):
- +++ Widget-bbox = grid_bbox(self, column=None):
- +++ Widget-bell(self, display of=0):
- +++ Widget-bind(self, sequence=None):
- +++ Widget-bind_all(self, sequence=None):
- +++ Widget-bind_class(self, className, sequence=None):
- +++ Widget-bindtags(self, tagList=None):
- +++ Widget-cget(self, key):
- +++ Widget-clipboard_append(self, string, **kw):
- +++ Widget-clipboard_clear(self, **kw):
- +++ Widget-clipboard_get(self, **kw):
- +++ Widget-colormodel(self, value=None):
- +++ Widget-columnconfigure = grid_columnconfigure(self, index, cnf={}, **kw):
- +++ Widget-config = configure(self, cnf=None, **kw):
- +++ Widget-configure(self, cnf=None, **kw):
- +++ Widget-deletecommand(self, name):
- +++ Widget-event_add(self, virtual, *sequences):
- +++ Widget-event_delete(self, virtual, *sequences):
- +++ Widget-event_generate(self, sequence, **kw):
- +++ Widget-event_info(self, virtual=None):
- +++ Widget-focus = focus_set(self):
- +++ Widget-focus_display of(self):
- +++ Widget-focus_force(self):
- +++ Widget-focus_get(self):
- +++ Widget-focus_lastfor(self):
- +++ Widget-focus_set(self):
- +++ Widget-getboolean(self, s):
- +++ Widget-getvar(self, name='PY_VAR'):
- +++ Widget-grab_current(self):
- +++ Widget-grab_release(self):
- +++ Widget-grab_set(self):
- +++ Widget-grab_set_global(self):
- +++ Widget-grab_status(self):
- +++ Widget-grid_bbox(self, column=None):
- +++ Widget-grid_columnconfigure(self, index, cnf={}, **kw):
- +++ Widget-grid_location(self, x, y):
- +++ Widget-grid_propagate(self, flag=['_noarg_']):
- +++ Widget-grid_rowconfigure(self, index, cnf={}, **kw):
- +++ Widget-grid_size(self):
- +++ Widget-grid_slaves(self, row=None):
- +++ Widget-image_names(self):
- +++ Widget-image_types(self):
- +++ Widget-keys(self):
- +++ Widget-lift = tkraise(self, aboveThis=None):
- +++ Widget-lower(self, belowThis=None):
- +++ Widget-mainloop(self, n=0):
- +++ Widget-nametowidget(self, name):
- +++ Widget-option_add(self, pattern, value, priority=None):
- +++ Widget-option_clear(self):
- +++ Widget-option_get(self, name, className):
- +++ Widget-option_readfile(self, fileName, priority=None):
- +++ Widget-pack_propagate(self, flag=['_noarg_']):
- +++ Widget-pack_slaves(self):
- +++ Widget-place_slaves(self):
- +++ Widget-propagate = pack_propagate(self, flag=['_noarg_']):
- +++ Widget-quit(self):
- +++ Widget-register = _register(self, func, subst=1):
- +++ Widget-rowconfigure = grid_rowconfigure(self, index, cnf={}, **kw):
- +++ Widget-selection_clear(self, **kw):
- +++ Widget-selection_get(self, **kw):
- +++ Widget-selection_handle(self, command, **kw):
- +++ Widget-selection_own(self, **kw):
- +++ Widget-selection_own_get(self, **kw):
- +++ Widget-send(self, interp, cmd, *args):
- +++ Widget-setvar(self, name='1'):
- +++ Widget-size = grid_size(self):
- +++ Widget-slaves = pack_slaves(self):
- +++ Widget-tk_bisque(self):
- +++ Widget-tk_focusFollowsMouse(self):
- +++ Widget-tk_focusNext(self):
- +++ Widget-tk_focusPrev(self):
- +++ Widget-tk_menuBar(self, *args):
- +++ Widget-tk_setPalette(self, *args, **kw):
- +++ Widget-tk_strictMotif(self, boolean=None):
- +++ Widget-tkraise(self, aboveThis=None):
- +++ Widget-unbind(self, sequence, funcid=None):
- +++ Widget-unbind_all(self, sequence):
- +++ Widget-unbind_class(self, className, sequence):
- +++ Widget-update(self):
- +++ Widget-update_idletasks(self):
- +++ Widget-wait_variable(self, name='PY_VAR'):
- +++ Widget-wait_visibility(self, window=None):
- +++ Widget-wait_window(self, window=None):
- +++ Widget-waitvar = wait_variable(self, name='PY_VAR'):
- +++ Widget-winfo_atom(self, name, display of=0):
- +++ Widget-winfo_atomname(self, id, display of=0):
- +++ Widget-winfo_cells(self):
- +++ Widget-winfo_children(self):
- +++ Widget-winfo_class(self):
- +++ Widget-winfo_colormapfull(self):
- +++ Widget-winfo_containing(self, rootX, rootY, display of=0):
- +++ Widget-winfo_depth(self):
- +++ Widget-winfo_exists(self):
- +++ Widget-winfo_fpixels(self, number):
- +++ Widget-winfo_geometry(self):
- +++ Widget-winfo_height(self):
- +++ Widget-winfo_id(self):
- +++ Widget-winfo_interps(self, display of=0):
- +++ Widget-winfo_ismapped(self):
- +++ Widget-winfo_manager(self):
- +++ Widget-winfo_name(self):
- +++ Widget-winfo_parent(self):
- +++ Widget-winfo_pathname(self, id, display of=0):
- +++ Widget-winfo_pixels(self, number):
- +++ Widget-winfo_pointerx(self):
- +++ Widget-winfo_pointerxy(self):
- +++ Widget-winfo_pointery(self):
- +++ Widget-winfo_reqheight(self):
- +++ Widget-winfo_reqwidth(self):
- +++ Widget-winfo_rgb(self, color):
- +++ Widget-winfo_rootx(self):
- +++ Widget-winfo_rooty(self):
- +++ Widget-winfo_screen(self):
- +++ Widget-winfo_screencells(self):
- +++ Widget-winfo_screendepth(self):
- +++ Widget-winfo_screenheight(self):
- +++ Widget-winfo_screenmmheight(self):
- +++ Widget-winfo_screenmmwidth(self):
- +++ Widget-winfo_screenvisual(self):
- +++ Widget-winfo_screenwidth(self):
- +++ Widget-winfo_server(self):
- +++ Widget-winfo_toplevel(self):
- +++ Widget-winfo_viewable(self):
- +++ Widget-winfo_visual(self):
- +++ Widget-winfo_visualid(self):
- +++ Widget-winfo_visualsavailable(self, includeids=0):
- +++ Widget-winfo_vrootheight(self):
- +++ Widget-winfo_vrootwidth(self):
- +++ Widget-winfo_vrootx(self):
- +++ Widget-winfo_vrooty(self):
- +++ Widget-winfo_width(self):
- +++ Widget-winfo_x(self):
- +++ Widget-winfo_y(self):
- +++ Widget-forget = pack_forget(self):
- +++ Widget-info = pack_info(self):
- +++ Widget-pack = pack_configure(self, cnf={}, **kw):
- +++ Widget-pack_configure(self, cnf={}, **kw):
- +++ Widget-pack_forget(self):
- +++ Widget-pack_info(self):
- +++ Widget-place = place_configure(self, cnf={}, **kw):
- +++ Widget-place_configure(self, cnf={}, **kw):
- +++ Widget-place_forget(self):
- +++ Widget-place_info(self):
- +++ Widget-grid = grid_configure(self, cnf={}, **kw):
- +++ Widget-grid_configure(self, cnf={}, **kw):
- +++ Widget-grid_forget(self):
- +++ Widget-grid_info(self):
- +++ Widget-grid_remove(self):
- +++ Widget-location = grid_location(self, x, y):
- *** class Wm
- Provides functions for the communication with the window manager.
- +++ Wm-aspect = wm_aspect(self, minNumer=None)
- +++ Wm-attributes = wm_attributes(self, *args)
- +++ Wm-client = wm_client(self, name=None)
- +++ Wm-colormapwindows = wm_colormapwindows(self, *wlist)
- +++ Wm-command = wm_command(self, value=None)
- +++ Wm-deiconify = wm_deiconify(self)
- +++ Wm-focusmodel = wm_focusmodel(self, model=None)
- +++ Wm-frame = wm_frame(self)
- +++ Wm-geometry = wm_geometry(self, newGeometry=None)
- +++ Wm-grid = wm_grid(self, baseWidth=None)
- +++ Wm-group = wm_group(self, pathName=None)
- +++ Wm-iconbitmap = wm_iconbitmap(self, bitmap=None)
- +++ Wm-iconify = wm_iconify(self)
- +++ Wm-iconmask = wm_iconmask(self, bitmap=None)
- +++ Wm-iconname = wm_iconname(self, newName=None)
- +++ Wm-iconposition = wm_iconposition(self, x=None)
- +++ Wm-iconwindow = wm_iconwindow(self, pathName=None)
- +++ Wm-maxsize = wm_maxsize(self, width=None)
- +++ Wm-minsize = wm_minsize(self, width=None)
- +++ Wm-overrideredirect = wm_overrideredirect(self, boolean=None)
- +++ Wm-positionfrom = wm_positionfrom(self, who=None)
- +++ Wm-protocol = wm_protocol(self, name=None)
- +++ Wm-resizable = wm_resizable(self, width=None)
- +++ Wm-sizefrom = wm_sizefrom(self, who=None)
- +++ Wm-state = wm_state(self, newstate=None)
- +++ Wm-title = wm_title(self, string=None)
- +++ Wm-transient = wm_transient(self, master=None)
- +++ Wm-withdraw = wm_withdraw(self)
- +++ Wm-wm_aspect(self, minNumer=None):
- +++ Wm-wm_attributes(self, *args):
- +++ Wm-wm_client(self, name=None):
- +++ Wm-wm_colormapwindows(self, *wlist):
- +++ Wm-wm_command(self, value=None):
- +++ Wm-wm_deiconify(self):
- +++ Wm-wm_focusmodel(self, model=None):
- +++ Wm-wm_frame(self):
- +++ Wm-wm_geometry(self, newGeometry=None):
- +++ Wm-wm_grid(self, baseWidth=None):
- +++ Wm-wm_group(self, pathName=None):
- +++ Wm-wm_iconbitmap(self, bitmap=None):Wm-wm_iconify(self):
- +++ Wm-wm_iconmask(self, bitmap=None):
- +++ Wm-wm_iconname(self, newName=None):
- +++ Wm-wm_iconposition(self, x=None):
- +++ Wm-wm_iconwindow(self, pathName=None):
- +++ Wm-wm_maxsize(self, width=None):
- +++ Wm-wm_minsize(self, width=None):
- +++ Wm-wm_overrideredirect(self, boolean=None):
- +++ Wm-wm_positionfrom(self, who=None):
- +++ Wm-wm_protocol(self, name=None):
- +++ Wm-wm_resizable(self, width=None):
- +++ Wm-wm_sizefrom(self, who=None):
- +++ Wm-wm_state(self, newstate=None):
- +++ Wm-wm_title(self, string=None):
- +++ Wm-wm_transient(self, master=None):
- +++ Wm-wm_withdraw(self):
- *** class XView
- Mix-in class for querying and changing the horizontal position
- of a widget's window.
- +++ XView-xview(self, *args):
- +++ XView-xview_moveto(self, fraction):
- +++ XView-xview_scroll(self, number, what):
- *** class YView
- Mix-in class for querying and changing the vertical position
- +++ YView-yview(self, *args):
- +++ YView-yview_moveto(self, fraction):
- +++ YView-yview_scroll(self, number, what):
- *** Functions
- +++ -At(x, y=None)
- +++ -AtEnd():
- # Indices:
- # XXX I don't like these -- take them away
- +++ -AtInsert(*args)
- +++ -AtSelFirst()
- +++ -AtSelLast()
- +++ -NoDefaultRoot():
- Inhibit setting of default root window.
- Call this function to inhibit that the first instance of
- Tk is used for windows without an explicit parent window.
- +++ -Tcl(screenName=0)
- +++ -getboolean(s):
- Convert true and false to integer values 1 and 0.
- +++ -image_names()
- +++ -image_types()
- +++ -mainloop(n=0):
- Run the main loop of Tcl.
- *** Data
- --- ACTIVE = 'active'
- --- ALL = 'all'
- --- ANCHOR = 'anchor'
- --- ARC = 'arc'
- --- BASELINE = 'baseline'
- --- BEVEL = 'bevel'
- --- BOTH = 'both'
- --- BOTTOM = 'bottom'
- --- BROWSE = 'browse'
- --- BUTT = 'butt'
- --- CASCADE = 'cascade'
- --- CENTER = 'center'
- --- CHAR = 'char'
- --- CHECKBUTTON = 'checkbutton'
- --- CHORD = 'chord'
- --- COMMAND = 'command'
- --- CURRENT = 'current'
- --- DISABLED = 'disabled'
- --- DOTBOX = 'dotbox'
- --- E = 'e'
- --- END = 'end'
- --- EW = 'ew'
- --- EXCEPTION = 8
- --- EXTENDED = 'extended'
- --- FALSE = 0
- --- FIRST = 'first'
- --- FLAT = 'flat'
- --- GROOVE = 'groove'
- --- HIDDEN = 'hidden'
- --- HORIZONTAL = 'horizontal'
- --- INSERT = 'insert'
- --- INSIDE = 'inside'
- --- LAST = 'last'
- --- LEFT = 'left'
- --- MITER = 'miter'
- --- MOVETO = 'moveto'
- --- MULTIPLE = 'multiple'
- --- N = 'n'
- --- NE = 'ne'
- --- NO = 0
- --- NONE = 'none'
- --- NORMAL = 'normal'
- --- NS = 'ns'
- --- NSEW = 'nsew'
- --- NUMERIC = 'numeric'
- --- NW = 'nw'
- --- OFF = 0
- --- ON = 1
- --- OUTSIDE = 'outside'
- --- PAGES = 'pages'
- --- PIESLICE = 'pieslice'
- --- PROJECTING = 'projecting'
- --- RADIOBUTTON = 'radiobutton'
- --- RAISED = 'raised'
- --- READABLE = 2
- --- RIDGE = 'ridge'
- --- RIGHT = 'right'
- --- ROUND = 'round'
- --- S = 's'
- --- SCROLL = 'scroll'
- --- SE = 'se'
- --- SEL = 'sel'
- --- SEL_FIRST = 'sel.first'
- --- SEL_LAST = 'sel.last'
- --- SEPARATOR = 'separator'
- --- SINGLE = 'single'
- --- SOLID = 'solid'
- --- SUNKEN = 'sunken'
- --- SW = 'sw'
- --- StringTypes = (<type 'str'>, <type 'unicode'>)
- --- TOP = 'top'
- --- TRUE = 1
- --- TclVersion = 8.5
- --- TkVersion = 8.5
- --- UNDERLINE = 'underline'
- --- UNITS = 'units'
- --- VERTICAL = 'vertical'
- --- W = 'w'
- --- WORD = 'word'
- --- WRITABLE = 4
- --- X = 'x'
- --- Y = 'y'
- --- YES = 1
- --- __version__ = '$Revision: 81008 $'
- --- wantobjects = 1
- '''
Add Comment
Please, Sign In to add comment