Converted these images to PNG, saving a handful of bytes per image
[adiumx.git] / Resources / Adium.sdef
bloba9958bf34ab7efc6ef495d5806d3f8ba45c60c3e
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE dictionary SYSTEM "file://localhost/System/Library/DTDs/sdef.dtd">
3 <dictionary title="Adium Terminology">
4 <suite name="Adium Suite" code="Adum" description="AppleScript support for Adium">
5 <value-type name="TIFF picture" code="TIFF">
6 <cocoa class="NSData"/>
7 </value-type>
8 <class name="application" code="capp" description="Adium's application class">
9 <cocoa class="AIApplication" />
10 <property name="name" code="pnam" type="text" access="r" description="The name of the application."/>
11 <property name="frontmost" code="pisf" type="boolean" access="r" description="Is this the frontmost (active) application?">
12 <cocoa key="isActive"/>
13 </property>
14 <property name="version" code="vers" type="text" access="r" description="The version of the application."/>
15 <property name="active chat" code="Pcht" type="chat" access="r" description="The frontmost chat."/>
17 <property name="global status" code="Pgst" type="status" access="rw" description="The global status. This is the status that the most online accounts are currently using; it will only be an offline status if no accounts are online. Setting it changes the status for all accounts.">
18 <cocoa key="globalStatus"/>
19 </property>
21 <element type="account" />
22 <element type="contact" />
23 <element type="service" />
24 <element type="window">
25 <cocoa key="orderedWindows" />
26 </element>
27 <element type="chat window" />
28 <element type="chat" />
29 <element type="status" />
31 <responds-to name="go online">
32 <cocoa method="scriptingGoOnline:"/>
33 </responds-to>
34 <responds-to name="go available">
35 <cocoa method="scriptingGoAvailable:"/>
36 </responds-to>
37 <responds-to name="go offline">
38 <cocoa method="scriptingGoOffline:"/>
39 </responds-to>
40 <responds-to name="go away">
41 <cocoa method="scriptingGoAway:"/>
42 </responds-to>
43 <responds-to name="go invisible">
44 <cocoa method="scriptingGoInvisible:"/>
45 </responds-to>
46 </class>
47 <class name="service" code="Csrv" description="An Adium service (a.k.a. chat protocol)">
48 <cocoa class="AIService" />
49 <property name="name" code="pnam" type="text" access="r" description="The name of the service.">
50 <cocoa key="serviceID" />
51 </property>
52 <property name="image" code="Pimg" type="TIFF picture" access="r" description="The image associated with this service." />
53 <element type="account" />
54 </class>
55 <class name="window" code="cwin" description="A window in Adium">
56 <cocoa class="NSWindow" />
57 <property name="name" code="pnam" type="text" access="r" description="The title of this window">
58 <cocoa key="scriptingTitle" />
59 </property>
60 <property name="id" code="ID " type="integer" access="r" description="The unique identifier of the window.">
61 <cocoa key="uniqueID"/>
62 </property>
63 <property name="index" code="pidx" type="integer" description="The index of the window, ordered front to back.">
64 <cocoa key="orderedIndex"/>
65 </property>
66 <property name="bounds" code="pbnd" type="rectangle" description="The bounding rectangle of the window.">
67 <cocoa key="boundsAsQDRect"/>
68 </property>
69 <property name="closeable" code="hclb" type="boolean" access="r" description="Whether the window has a close box.">
70 <cocoa key="hasCloseBox"/>
71 </property>
72 <property name="minimizable" code="ismn" type="boolean" access="r" description="Whether the window can be minimized.">
73 <cocoa key="isMiniaturizable"/>
74 </property>
75 <property name="minimized" code="pmnd" type="boolean" description="Whether the window is currently minimized.">
76 <cocoa key="isMiniaturized"/>
77 </property>
78 <property name="resizable" code="prsz" type="boolean" access="r" description="Whether the window can be resized.">
79 <cocoa key="isResizable"/>
80 </property>
81 <property name="visible" code="pvis" type="boolean" description="Whether the window is currently visible.">
82 <cocoa key="isVisible"/>
83 </property>
84 <property name="zoomable" code="iszm" type="boolean" access="r" description="Whether the window can be zoomed.">
85 <cocoa key="isZoomable"/>
86 </property>
87 <property name="zoomed" code="pzum" type="boolean" description="Whether the window is currently zoomed.">
88 <cocoa key="isZoomed"/>
89 </property>
90 </class>
91 <class name="chat window" code="Ctwn" description="A window that contains chats" inherits="window">
92 <cocoa class="AIMessageWindow" />
93 <element type="chat" />
94 <responds-to name="close">
95 <cocoa method="handleCloseScriptCommand:"/>
96 </responds-to>
97 </class>
98 <class name="chat" code="Chat" description="A chat in Adium">
99 <cocoa class="AIChat" />
100 <property name="name" code="pnam" type="text" access="r" description="The name of the chat" />
101 <property name="ID" code="ID " type="text" access="r" description="The unique identifier of the chat.">
102 <cocoa key="uniqueChatID"/>
103 </property>
104 <property name="account" code="Cact" type="account" access="r" description="The account associated with this chat">
105 <cocoa key="scriptingAccount" />
106 </property>
107 <property name="date opened" code="CDop" type="date" access="r" description="The date and time at which this chat was opened">
108 <cocoa key="dateOpened" />
109 </property>
111 <property name="index" code="pidx" type="integer" access="r" description="The index of this tab in the chat window" />
112 <property name="window" code="cwin" type="window" access="r" description="The window this chat is in" />
113 <element type="contact">
114 <cocoa key="containedObjects" />
115 </element>
117 <responds-to name="close">
118 <cocoa method="handleCloseScriptCommand:"/>
119 </responds-to>
120 <responds-to name="send">
121 <cocoa method="sendScriptCommand:"/>
122 </responds-to>
123 </class>
124 <enumeration name="status types" code="Esta">
125 <enumerator name="offline" code="Soff" description="Account is offline."/>
126 <enumerator name="available" code="Sonl" description="Account is online."/>
127 <enumerator name="away" code="Sawy" description="Account is away."/>
128 <enumerator name="invisible" code="Sinv" description="Account is invisible."/>
129 </enumeration>
130 <class name="account" code="Cact" description="An account in Adium">
131 <cocoa class="AIAccount" />
132 <property name="id" code="ID " type="integer" access="r" description="The unique ID associated with this account">
133 <cocoa key="scriptingInternalObjectID" />
134 </property>
135 <property name="name" code="pnam" type="text" access="r" description="The name of this account">
136 <cocoa key="scriptingUID" />
137 </property>
138 <property name="display name" code="Pdnm" type="text" access="rw" description="The display name of this account"/>
139 <property name="service" code="Csrv" type="service" access="r" description="The service this account is registered under" />
140 <property name="enabled" code="Penb" type="boolean" access="r" description="Whether or not this account is enabled" />
141 <property name="host" code="Phst" type="text" access="r" description="The host this account is connected to" />
142 <property name="port" code="Pprt" type="integer" access="r" description="The port this account is connected to" />
143 <property name="status" code="Csts" type="status" access="rw" description="The current status on the account.">
144 <cocoa key="statusState" />
145 </property>
146 <property name="status type" code="Psts" type="status types" access="rw" description="The type of the current status. Setting this creates a temporary status.">
147 <cocoa key="scriptingStatusType" />
148 </property>
149 <property name="status message" code="Pasm" type="rich text" access="rw" description="The message associated with the current status. Setting this creates a temporary status.">
150 <cocoa key="scriptingStatusMessage" />
151 </property>
152 <property name="image" code="Pimg" type="TIFF picture" access="rw" description="The image associated with this account.">
153 <cocoa key="userIconData" />
154 </property>
155 <element type="contact" />
157 <responds-to name="go online">
158 <cocoa method="scriptingGoOnline:"/>
159 </responds-to>
160 <responds-to name="go available">
161 <cocoa method="scriptingGoAvailable:"/>
162 </responds-to>
163 <responds-to name="go offline">
164 <cocoa method="scriptingGoOffline:"/>
165 </responds-to>
166 <responds-to name="go away">
167 <cocoa method="scriptingGoAway:"/>
168 </responds-to>
169 <responds-to name="go invisible">
170 <cocoa method="scriptingGoInvisible:"/>
171 </responds-to>
172 </class>
173 <class name="contact" code="Ccnt" description="A contact">
174 <cocoa class="AIListContact" />
175 <property name="account" code="Pacc" type="account" access="r" description="The account associated with this contact" />
176 <property name="name" code="pnam" type="text" access="r" description="The name of this contact">
177 <cocoa key="UID" />
178 </property>
179 <property name="display name" code="Pdnm" type="text" access="rw" description="The display name or alias associated with this contact." />
180 <property name="notes" code="Pnts" type="text" access="rw" description="The user-defined notes for this contact."/>
181 <property name="idle time" code="Pidl" type="integer" access="r" description="The time this contact has been idle." />
182 <property name="status type" code="Psts" type="status types" access="r" description="The current status of this contact">
183 <cocoa key="scriptingStatusType" />
184 </property>
185 <property name="status message" code="Pstm" type="rich text" access="r" description="The custom status message for this contact.">
186 <cocoa key="scriptingStatusMessage" />
187 </property>
188 <property name="image" code="Pimg" type="TIFF picture" access="rw" description="The image associated with this contact.">
189 <cocoa key="userIconData" />
190 </property>
191 </class>
192 <class name="status" plural="statuses" code="Csts" description="A saved status in Adium">
193 <cocoa class="AIStatus" />
194 <property name="title" code="pnam" type="text" access="r" description="The title of the status.">
195 <cocoa key="scriptingTitle" />
196 </property>
197 <property name="status type" code="Psts" type="status types" access="r" description="The type of this status.">
198 <cocoa key="statusTypeApplescript"/>
199 </property>
200 <property name="message" code="Pstm" type="rich text" access="r" description="The custom status message.">
201 <cocoa key="scriptingMessage"/>
202 </property>
203 <property name="autoreply" code="Paut" type="rich text" access="r" description="The message to auto reply">
204 <cocoa key="scriptingAutoreply"/>
205 </property>
206 <property name="id" code="ID " type="integer" access="r" description="The unique ID of the status">
207 <cocoa key="uniqueStatusID"/>
208 </property>
209 </class>
210 <command name="close" code="coreclos" description="Close a document.">
211 <cocoa class="NSCloseCommand"/>
212 <direct-parameter type="specifier" description="the document(s) or window(s) to close."/>
213 </command>
215 <command name="go online" code="Adumgoon" description="Changes the status of an account.">
216 <cocoa class="NSScriptCommand" />
217 <direct-parameter description="The account that should connect" type="account" />
218 <parameter name="with message" code="Pmsg" description="The custom status message." type="rich text" optional="yes">
219 <cocoa key="WithMessage"/>
220 </parameter>
221 </command>
222 <command name="go available" code="Adumgoav" description="Changes the status of an account.">
223 <cocoa class="NSScriptCommand" />
224 <direct-parameter description="The account that should become available" type="account" />
225 <parameter name="with message" code="Pmsg" description="The custom status message." type="rich text" optional="yes">
226 <cocoa key="WithMessage"/>
227 </parameter>
228 </command>
229 <command name="go offline" code="Adumgoof" description="Changes the status of an account.">
230 <cocoa class="NSScriptCommand" />
231 <direct-parameter description="The account that should disconnect" type="account" />
232 <parameter name="with message" code="Pmsg" description="The custom status message." type="rich text" optional="yes">
233 <cocoa key="WithMessage"/>
234 </parameter>
235 </command>
236 <command name="go away" code="Adumgoaw" description="Changes the status of an account.">
237 <cocoa class="NSScriptCommand" />
238 <direct-parameter description="The account that should go away" type="account" />
239 <parameter name="with message" code="Pmsg" description="The custom status message." type="rich text" optional="yes">
240 <cocoa key="WithMessage"/>
241 </parameter>
242 </command>
243 <command name="go invisible" code="Adumgoin" description="Changes the status of an account.">
244 <cocoa class="NSScriptCommand" />
245 <direct-parameter description="The account that should become invisible" type="account" />
246 <parameter name="with message" code="Pmsg" description="The custom status message." type="rich text" optional="yes">
247 <cocoa key="WithMessage"/>
248 </parameter>
249 </command>
250 <command name="count" code="corecnte" description="Return the number elements of a particular class within an object.">
251 <cocoa class="NSCountCommand"/>
252 <direct-parameter description="the object whose elements are to be counted" type="specifier"/>
253 <parameter name="each" code="kocl" description="The class of objects to be counted." type="type" optional="yes">
254 <cocoa key="ObjectClass"/>
255 </parameter>
256 <result description="the number of elements" type="integer"/>
257 </command>
258 <command name="delete" code="coredelo" description="Delete an object.">
259 <cocoa class="NSDeleteCommand"/>
260 <direct-parameter description="the object to delete" type="specifier"/>
261 </command>
262 <command name="exists" code="coredoex" description="Verify if an object exists.">
263 <cocoa class="NSExistsCommand"/>
264 <direct-parameter description="the object in question" type="specifier"/>
265 <result description="true if it exists, false if not" type="boolean"/>
266 </command>
267 <command name="make" code="corecrel" description="Make a new object.">
268 <cocoa class="AICreateCommand"/>
269 <parameter name="new" code="kocl" description="The class of the new object." type="type">
270 <cocoa key="ObjectClass"/>
271 </parameter>
272 <parameter name="at" code="insh" description="The location at which to insert the object." type="location specifier" optional="yes">
273 <cocoa key="Location"/>
274 </parameter>
275 <parameter name="with data" code="data" description="The initial data for the object." type="any" optional="yes">
276 <cocoa key="ObjectData"/>
277 </parameter>
278 <parameter name="with properties" code="prdt" description="The initial values for properties of the object." type="record" optional="yes">
279 <cocoa key="KeyDictionary"/>
280 </parameter>
281 <parameter name="with contacts" code="Pwct" description="The contacts needed for creating a chat or group." type="list of contact" optional="yes">
282 <cocoa key="withContacts"/>
283 </parameter>
284 <parameter name="new chat window" code="Pncw" description="If this is true, then a new chat window will be created when creating a chat." type="boolean" optional="yes">
285 <cocoa key="newChatWindow"/>
286 </parameter>
287 <result description="to the new object" type="specifier"/>
288 </command>
290 <command name="move" code="coremove" description="Move object(s) to a new location.">
291 <cocoa class="AIMoveCommand"/>
292 <direct-parameter type="specifier" description="the object(s) to move"/>
293 <parameter name="to" code="insh" type="location specifier" description="The new location for the object(s).">
294 <cocoa key="ToLocation"/>
295 </parameter>
296 <result type="specifier" description="the moved object(s)"/>
297 </command>
299 <command name="send" code="Adumsend" description="Send text or a file to some contact.">
300 <cocoa class="NSScriptCommand"/>
301 <direct-parameter type="chat" description="The chat that mimics the entry... yada yada"/>
302 <parameter name="message" code="Smsg" description="The message to send" type="text" optional="yes">
303 <cocoa key="message"/>
304 </parameter>
305 <parameter name="with file" code="Sfil" description="A file to attach" type="file" optional="yes">
306 <cocoa key="withFile"/>
307 </parameter>
308 </command>
309 </suite>
311 <suite name="Text Suite" code="TEXT" description="A set of basic classes for text processing.">
312 <cocoa name="NSTextSuite"/>
314 <value-type name="color" code="cRGB">
315 <cocoa class="NSColor"/>
316 </value-type>
318 <class name="rich text" plural="rich text" code="ricT" description="Rich (styled) text">
319 <cocoa class="NSTextStorage"/>
320 <!-- this "type" element and the ones that follow, while they
321 contradict the DTD, are NOT errors. Cocoa Scripting in 10.4 uses them to accomplish certain type conversions. -->
322 <type type="text"/>
323 <property name="color" code="colr" type="color" description="The color of the first character.">
324 <cocoa key="foregroundColor"/>
325 </property>
326 <property name="font" code="font" type="text" description="The name of the font of the first character.">
327 <cocoa key="fontName"/>
328 </property>
329 <property name="size" code="ptsz" type="integer" description="The size in points of the first character.">
330 <cocoa key="fontSize"/>
331 </property>
332 <element type="character"/>
333 <element type="paragraph"/>
334 <element type="word"/>
335 <element type="attribute run"/>
336 <element type="attachment"/>
337 </class>
339 <class name="character" code="cha " description="This subdivides the text into characters.">
340 <cocoa class="NSTextStorage"/>
341 <type type="text"/>
342 <property name="color" code="colr" type="color" description="The color of the first character.">
343 <cocoa key="foregroundColor"/>
344 </property>
345 <property name="font" code="font" type="text" description="The name of the font of the first character.">
346 <cocoa key="fontName"/>
347 </property>
348 <property name="size" code="ptsz" type="integer" description="The size in points of the first character.">
349 <cocoa key="fontSize"/>
350 </property>
351 <element type="character"/>
352 <element type="paragraph"/>
353 <element type="word"/>
354 <element type="attribute run"/>
355 <element type="attachment"/>
356 </class>
358 <class name="paragraph" code="cpar" description="This subdivides the text into paragraphs.">
359 <cocoa class="NSTextStorage"/>
360 <type type="text"/>
361 <property name="color" code="colr" type="color" description="The color of the first character.">
362 <cocoa key="foregroundColor"/>
363 </property>
364 <property name="font" code="font" type="text" description="The name of the font of the first character.">
365 <cocoa key="fontName"/>
366 </property>
367 <property name="size" code="ptsz" type="integer" description="The size in points of the first character.">
368 <cocoa key="fontSize"/>
369 </property>
370 <element type="character"/>
371 <element type="paragraph"/>
372 <element type="word"/>
373 <element type="attribute run"/>
374 <element type="attachment"/>
375 </class>
377 <class name="word" code="cwor" description="This subdivides the text into words.">
378 <cocoa class="NSTextStorage"/>
379 <type type="text"/>
380 <property name="color" code="colr" type="color" description="The color of the first character.">
381 <cocoa key="foregroundColor"/>
382 </property>
383 <property name="font" code="font" type="text" description="The name of the font of the first character.">
384 <cocoa key="fontName"/>
385 </property>
386 <property name="size" code="ptsz" type="integer" description="The size in points of the first character.">
387 <cocoa key="fontSize"/>
388 </property>
389 <element type="character"/>
390 <element type="paragraph"/>
391 <element type="word"/>
392 <element type="attribute run"/>
393 <element type="attachment"/>
394 </class>
396 <class name="attribute run" code="catr" description="This subdivides the text into chunks that all have the same attributes.">
397 <cocoa class="NSTextStorage"/>
398 <type type="text"/>
399 <property name="color" code="colr" type="color" description="The color of the first character.">
400 <cocoa key="foregroundColor"/>
401 </property>
402 <property name="font" code="font" type="text" description="The name of the font of the first character.">
403 <cocoa key="fontName"/>
404 </property>
405 <property name="size" code="ptsz" type="integer" description="The size in points of the first character.">
406 <cocoa key="fontSize"/>
407 </property>
408 <element type="character"/>
409 <element type="paragraph"/>
410 <element type="word"/>
411 <element type="attribute run"/>
412 <element type="attachment"/>
413 </class>
415 <class name="attachment" code="atts" inherits="rich text" description="Represents an inline text attachment. This class is used mainly for make commands.">
416 <cocoa class="NSAttachmentTextStorage"/>
417 <property name="file name" code="atfn" type="text" description="The path to the file for the attachment">
418 <cocoa key="filename"/>
419 </property>
420 </class>
422 </suite>
424 </dictionary>