summaryrefslogtreecommitdiffstats
path: root/Lib/tkinter
Commit message (Collapse)AuthorAgeFilesLines
* get rid of temporary README about Tommy's effortsGuido van Rossum1996-06-171-27/+0
|
* 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
|
* Renamed module tkinter to _tkinterJack Jansen1995-10-231-9/+9
|
* add Listbox.activate()Guido van Rossum1995-10-111-0/+2
|
* added listbox selection modesGuido van Rossum1995-10-111-0/+6
|
* fix Menu.add_command etc.Guido van Rossum1995-10-091-10/+10
|
* better version sanity checks; get rid of Widget.unbind_class()Guido van Rossum1995-10-071-4/+18
|
* new after options; text.search; new image methodsGuido van Rossum1995-09-301-2/+37
|
* added getitem/setitem to Image class; changed call wrapping (again)Guido van Rossum1995-09-181-1/+7
|
* Initial revisionGuido van Rossum1995-09-071-0/+70
|
* move constants to Tkconstants; added some; overridable error reporting; fix ↵Guido van Rossum1995-09-071-74/+26
| | | | typo in propagate
* Filter button should set selection's directory, tooGuido van Rossum1995-09-011-1/+4
|
* added OptionMenu class (tk_optionMenu interface)Guido van Rossum1995-09-011-2/+10
|
* Initial revisionGuido van Rossum1995-08-291-0/+211
|
* added select_present and select_range to Entry widgetGuido van Rossum1995-08-111-0/+5
|
* added some missing constantsGuido van Rossum1995-08-041-0/+18
|
* keyword arguments; redid Photo image class; other goodiesGuido van Rossum1995-08-041-96/+201
|
* keyword parameter changesGuido van Rossum1995-08-041-2/+4
|
* Tk 4.0 and Tcl 7.4 are now standardGuido van Rossum1995-07-142-77/+156
|
* Tommy's mail explaining statusGuido van Rossum1995-07-141-0/+27
|
* fix typo in tag_nextrangeGuido van Rossum1995-03-201-1/+1
|
* add TkVersion,TclVersion; don't drop in debuggerGuido van Rossum1995-03-171-42/+20
|
* Fixed 'propagate' methodGuido van Rossum1994-12-301-4/+5
|
* added option interfaceGuido van Rossum1994-10-201-0/+8
|
* Dialog.py: d.num should be numeric, not stringGuido van Rossum1994-08-302-5/+8
| | | | Tkinter.py: on destroy(), remove self from master's dict of children
* Add Widget.unbind and {Canvas,Text}.tag_unbind.Guido van Rossum1994-08-081-2/+9
| | | | In Widget.__init__, call config only if cnf not empty.
* Use new packing and 'name' in cnf dictGuido van Rossum1994-08-031-3/+5
|
* read various startup files in Tcl and Python based upon className andGuido van Rossum1994-07-121-1/+23
| | | | baseName.
* Fix bug in At() (Steen)Guido van Rossum1994-07-121-3/+3
|
* Make Pack.newinfo() return a dictGuido van Rossum1994-07-111-1/+10
|
* Added _exit and register as Tcl command exit. Micro lay-out fix.Guido van Rossum1994-07-071-2/+6
|
* Totally changed, now it is actually derived from TextGuido van Rossum1994-07-061-31/+20
| | | | (This breaks something in MimeViewer.py, don't know what yet)
* tag_remove: add tagName to tk callGuido van Rossum1994-07-061-1/+1
|
* Added bind and tag_config methods; minor lay-out changeGuido van Rossum1994-07-061-2/+3
|
* Remove garbage '+ ' and reformat tag_delete function budyGuido van Rossum1994-07-061-3/+2
|
* * ScrolledText.py: added some more methods of Text (This shouldGuido van Rossum1994-07-061-0/+10
| | | | really be done differently, e.g. by deriving from the Text class.)
* Tue Jul 5 13:22:45 1994 (lumholt@login.dkuug.dk)Guido van Rossum1994-07-061-31/+56
| | | | | | | | | | | | | | | | | | | | | | | | * Setup.in: moreButtons Tk extension support (again). * mklibapp: $1 is now the path to the Tk extension source directory. The default is /usr/local/src/tcl. * kill.py: Don't use the exec Tcl command. * Tkinter.py (Misc.bind_all): Bug fix; extra graves. (Misc.tk_strictMotif): Return the value. (mainloop, getint, getdouble, getboolean): New functions. (_cnfmerge): Flatten cnfs. Wed Jun 29 22:01:17 1994 Steen Lumholt (lumholt@login.dkuug.dk) * Tkinter.py: (Tk.destroy): master is always None; so don't del. Found by Tommy Burnette, solution from Guido van Rossum. (Misc.selection_get): Missing return. Found by Richard Neitzel. (Misc._options, Widget.config, Canvas._create): If cnf is a tuple or list then merge the contents. Suggested by Matthew Conway.
* Mon Jul 4 12:42:04 1994 Guido van Rossum (guido@voorn.cwi.nl)Guido van Rossum1994-07-041-3/+3
| | | | | | | | | * Tkinter.py (Misc.bind_all): fix typo (name shouldn't be quoted). Wed Jun 29 10:02:21 1994 Guido van Rossum (guido@voorn.cwi.nl) * Tkinter.py (Misc.selection_get): add 'return' (Tk.destroy): self.master is always None
* Lots of new stuffGuido van Rossum1994-06-281-42/+102
|
* wait_{variable,window,visibility}Guido van Rossum1994-06-271-0/+11
| | | | register = _register