Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Patch #805976: Add DOTBOX and UNDERLINE. | Martin v. Löwis | 2003-09-20 | 1 | -0/+5 | |
| | ||||||
* | Add HIDDEN. Fixes #777664. | Martin v. Löwis | 2003-08-09 | 1 | -0/+2 | |
| | ||||||
* | Fix SF bug #763637, 2.3b2 unpack tuple of wrong size in after_cancel | Neal Norwitz | 2003-07-01 | 1 | -2/+4 | |
| | | | | | Tk 8.4 may return different values than 8.3. This fix should handle either version. | |||||
* | Add a missing 'self,' to a super call in recently checked-in code. | Guido van Rossum | 2003-06-15 | 1 | -1/+1 | |
| | | | | This was reported in the IDLEFORK bug tracker as #754971. | |||||
* | Patch #751107: Slant must be 'roman', not 'normal'. | Martin v. Löwis | 2003-06-14 | 1 | -1/+2 | |
| | ||||||
* | Properly deal with tuples in Open._fixresult. Fixes bug reported in | Martin v. Löwis | 2003-06-14 | 1 | -3/+16 | |
| | | | | follow-up to #621891. | |||||
* | SF bug #685773: 2 (more) bugs in turtle | Raymond Hettinger | 2003-06-09 | 1 | -0/+1 | |
| | | | | | | | The docs recommend filling by fill(1), drawing commands, fill(0). However, the filling did not actually take place until the next draw command. Fixed by issuing a null draw command at the end of the fill method. | |||||
* | Patch #749191: Delete commands in after_cancel. Will backport to 2.2. | Martin v. Löwis | 2003-06-07 | 1 | -0/+6 | |
| | ||||||
* | Convert tcl_version to str before comparing. Fixes #729317. | Martin v. Löwis | 2003-05-24 | 1 | -1/+2 | |
| | ||||||
* | Remove extra space in docstring | Neal Norwitz | 2003-04-17 | 1 | -1/+1 | |
| | ||||||
* | Add 'get' method to Variable and switch it from internal class to | Guido van Rossum | 2003-04-16 | 1 | -1/+7 | |
| | | | | | standard class (it is now useful because it doesn't constrain the type of the value). | |||||
* | For StringVar results to strings. Document that boolean things are of | Martin v. Löwis | 2003-04-16 | 1 | -4/+7 | |
| | | | | type bool. Requested in #721171. | |||||
* | SF patch #701494: more apply removals | Raymond Hettinger | 2003-04-06 | 11 | -364/+349 | |
| | ||||||
* | Patch #707701: Expect '??' in event fields. Fixes #698517. | Martin v. Löwis | 2003-03-29 | 1 | -16/+32 | |
| | | | | Will backport to 2.2. | |||||
* | SF patch 672098: Three __contains__ implementations | Raymond Hettinger | 2003-01-30 | 1 | -0/+2 | |
| | | | | Contributed by Jp Calderone. | |||||
* | Convert booleans to integers in IntVar.set. Fixes #671741. | Martin v. Löwis | 2003-01-22 | 1 | -0/+6 | |
| | | | | | Return booleans from _tkinter.getboolean. Convert booleans to Tcl booleans in AsObj. | |||||
* | Fix example in a docstring to not use 'file' as a variable name | Andrew M. Kuchling | 2003-01-21 | 1 | -2/+2 | |
| | ||||||
* | Fix SF bug # 602259, 3rd parameter for Tkinter.scan_dragto | Neal Norwitz | 2003-01-10 | 1 | -3/+3 | |
| | | | | Add the optional gain parameter and pass it to Tk. | |||||
* | Convert Tcl path objects to strings. Fixes #661357. | Martin v. Löwis | 2003-01-04 | 1 | -0/+6 | |
| | | | | Provide .string attribute and __unicode for Tcl_Objs. | |||||
* | Tix update from Mike Clarkson (maintainer) | Neal Norwitz | 2002-12-30 | 1 | -11/+53 | |
| | ||||||
* | Upgrade to Tix-8.1.4 from Mike Clarkson (the maintainer) | Neal Norwitz | 2002-12-10 | 1 | -3/+22 | |
| | ||||||
* | Patch #649184: Update to tix-8.1.4 RC3. | Martin v. Löwis | 2002-12-06 | 1 | -11/+65 | |
| | ||||||
* | Rename want_objects to wantobjects throughout, for consistency. | Martin v. Löwis | 2002-11-26 | 1 | -2/+2 | |
| | ||||||
* | Patch #518625: Return objects in Tkinter. | Martin v. Löwis | 2002-11-26 | 1 | -0/+3 | |
| | ||||||
* | Sync Tix from Mike Clarkson, a maintainer | Neal Norwitz | 2002-11-14 | 1 | -55/+114 | |
| | ||||||
* | Search for tix subdirectories. Fixes #564729. Will backport to 2.2. | Martin v. Löwis | 2002-11-09 | 1 | -9/+14 | |
| | ||||||
* | Patch #621891: Add askopenfile{name}s. | Martin v. Löwis | 2002-10-13 | 1 | -1/+33 | |
| | ||||||
* | Patch #621205: Tkinter updates for tk8.4. | Martin v. Löwis | 2002-10-13 | 1 | -26/+548 | |
| | ||||||
* | Patch #612602: Streamline configure methods. | Martin v. Löwis | 2002-10-10 | 1 | -79/+24 | |
| | ||||||
* | Whitespace normalization (get rid of tabs). | Guido van Rossum | 2002-09-29 | 1 | -4/+4 | |
| | ||||||
* | Add the bulk of SF patch 595111 by Attila Babo. | Guido van Rossum | 2002-09-23 | 1 | -2/+42 | |
| | | | | | | | | | | | | This adds new methods heading(), setheading(), position(), window_width(), window_height(), setx(), and sety(), to make this more functionality-compatible with Logo turtle graphics (Attila's last words, not mine :-). I had to fix the sety() code which was broken in Attila's patch. I'm not adopting the functionality change that Attila claimed was a bugfix (no output without tracing), because I disagree that it's a bug. | |||||
* | Update Canvas before computing width. Draw turtle at end of drawing circle. | Martin v. Löwis | 2002-09-22 | 1 | -0/+2 | |
| | | | | Fixes #612595. Will backport to 2.2. | |||||
* | Patch #484994: Improve PanedWindow. | Martin v. Löwis | 2002-09-19 | 1 | -4/+20 | |
| | ||||||
* | SF patch #581396, Canvas "select_item" always returns None | Neal Norwitz | 2002-07-23 | 1 | -1/+1 | |
| | | | | Return the selected item, if there is any. | |||||
* | Use string methods, remove import string | Neal Norwitz | 2002-05-31 | 1 | -4/+3 | |
| | ||||||
* | SF patch 546244 by John Williams: add Text.dump() method. | Guido van Rossum | 2002-04-23 | 1 | -1/+38 | |
| | ||||||
* | Patch #539392: Invoke setlocale, try opening the file in demo mode. | Martin v. Löwis | 2002-04-08 | 1 | -2/+18 | |
| | ||||||
* | Reindent. | Martin v. Löwis | 2002-03-28 | 1 | -551/+550 | |
| | ||||||
* | Patch #536117: Typo in turtle.py. | Martin v. Löwis | 2002-03-28 | 1 | -1/+1 | |
| | | | | 2.2.2 candidate. | |||||
* | Destroy and unlink deleted NoteBook panes. Fixes #516703. | Martin v. Löwis | 2002-03-27 | 1 | -1/+2 | |
| | | | | 2.2.2 candidate. | |||||
* | Ignore widgets with unknown names in winfo_children. Fixes #518283. | Martin v. Löwis | 2002-03-27 | 1 | -3/+11 | |
| | | | | 2.2.2 candidate. | |||||
* | Set TCL_LIBRARY before import _tkinter. Suggested by Kirill Simonov. | Martin v. Löwis | 2002-02-24 | 1 | -10/+31 | |
| | | | | Fixes #418173 and #219960. 2.2.1 candidate. | |||||
* | Patch #515598: removed unused import of os. | Martin v. Löwis | 2002-02-16 | 1 | -1/+0 | |
| | ||||||
* | Fix typo in label | Andrew M. Kuchling | 2002-01-02 | 1 | -1/+1 | |
| | ||||||
* | Print encoded versions of the file names in test application. Fixes #496084 | Martin v. Löwis | 2001-12-30 | 1 | -2/+16 | |
| | ||||||
* | Make tix_configure() work the same way configure() works for the basic | Fred Drake | 2001-12-13 | 1 | -86/+92 | |
| | | | | | | | Tkinter classes. Adjust a lot of docstrings. Convert a few type checks to use isinstance() instead of type(). This is part of SF patch #485959. | |||||
* | Fix for SF #491953 (Andrew Dalke): ScrolledText.py has TabError | Guido van Rossum | 2001-12-12 | 1 | -3/+3 | |
| | | | | Untabified. | |||||
* | SF patch #491183 (Jeff Epler): ScrolledText.grid() doesn't work | Guido van Rossum | 2001-12-10 | 1 | -2/+6 | |
| | | | | | | | | | | | | | | | | | | | | | | | Using grid methods on ScrolledText widgets does not work as expected. It either fails to pack a widget, or can even cause Tk to lock up. The problem is that the .grid method is being called on the text widget, not the frame widget. This can lead to the well-known lockup in Tk when a frame's children are managed by both the pack and grid managers. Even if it doesn't lock up, the frame is never placed within the intended widget. Program fragment: >>> import ScrolledText >>> s = ScrolledText.ScrolledText() >>> s.grid(row=0, column=0, rowspan=2) The following patch uses the same hack to copy the 'grid' and 'place' geometry manager methods to the ScrolledText instance as is already used for the 'pack' manager. | |||||
* | Be more careful about accessing attributes of the parent: if Tk has not been | Fred Drake | 2001-12-06 | 1 | -4/+20 | |
| | | | | | | | | | | | | | | initialized, this will be None, but the functions will still work (there will simply be a bogus parent on the screen). Allowing the parent to be None is useful when testing the functions from an interactive interpreter. Add an optional keyword paramter "show" to the _QueryString class; when given it is used to set the -show option to the entry widget. This allows passing show="*" or the like to askstring(), making it useful for requesting passwords/passphrases from the user. This closes SF bug #438517. Changed a docstring to be less font-lock-hostile. | |||||
* | Properly set static options for tixBalloon and tixResizeHandle. | Martin v. Löwis | 2001-11-25 | 1 | -2/+19 | |
| | | | | | Expose Tix.ResizeHandle.{detach_widget,hide,show}. Update Tix demos. |