1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3<plist version="1.0">
4<dict>
5	<key>Classes</key>
6	<dict>
7		<key>PXDocument</key>
8		<dict>
9			<key>Description</key>
10			<string>The document containing a canvas.</string>
11			<key>Name</key>
12			<string>document</string>
13			<key>PluralName</key>
14			<string>documents</string>
15			<key>ToOneRelationships</key>
16			<dict>
17				<key>canvas</key>
18				<dict>
19					<key>Description</key>
20					<string>The canvas.</string>
21					<key>Name</key>
22					<string>canvas</string>
23				</dict>
24			</dict>
25		</dict>
26		<key>PXCanvas</key>
27		<dict>
28			<key>Attributes</key>
29			<dict>
30				<key>activeLayerName</key>
31				<dict>
32					<key>Name</key>
33					<string>active layer name</string>
34				</dict>
35				<key>height</key>
36				<dict>
37					<key>Name</key>
38					<string>height</string>
39				</dict>
40				<key>width</key>
41				<dict>
42					<key>Name</key>
43					<string>width</string>
44				</dict>
45			</dict>
46			<key>Description</key>
47			<string>The Pixen canvas.</string>
48			<key>Name</key>
49			<string>canvas</string>
50			<key>PluralName</key>
51			<string>canvass</string>
52		</dict>
53	</dict>
54	<key>Commands</key>
55	<dict>
56		<key>AddLayer</key>
57		<dict>
58			<key>Arguments</key>
59			<dict>
60				<key>layerName</key>
61				<dict>
62					<key>Description</key>
63					<string>The name of the layer to be added.</string>
64					<key>Name</key>
65					<string>named</string>
66				</dict>
67			</dict>
68			<key>Description</key>
69			<string>Adds a new layer to the canvas and activates it.</string>
70			<key>Name</key>
71			<string>addLayer</string>
72		</dict>
73		<key>GetColor</key>
74		<dict>
75			<key>Arguments</key>
76			<dict>
77				<key>atX</key>
78				<dict>
79					<key>Name</key>
80					<string>at x</string>
81				</dict>
82				<key>atY</key>
83				<dict>
84					<key>Name</key>
85					<string>at y</string>
86				</dict>
87			</dict>
88			<key>Description</key>
89			<string>Fetches the color at a point.</string>
90			<key>Name</key>
91			<string>getColor</string>
92		</dict>
93		<key>MoveLayer</key>
94		<dict>
95			<key>Arguments</key>
96			<dict>
97				<key>atIndex</key>
98				<dict>
99					<key>Description</key>
100					<string>The original index of the layer to move.</string>
101					<key>Name</key>
102					<string>at index</string>
103				</dict>
104				<key>toIndex</key>
105				<dict>
106					<key>Description</key>
107					<string>The new index for the layer.</string>
108					<key>Name</key>
109					<string>to index</string>
110				</dict>
111			</dict>
112			<key>Description</key>
113			<string>Reorders layers in the list.</string>
114			<key>Name</key>
115			<string>moveLayer</string>
116		</dict>
117		<key>RemoveLayer</key>
118		<dict>
119			<key>Arguments</key>
120			<dict>
121				<key>layerName</key>
122				<dict>
123					<key>Description</key>
124					<string>The name of the layer to be removed.</string>
125					<key>Name</key>
126					<string>named</string>
127				</dict>
128			</dict>
129			<key>Description</key>
130			<string>Removes a layer from the canvas.</string>
131			<key>Name</key>
132			<string>removeLayer</string>
133		</dict>
134		<key>SetColor</key>
135		<dict>
136			<key>Arguments</key>
137			<dict>
138				<key>atX</key>
139				<dict>
140					<key>Name</key>
141					<string>at x</string>
142				</dict>
143				<key>atY</key>
144				<dict>
145					<key>Name</key>
146					<string>at y</string>
147				</dict>
148				<key>toColor</key>
149				<dict>
150					<key>Name</key>
151					<string>toColor</string>
152				</dict>
153			</dict>
154			<key>Description</key>
155			<string>Sets the color at a point.</string>
156			<key>Name</key>
157			<string>setColor</string>
158		</dict>
159	</dict>
160	<key>Description</key>
161	<string>Suite for Pixen canvas manipulation</string>
162	<key>Name</key>
163	<string>Pixen</string>
164</dict>
165</plist>
166