diff options
author | das <das> | 2009-08-24 00:57:20 (GMT) |
---|---|---|
committer | das <das> | 2009-08-24 00:57:20 (GMT) |
commit | 8d037e5034bb1bd73a0df73248627dd232f2b604 (patch) | |
tree | 9ca9102b51497232628f90a3372db321a6f6816a /macosx/Wish.sdef | |
parent | 90e0700d79e616b7cb358be30448acf33dd5c007 (diff) | |
download | tk-8d037e5034bb1bd73a0df73248627dd232f2b604.zip tk-8d037e5034bb1bd73a0df73248627dd232f2b604.tar.gz tk-8d037e5034bb1bd73a0df73248627dd232f2b604.tar.bz2 |
* macosx/Wish.sdef (new file): Install and enable sdef file
* macosx/Wish-Info.plist.in: into Wish application bundle,
* macosx/Tk.xcode/project.pbxproj: describing TkAqua apple event
* macosx/Tk.xcodeproj/project.pbxproj: support for use by AppleScript.
* unix/Makefile.in: (replaces functionality of
* unix/configure.in: 'aete' resource removed with
Cocoa port & fixes AppleScript
issues reported on tcl-mac)
Diffstat (limited to 'macosx/Wish.sdef')
-rw-r--r-- | macosx/Wish.sdef | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/macosx/Wish.sdef b/macosx/Wish.sdef new file mode 100644 index 0000000..f388d7d --- /dev/null +++ b/macosx/Wish.sdef @@ -0,0 +1,39 @@ +<?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. + + RCS: @(#) $Id: Wish.sdef,v 1.1 2009/08/24 00:57:20 das Exp $ +--> +<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> |