diff options
author | wolfsuit <wolfsuit> | 2003-02-25 18:24:31 (GMT) |
---|---|---|
committer | wolfsuit <wolfsuit> | 2003-02-25 18:24:31 (GMT) |
commit | 5878012a935791359f1ea3ccb7f80eba025b3339 (patch) | |
tree | caac7a4ac98a37afef83e56d95308aa0b538318b /macosx/tkMacOSXAETE.r | |
parent | ef0d3a8b26df2e8af5152f986f74dff4ea019ce8 (diff) | |
download | tk-5878012a935791359f1ea3ccb7f80eba025b3339.zip tk-5878012a935791359f1ea3ccb7f80eba025b3339.tar.gz tk-5878012a935791359f1ea3ccb7f80eba025b3339.tar.bz2 |
Added the 'aete' resource defining the doscript event, and adding it to the Wish target.
Diffstat (limited to 'macosx/tkMacOSXAETE.r')
-rw-r--r-- | macosx/tkMacOSXAETE.r | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/macosx/tkMacOSXAETE.r b/macosx/tkMacOSXAETE.r new file mode 100644 index 0000000..86b860d --- /dev/null +++ b/macosx/tkMacOSXAETE.r @@ -0,0 +1,56 @@ +/* + * tclMacAETE.r -- + * + * This file creates the Apple Event Terminology resources + * for use Tcl and Tk. It is not used in the Simple Tcl shell + * since SIOUX does not support AppleEvents. An example of its + * use in Tcl is the TclBGOnly project. And it is used in all the + * Tk Shells. + * + * Copyright (c) 1997 Sun Microsystems, Inc. + * + * See the file "license.terms" for information on usage and redistribution + * of this file, and for a DISCLAIMER OF ALL WARRANTIES. + * + * RCS: @(#) $Id: tkMacOSXAETE.r,v 1.1 2003/02/25 18:24:31 wolfsuit Exp $ + */ + +#define SystemSevenOrLater 1 + +#include <Carbon.r> + +/* + * The following resources defines the Apple Events that Tk can be + * sent from Apple Script. + */ + +resource 'aete' (0, "Wish Suite") { + 0x01, 0x00, english, roman, + { + "Required Suite", + "Events that every application should support", + 'reqd', 1, 1, + {}, + {}, + {}, + {}, + + "Wish Suite", "Events for the Wish application", 'WIsH', 1, 1, + { + "do script", "Execute a Tcl script", 'misc', kAEDoScript, + 'TEXT', "Result", replyOptional, singleItem, + notEnumerated, reserved, reserved, reserved, reserved, + reserved, reserved, reserved, reserved, reserved, + reserved, reserved, reserved, reserved, + 'TEXT', "Script to execute", directParamRequired, + singleItem, notEnumerated, changesState, reserved, + reserved, reserved, reserved, reserved, reserved, + reserved, reserved, reserved, reserved, reserved, + reserved, + {}, + }, + {}, + {}, + {}, + } +}; |