summaryrefslogtreecommitdiffstats
path: root/Tools
Commit message (Collapse)AuthorAgeFilesLines
* Added Helpwin -- help in a text widgetBarry Warsaw1998-12-031-0/+60
|
* Untabification and other cruftBarry Warsaw1998-12-031-31/+40
|
* docstring(): Function for returning __doc__ % globals()Barry Warsaw1998-12-031-1/+6
|
* audiopy: slightly revamped UI... includes a menubar, no quit button,Barry Warsaw1998-12-032-17/+102
| | | | | | | and added a `Help' menu item that puts the README (or docstring if that can't be found) in a scrolling text widget. README: fixed a few nits
* Initial version of the README fileBarry Warsaw1998-12-031-0/+98
|
* TypoGuido van Rossum1998-11-271-1/+1
|
* Support underlining of menu labelsGuido van Rossum1998-11-272-5/+6
|
* New approach, separate tables for menus (platform-independent) and keyGuido van Rossum1998-11-271-168/+192
| | | | | definitions (platform-specific), and generating accelerator strings automatically from the key definitions.
* A little more tweakageBarry Warsaw1998-11-181-5/+20
|
* A little more tweakageBarry Warsaw1998-11-181-1/+2
|
* A bit of tweakage of the --help and --version optionsBarry Warsaw1998-11-181-6/+11
|
* (ChipViewer): Make frame sticky NSEW to fix geometry problem.Barry Warsaw1998-11-181-1/+1
|
* tweak version numberBarry Warsaw1998-11-181-1/+1
|
* UpdateBarry Warsaw1998-11-181-0/+3
|
* UpdatingBarry Warsaw1998-11-182-4/+0
|
* Clarify portability and main program.Guido van Rossum1998-11-161-2/+8
|
* Added intro for 0.1 release and append Grail notes.Guido van Rossum1998-11-161-0/+37
|
* Added a None button to turn off all input sources.Barry Warsaw1998-11-021-4/+22
|
* If the module SUNAUDIODEV was generated on an older version ofBarry Warsaw1998-11-011-16/+25
| | | | | Solaris, the `CD' macro won't exist in the header file, so this will raise a NameError.
* MainWindow.__init__(): Move the import of Tkinter to here so thatBarry Warsaw1998-11-011-1/+1
| | | | command line operation is (much) faster.
* Added a version number, --version, and updated the docstring.Barry Warsaw1998-11-011-5/+13
|
* Rewrite, simplification of command line option parsing. Many GUIBarry Warsaw1998-11-011-124/+50
| | | | fixes. Input sources are mutually exclusive.
* some rewriting, must do command line argsBarry Warsaw1998-10-311-40/+91
|
* Input stuffBarry Warsaw1998-10-301-15/+91
|
* Added command line optionsBarry Warsaw1998-10-301-1/+273
|
* Initial revisionBarry Warsaw1998-10-301-0/+1
|
* root is now a global called _rootGuido van Rossum1998-10-261-1/+1
|
* Raise the root window on reset().Guido van Rossum1998-10-241-11/+9
| | | | | Different action on WM_DELETE_WINDOW is more likely to do the right thing, allowing us to destroy old windows.
* Split the goto() function in two: _goto() is the internal one,Guido van Rossum1998-10-241-5/+9
| | | | | using Canvas coordinates, and goto() uses turtle coordinates and accepts variable argument lists.
* Cope with destruction of the windowGuido van Rossum1998-10-241-7/+24
|
* Turtle graphicsGuido van Rossum1998-10-241-0/+324
|
* Use of Breakpoint class should be bdb.Breakpoint.Guido van Rossum1998-10-241-1/+1
|
* Brief update on the slightly changed API of pyColorChooser.askcolor().Barry Warsaw1998-10-221-11/+41
| | | | Added a To Do list.
* __init__(): Removed initialcolor keyword.Barry Warsaw1998-10-221-6/+26
| | | | | | | | | | | | | show(): added color keyword here so that the selected color can be chosen on each invocation of askcolor(). Also fixed this class, and askcolor() so that the same Chooser instance can be re-used instead of creating a new one on each invocation of askcolor(). Added a module function save() which can be used to explicitly save the option database in ~/.pynche. This does not happen automatically when used as a modal.
* sticky should be NSEW to fix pixel weirdness at right edgeBarry Warsaw1998-10-221-1/+1
|
* Error message goes to stderrBarry Warsaw1998-10-221-4/+8
| | | | | canceled() takes an optional flag so that the canceled flag can be cleared.
* beep => bellBarry Warsaw1998-10-221-3/+6
| | | | deiconify(): New method
* Fixed running of standalone via command line. Also, only do save fromBarry Warsaw1998-10-221-3/+5
| | | | main() so that run-as-modal doesn't automatically save database.
* Describe all the new featuresBarry Warsaw1998-10-221-133/+262
|
* Chooser.__init__(): Added `wantspec' keyword to conform exactly toBarry Warsaw1998-10-221-4/+10
| | | | | tkColorChooser.askcolor() interface (i.e. don't return a color name even if there is an exact match).
* Many changes to support a second mode of operation. Pynche can now beBarry Warsaw1998-10-2210-120/+256
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | run either as a standalone application (by running pynche or pynche.pyw), or as a modal dialog inside another application. This can be done by importing pyColorChooser and running askcolor(). The API for this is the same as the tkColorChooser.askcolor() API, namely: When `Okay' is hit, askcolor() returns ((r, g, b), "name"). When `Cancel' is hit, askcolor() returns (None, None). Note the following differences: 1. pyColorChooser.askcolor() takes an optional keyword `master' which if set tells Pynche to run as a modal dialog. `master' is a Tkinter parent window. Without the `master' keyword Pynche runs standalone. 2. in pyColorChooser.askcolor() will return a Tk/X11 color name as "name" if there is an exact match, otherwise it will return a color spec, e.g. "#rrggbb". tkColorChooser can't return a color name. There are also some UI differences when running standalone vs. modal. When modal, there is no "File" menu, but instead there are "Okay" and "Cancel" buttons. The implementation of all this is a bit of a hack, but it seems to work moderately well. I'm not guaranteeing the pyColorChooser.Chooser class has the same semantics as the tkColorChooser.Chooser class.
* Saving/Restoring state into ~/.pynche fileBarry Warsaw1998-10-2010-27/+160
|
* Detlef Lannert lannert@lannert.rz.uni-duesseldorf.de notices:Guido van Rossum1998-10-201-1/+4
| | | | | | | | | """ the NEWS file of Python 1.5.2a2 inspired me to look at Tools/scripts/untabify.py. I wonder why it accepts a -t argument but ignores it. The following patch tries to make it somewhat useful (i.e., to override the tabsize=8 setting). Is that agreeable? """
* Speed up the search a bit -- don't drag a mark around...Guido van Rossum1998-10-191-13/+17
|
* Change our special entries from <console#N> to <pyshell#N>.Guido van Rossum1998-10-191-2/+48
| | | | | Patch linecache.checkcache() to keep our special entries alive. Add popup menu to all editor windows to set a breakpoint.
* Use and pass through the 'force' flag to set_dict() where appropriate.Guido van Rossum1998-10-191-8/+35
| | | | | | Default source and globals checkboxes to false. Don't interact in user_return(). Add primitive set_breakpoint() method.
* Raise priority of 'sel' tag so its foreground (on Windows) will takeGuido van Rossum1998-10-191-0/+3
| | | | | | | priority over text colorization (which on Windows is almost the same color as the selection background). Define a tag and color for breakpoints ("BREAK").
* Disable "Open stack viewer" and "help" commands.Guido van Rossum1998-10-191-3/+3
|
* Add optional 'force' argument (default 0) to load_dict().Guido van Rossum1998-10-191-2/+2
| | | | If set, redo the display even if it's the same dict.
* The driver script on Unix is `pynche'; for Windows `pynche.pyw'Barry Warsaw1998-10-161-2/+2
|