summaryrefslogtreecommitdiffstats
path: root/Lib/lib-tk
Commit message (Collapse)AuthorAgeFilesLines
* Require _tkinter -- don't attempt to import tkinter when _tkinter doesGuido van Rossum1997-02-151-25/+10
| | | | | | | | | not exist. All 8 uses of tkinter are replaced with _tkinter. Still create a variable tkinter though, because that is used by other modules importing Tkinter (e.g. tkinter.createfilehandler()). Also added a comment to the 'import _tkinter' line saying that if this fails, Python is not configured correctly.
* Gave the Listbox selection methods their correct (longer) names.Guido van Rossum1997-02-141-2/+4
| | | | Removed select_adjust -- Tk no longer supports this.
* Put support for a cnf dictionary back in, since it is still supportedGuido van Rossum1997-02-121-1/+3
| | | | | by all true Tkinter widgets. (Not that I *like* this module -- it stinks, but until I have something better, I can't nuke it.)
* Avoid traceback in selection_own_get() when no Tk widget owns theGuido van Rossum1997-01-211-3/+4
| | | | selection; return None instead.
* (Tkinter.py): Add support for Frame(w, class_="classname") as an alternativeFred Drake1997-01-101-1/+4
| | | | | | | to Frame(w, cnf={"class": "classname"}). I think this is the only widget other than Toplevel that needs to be concerned about setting the widget's class (-class must be the first option on the Tcl widget creation command).
* Fix the following bug:Guido van Rossum1997-01-031-4/+6
| | | | | | | | | | | - When dragging the mouse in either listbox, the *first* entry clicked on is selected rather than the last (but the last one is highlighted). This is done by changing the bindtags so that our binding is executed after the default binding (which sets the 'active' index to the last item selected), and using 'active' instead of 'anchor' as the index to ask for.
* Fix bogus implementation of Group.bind().Guido van Rossum1996-12-271-2/+6
| | | | Added unbind() to CanvasItem and Group classes.
* Added config(ure) method to Image class.Guido van Rossum1996-12-271-0/+10
| | | | (Fred Drake)
* Change the default values for IntVar and DoubleVar to numbers (theyGuido van Rossum1996-12-271-2/+2
| | | | were strings, accidentally).
* Added a bunch of new winfo options; we should now be up to date withGuido van Rossum1996-12-121-2/+29
| | | | | | | Tk 4.2. The new winfo options supported are: mananger, pointerx, pointerxy, pointery, server, viewable, visualid, visualsavailable. Also fixed bugs in winfo_colormapfull() and winfo_containing().
* Added ALL='all'.Guido van Rossum1996-11-201-0/+1
|
* Turn leading minus sign into underscore for image widget name -- theGuido van Rossum1996-11-201-3/+5
| | | | hyphen confused Tk into thinking the name was an option.
* Don't require leading '-' on option name to Text.tag_cgetGuido van Rossum1996-11-111-0/+4
|
* Get rid of bogus binding of <Delete> to a function that deletes the nextGuido van Rossum1996-10-241-3/+0
| | | | character (this is already a built-in binding now).
* Added support for floating point resolution to Scale.get().Guido van Rossum1996-10-231-1/+5
|
* (Tkinter.py): Fixed bug in re-implementation of OptionMenu.Fred Drake1996-10-211-1/+1
|
* (Fred Drake:) Re-wrote the OptionMenu class to allow access to a realGuido van Rossum1996-10-211-5/+28
| | | | | Menu object via om['menu'] -- this is necessary to use a post-command with an OptionMenu. The API has not changed.
* (Tkinter.py): Improve application basename determination to make .py andFred Drake1996-10-061-1/+2
| | | | | .pyc extensions completely equivelent when locating the "profile" which should be read on startup.
* (Tkinter.py): Fixed dumb typo in Misc.tk_setPalette().Fred Drake1996-10-041-2/+2
|
* (Tkinter.py): Many revisions for Tk 4.X: Added clipboard support, updatedFred Drake1996-09-271-40/+86
| | | | | | | selection interface, handle the -displayof option intelligently in many places. Added "wm colormapwindows" and "winfo colormapfull" support. Removed "focus default" and "focus none" method: these are not in Tk 4.X.
* (Canvas.py): Added definition of CanvasItem.cget() as suggested byFred Drake1996-09-261-0/+1
| | | | Nils Fischbeck.
* Implement lower by calling lower, not lift.Guido van Rossum1996-09-111-1/+1
|
* Bug fixes in index&icursor suggested by Nils Fischbeck.Guido van Rossum1996-09-111-5/+5
|
* simpler version of the previous fixGuido van Rossum1996-09-101-4/+2
|
* compatibility changes suggested by Jack,Guido van Rossum1996-09-101-2/+4
| | | | | for tk_menuBar and tk_bindForTraversal (i.e. don't call these for Tk >= 4.1)
* Change to allow keyword args for Group,Guido van Rossum1996-09-061-5/+6
| | | | suggested by Nils Fischbeck, adapted by Fred
* Fixed Entry.select_from() to acually call the "select from" widgetGuido van Rossum1996-09-061-1/+1
| | | | command instead of the non-existant "select set". (Fred)
* Added Menu.insert*() methods [Fred]Guido van Rossum1996-09-051-0/+13
|
* Add initial values to variables to avoid crash in __del__Guido van Rossum1996-09-051-0/+6
|
* Changes for Canvas by FredGuido van Rossum1996-08-222-43/+33
|
* Added a small test program.Guido van Rossum1996-08-211-0/+19
|
* stupid typo in latest fix ('Name' should be 'name')Guido van Rossum1996-08-081-1/+1
|
* Need to import * from typesGuido van Rossum1996-08-081-2/+1
|
* Add missing close parenthesis.Guido van Rossum1996-07-301-1/+1
|
* Change to use keyword args instead of dictsGuido van Rossum1996-07-301-10/+8
|
* Two independent changes:Guido van Rossum1996-07-301-2/+3
| | | | | - accept empty string from focus_get - map coords() return value through getdouble and splitlist
* Restore the capability to pass a class (usually Pack) as an option to widgetGuido van Rossum1996-07-211-4/+7
| | | | creation; no longer support this for the config method.
* Don't use tktools, dummy! Reworded test message slightly.Guido van Rossum1996-07-211-5/+31
|
* fix canvas bind commandsGuido van Rossum1996-07-212-2/+2
|
* new simple dialog module, incompatibleGuido van Rossum1996-06-171-0/+77
|
* made it work again with changed TkinterGuido van Rossum1996-05-281-5/+19
|
* Major overhaul:Guido van Rossum1996-05-281-48/+101
| | | | | | | | | | | | | | - Support ~[user] expansion. - Remember last directory and pattern; optional 'key' argument specifies different memory locations. - Absolutify pathnames if possible. - WM close event cancels the dialog. - First arg to go() can be either a directory or a file (renamed to dir_of_file); defaults to current directory.
* don't export selectionGuido van Rossum1996-05-281-2/+2
|
* more changes copied from GrailGuido van Rossum1996-05-211-30/+49
|
* Made Place.info == Pack.infoGuido van Rossum1996-05-161-1/+10
|
* Yet another mini fix to pack/grid info.Guido van Rossum1996-05-161-2/+2
|
* Some more changes from the net... Typos, 4.0/4.1 issues, new tkButtonInvoke().Guido van Rossum1996-05-161-5/+25
|
* Resync with Grail's Tkinter.py.Guido van Rossum1996-05-161-195/+340
|
* add keyword args to CanvasItem class __init__Guido van Rossum1996-01-261-3/+3
|
* Disable pythons own eventhandling on the mac.Jack Jansen1995-11-101-0/+8
|