-
Notifications
You must be signed in to change notification settings - Fork 140
/
ScrollReverser.sdef
36 lines (22 loc) · 1.46 KB
/
ScrollReverser.sdef
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE dictionary SYSTEM "file://localhost/System/Library/DTDs/sdef.dtd">
<!-- declare the namespace for using XInclude so we can include the standard suite -->
<dictionary xmlns:xi="http://www.w3.org/2003/XInclude">
<!-- use XInclude to include the standard suite -->
<xi:include href="file:///System/Library/ScriptingDefinitions/CocoaStandard.sdef" xpointer="xpointer(/dictionary/suite)"/>
<!-- our special scripting suite -->
<suite name="Scroll Reverser Suite" code="SRSR"
description="Scroll Reverser application specific scripting facilities.">
<!-- any additions to the application class are done here. note that
we have specified that we inherit all of the properties from the standard
application class definition, and we use the same four character code from
that definition (see the application class definition above). -->
<class name="application" code="capp"
description="Scroll Reverser application." inherits="application">
<!-- the name of the Cocoa class where we have provided the
various accessor methods for our application class. -->
<cocoa class="NSApplication"/>
<property name="enabled" code="SRen" type="boolean" description="Set whether Scroll Reverser is on or off."/>
</class>
</suite>
</dictionary>