Newer
Older
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://kwarc.info/sally/comm/frames"
elementFormDefault="qualified">
<xs:element name="ShowSallyFrameMenu">
<xs:annotation>
<xs:documentation>The ShowSallyFrameMenu message is sent by a SALLY
client to SALLY and requests it to show which services are
applicable to the current context. This window will placed at
position (posx, posy)
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="posx" type="xs:int" />
<xs:element name="posy" type="xs:int" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="ListenDocLevelServices">
</xs:element>
<xs:element name="NewDocLevelService">
<xs:complexType>
<xs:sequence>
<xs:element name="id" type="xs:string"></xs:element>
<xs:element name="type" type="xs:string"></xs:element>
<xs:element name="name" type="xs:string"></xs:element>
<xs:element name="icon" type="xs:string"></xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="RemoveDocLevelService">
<xs:complexType>
<xs:sequence>
<xs:element name="id" type="xs:string"></xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="ExecDocLevelService">
<xs:complexType>
<xs:sequence>
<xs:element name="id" type="xs:string"></xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>