summaryrefslogtreecommitdiffstats
path: root/Lib/lib-tk
Commit message (Collapse)AuthorAgeFilesLines
* 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
* Initial revisionGuido van Rossum1994-06-271-0/+38
|
* Redo these changes:Guido van Rossum1994-06-271-2/+4
| | | | | (Menu.index): return int or None, not string (Widget.__getitem__): use splitlist, not split
* Sun Jun 26 02:19:01 1994 Steen Lumholt (lumholt@login.dkuug.dk)Guido van Rossum1994-06-271-36/+114
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * README: Doc fix. * Dialog.py: tk_dialog wrapper widget. * Tkinter.py: (Widget) Code moved from __init__ to _setup. Sat Jun 25 00:27:24 1994 Steen Lumholt (lumholt@login.dkuug.dk) * Tkinter.py (Misc): selection_own and selection_own_get methods. (Misc.winfo_toplevel): Return widget. * kill.py: New demo. * Tkinter.py: tk_menuBar method moved from Menu class to Misc class. (Scrollbar.get): Bug fix; self._getints not self.tk.getints. Fri Jun 24 17:42:16 1994 Steen Lumholt (lumholt@login.dkuug.dk) * Tkinter.py (Variable, StringVar, IntVar, BooleanVar): New classes. * mklibapp: New shell script. * Setup.in: moreButtons Tk extension support. * tkintermodule.c (Tkapp_New): Remove #ifdef WITH_APPINIT. * appinit.c (Tcl_AppInit): New file and function. * Tkinter.py: (Button): Dummy args in tk_* methods. (Studbutton, Tributton): New widget by <tnb2d@cs.virginia.edu>; morebuttons extension. Thu Jun 23 22:22:43 1994 Steen Lumholt (lumholt@login.dkuug.dk) * tkintermodule.c (FileHandler): Make arg a tuple; bug found by <tnb2d@cs.virginia.edu>. Call the Python file handler function with (file, mask) argument. Fix a few of my refcnt bugs.
* (Menu.index): return int or None, not stringGuido van Rossum1994-06-271-2/+4
| | | | (Widget.__getitem__): use splitlist, not split
* * Tkinter.pyGuido van Rossum1994-06-231-6/+51
| | | | | | (Widget): generalized config(); added keys(). (Canvas): added addtag_xxx and find_xxx functions; generalized itemconfig().
* * Tkinter.py: some tidying up.Guido van Rossum1994-06-211-14/+27
| | | | | | | (Misc.after): arrange to call deletecommand after it is called. (Canvas.itemconfig): generalized to support all forms. (Canvas.find): returns a list of integers instead of strings. * Tkinter.py (Canvas._create): call _flatten earlier.
* Reformatted using 8-space wide tabsGuido van Rossum1994-06-201-17/+18
|
* * Tkinter.py (Canvas): made create_ methods return the item id;Guido van Rossum1994-06-201-10/+21
| | | | | flatten argument list to _create before passing on to tk.call; _do should return a value.
* Added dictionary mapping names to children, and _name attribute.Guido van Rossum1994-06-201-78/+130
| | | | | | | | | | | | | | | | | Renamed tkerror to _tkerror, default_root to _default_root. (_substitute, _subst_prefix): move back into class Misc; added widget Event attribute. Added functions that return widgets or widget lists: winfo_children; focus_get; grab_current. (Pack.slaves, Place.slaves): return Widget objects instead of pathnames. Renamed __del__() to destroy() (because of circular refs, __del__ won't ever be called). Added some names with explicit _set: focus_set, focus_default_set, grab_set. Added focus_default_none. (Misc._getints): use tk.splitlist() instead of tk.split(), return None if string empty.
* Added getdouble, getboolean.Guido van Rossum1994-06-201-11/+10
| | | | | | Removed redundant global statements getboolean returns None if argument is empty AtInsert() concatenates optional arguments after 'insert'
* Added getvar, getint, lower, tkraise==lift to Misc classGuido van Rossum1994-06-201-0/+10
|
* Initial revisionGuido van Rossum1994-06-203-0/+1024