diff options
author | andreask <andreask> | 2012-08-27 19:07:56 (GMT) |
---|---|---|
committer | andreask <andreask> | 2012-08-27 19:07:56 (GMT) |
commit | 3eaa9158969efacbacec27172464698453341068 (patch) | |
tree | 7b61dec5a7b388232f16cf04cdd8392fdface698 | |
parent | 1708b1c4d917dcac30d390ddaed0c14b9ecba863 (diff) | |
download | tk-3eaa9158969efacbacec27172464698453341068.zip tk-3eaa9158969efacbacec27172464698453341068.tar.gz tk-3eaa9158969efacbacec27172464698453341068.tar.bz2 |
And back-copied Wish.sdef from Tk 8.6 into the branch. Again something expected by the merged-in Makefile.
-rw-r--r-- | macosx/Wish.sdef | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/macosx/Wish.sdef b/macosx/Wish.sdef new file mode 100644 index 0000000..26d1ee8 --- /dev/null +++ b/macosx/Wish.sdef @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE dictionary SYSTEM "file://localhost/System/Library/DTDs/sdef.dtd"> +<!-- + Copyright (c) 1997 Sun Microsystems, Inc. + Copyright 2009 Kevin Walzer/WordTech Communications LLC. + Copyright (c) 2009 Daniel A. Steffen <das@users.sourceforge.net> + + See the file "license.terms" for information on usage and redistribution of + this file, and for a DISCLAIMER OF ALL WARRANTIES. +--> +<dictionary title="Wish Terminology"> + <suite name="Standard Suite" code="reqd" description="Common commands for all applications."> + <command name="open" code="aevtodoc" description="Open a document."> + <direct-parameter description="The file(s) to be opened."> + <type type="file"/> + <type type="file" list="yes"/> + </direct-parameter> + </command> + <command name="print" code="aevtpdoc" description="Print a document."> + <direct-parameter description="The file(s) to be printed."> + <type type="file" list="yes"/> + <type type="specifier"/> + </direct-parameter> + </command> + <command name="quit" code="aevtquit" description="Quit the application."/> + </suite> + <suite name="Wish Suite" code="WIsH" description="Commands for the Wish application."> + <command name="do script" code="miscdosc" description="Execute a Tcl script."> + <direct-parameter description="Script to execute" type="text"> + <type type="text"/> + </direct-parameter> + <result description="Result"> + <type type="text"/> + </result> + </command> + </suite> +</dictionary> |