summaryrefslogtreecommitdiffstats
path: root/Lib/lib-tk
Commit message (Collapse)AuthorAgeFilesLines
...
* Add image_types() and image_names() as methods to Misc class.Guido van Rossum1998-04-101-0/+8
|
* Another easter present.Guido van Rossum1998-04-101-0/+321
|
* Restructured the event_* calls slightly -- there's really no need toGuido van Rossum1998-04-061-14/+11
| | | | use the default root, and instead of string.split, use splitlist.
* Return the name of the Tcl command defined by _bind(). This canGuido van Rossum1998-03-271-5/+13
| | | | | optionally be passed to unbind() (or you can apss it to deletecommand()).
* Get rid of the Emacs cruft now that Python-mode guess the desired settings!Guido van Rossum1998-03-261-6/+0
|
* Give in to the tab police.Guido van Rossum1998-03-206-285/+295
|
* Typo: baseWidht -> baseWidth.Guido van Rossum1998-02-241-1/+1
|
* Fix bug in trace_vdelete(); should use master's delete command.Guido van Rossum1998-02-191-1/+2
|
* Add trace methods to class VariableGuido van Rossum1998-01-141-5/+15
|
* Two critical fixes to the changes that I made for Greg McFarlane --Guido van Rossum1997-12-301-3/+3
| | | | patches provided by Greg (am I glad I sent him my latest version!).
* Fixed several bugs reported by Greg McFarmane:Guido van Rossum1997-12-291-42/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * The invoke methods of the three Tkinter widgets Button, Checkbutton and Radiobutton should return the value returned by the callback, (like the Menu widget does): def invoke(self): return self.tk.call(self._w, 'invoke') * The select_from method of the Canvas widget should use 'from', not 'set': def select_from(self, tagOrId, index): self.tk.call(self._w, 'select', 'from', tagOrId, index) Currently, if you use select_from, you get the error message: 'TclError: bad select option "set": must be adjust, clear, from, item, or to' * The 'entrycget' and 'type' methods of the Tk menu widget are missing from Tkinter. * There is a bug in grid_columnconfigure and grid_rowconfigure. For example, this should return the current value of the 'minsize' option for column 0: f.grid_columnconfigure(0, 'minsize') Instead it returns the same as: f.grid_columnconfigure(0) I suggest that the hint given in the comment in the Tkinter.Misc.configure method should be followed - "ought to generalize this so tag_config etc. can use it". Repeating the same configure code several times in Tkinter is inviting errors. [I did not follow this advice --G] * The grid_slaves method should handle options. Currently, to pass options to the grid_slaves method, you have to do something like: grid_slaves('-row', 1)
* Do a better job of keeping the dialog visible when the master windowGuido van Rossum1997-12-281-0/+8
| | | | is near or beyond the edge of the screen. Patch by Skip Montanaro.
* Typo: Widht instead of Width...Guido van Rossum1997-12-271-1/+1
|
* Added SOLID definition.Guido van Rossum1997-12-161-0/+2
|
* PhotoImage.put(): Fixed -to handling, including backward compatibility hack.Fred Drake1997-12-161-1/+3
| | | | Guido, please take a look at this.
* Added tag_prevrange analogous to rag_nextrange.Guido van Rossum1997-12-151-0/+3
|
* Change _nametowidget to nametowidget -- it is a public interface.Guido van Rossum1997-12-121-1/+2
|
* Last minute fix to Text.window_cget(), which should properly Tcl-ifyGuido van Rossum1997-12-111-0/+4
| | | | the option name (prepend '-', strip trailing '_').
* Fix problem detected by Greg McFarlane -- callbacks passed toGuido van Rossum1997-12-111-10/+16
| | | | | bind_class() and bind_all() are destroyed when the widget to which they were passed is destroyed.
* Fix the exclusion of "config" in the methods copied from Pack to alsoGuido van Rossum1997-12-051-1/+1
| | | | exclude "configure".
* Support for the "event" command, new in Tk 4.2.Guido van Rossum1997-12-021-0/+24
| | | | By Case Roole.
* bind_class should return a valueGuido van Rossum1997-11-221-1/+1
|
* Some restructuring.Guido van Rossum1997-11-071-111/+166
| | | | | | | | | | | | | | | | | | | | | | | | | | | All geometry manager methods that apply to a master widget instead of to a slave widget have been moved to the Misc class, which is inherited by all of Tk(), Toplevel() and Widget(). They have been renamed to have their geometry manager name as a prefix, e.g. pack_propagate(); the short names can still be used where ambiguities are resolved so that pack has priority over place has priority over grid (since this was the old rule). Also, the method definitions in the Pack, Place and Grid classes now all have their respective geometry manager name as a prefix (e.g. pack_configure); the shorter names are aliases defined through assignment. A similar renaming has been done for all config() methods found elsewhere; these have been renamed to configure() with config being the alias (instead of the other way around). (This may not make much of a difference but the official Tk command name is now 'configure' and it may help in debugging tracebacks.) Finally, a new base class BaseWidget has been introduced, which implements the methods common between Widget and Toplevel (the difference between those two classes is that Toplevel has a different __init__() but also that Toplevel doesn't inherit from Pack, Place or Grid.
* Move Widget.config() c.s. to Misc class, so the Tk class also inherits them.Guido van Rossum1997-09-291-31/+30
|
* Add missing comma to make a tuple of (tagOrId).Guido van Rossum1997-08-181-1/+1
|
* Fred Lundh's latest versions.Guido van Rossum1997-08-143-11/+21
|
* Add dummies for create/delete filehandles, just so that vanilla GrailGuido van Rossum1997-08-141-0/+6
| | | | 0.3 won't break on Windows.
* New dialog from Fred LundhGuido van Rossum1997-08-121-0/+212
|
* Fixes for the Mac. (Jack)Guido van Rossum1997-08-121-1/+5
|
* Get READABLE c.s. from _tkinter instead of conditional definition.Guido van Rossum1997-08-051-12/+6
| | | | in Tk.destroy(), reset _default_root to None when it is us.
* New dialog routines (Fred Lundh)Guido van Rossum1997-07-194-0/+361
|
* Use dictionary's update() method in _cnfmerge().Guido van Rossum1997-07-191-2/+6
|
* Widget._setup(): Support name=None in a similar way to the handling of otherFred Drake1997-05-271-1/+2
| | | | Tkinter keyword parameters.
* Add root.tkraise() to the _test() program so the window doesn't hideGuido van Rossum1997-05-091-0/+1
| | | | behind the shell window on NT.
* Misc.__init__(): Removed method, replaced with class attribute (whichFred Drake1997-05-031-4/+1
| | | | | | was all that the method set anyway). Removed calls to the constructor. This reduces the number of Python function calls per widget construction by one, for every widget construction.
* Patch by Craig McPheeters to clean up the back-references to widgetsGuido van Rossum1997-04-141-2/+23
| | | | contained in commands created by those same widgets.
* 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).