xref: /trunk/main/officecfg/registry/schema/org/openoffice/Office/Views.xcs (revision d41c82aed43ad4a58d6e39ecd99937fe437857e8)
1<?xml version="1.0" encoding="UTF-8"?>
2<!--***********************************************************
3 *
4 * Licensed to the Apache Software Foundation (ASF) under one
5 * or more contributor license agreements.  See the NOTICE file
6 * distributed with this work for additional information
7 * regarding copyright ownership.  The ASF licenses this file
8 * to you under the Apache License, Version 2.0 (the
9 * "License"); you may not use this file except in compliance
10 * with the License.  You may obtain a copy of the License at
11 *
12 *   http://www.apache.org/licenses/LICENSE-2.0
13 *
14 * Unless required by applicable law or agreed to in writing,
15 * software distributed under the License is distributed on an
16 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17 * KIND, either express or implied.  See the License for the
18 * specific language governing permissions and limitations
19 * under the License.
20 *
21 ***********************************************************-->
22
23
24<!DOCTYPE oor:component-schema SYSTEM "../../../../component-schema.dtd">
25<oor:component-schema xmlns:oor="http://openoffice.org/2001/registry" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" oor:name="Views" oor:package="org.openoffice.Office" xml:lang="en-US">
26    <info>
27        <author>AS</author>
28        <desc>Contains persistent information about opened dialogs, windows, tab pages, and so on.</desc>
29    </info>
30    <templates>
31        <group oor:name="DialogType">
32            <info>
33                <desc>Contains the persistent data for a general office dialog.</desc>
34            </info>
35            <prop oor:name="WindowState" oor:type="xs:string">
36                <info>
37                    <desc>Includes information (position,size, and states) about the used vcl window.</desc>
38                </info>
39            </prop>
40            <group oor:name="UserData" oor:extensible="true">
41                <info>
42                    <desc>Denotes an additional field for arbitrary data. There is no special semantic associated with this field. Application is to be determined by the user.</desc>
43                </info>
44            </group>
45        </group>
46        <group oor:name="TabDialogType">
47            <info>
48                <desc>Contains the persistent data for a special tab dialog.</desc>
49            </info>
50            <prop oor:name="WindowState" oor:type="xs:string">
51                <info>
52                    <desc>Includes information (position,size, and states) about the used vcl window.</desc>
53                </info>
54            </prop>
55            <prop oor:name="PageID" oor:type="xs:int">
56                <info>
57                    <desc>Represents the number of an active tab page inside a dialog.</desc>
58                </info>
59            </prop>
60            <group oor:name="UserData" oor:extensible="true">
61                <info>
62                    <desc>Denotes an additional field for arbitrary data. There is no special semantic associated with this field. Application is to be determined by the user.</desc>
63                </info>
64            </group>
65        </group>
66        <group oor:name="TabPageType">
67            <info>
68                <desc>Contains the persistent data for a tab page.</desc>
69            </info>
70            <prop oor:name="WindowState" oor:type="xs:string">
71                <info>
72                    <desc>Includes information (position,size, and states) about the used vcl window.</desc>
73                </info>
74            </prop>
75            <group oor:name="UserData" oor:extensible="true">
76                <info>
77                    <desc>Denotes an additional field for arbitrary data. There is no special semantic associated with this field. Application is to be determined by the user.</desc>
78                </info>
79            </group>
80        </group>
81        <group oor:name="WindowType">
82            <info>
83                <desc>Contains the persistent data for a general office window.</desc>
84            </info>
85            <prop oor:name="WindowState" oor:type="xs:string">
86                <info>
87                    <desc>Includes information (position,size, and states) about the used vcl window.</desc>
88                </info>
89            </prop>
90            <prop oor:name="Visible" oor:type="xs:boolean">
91                <info>
92                    <desc>Makes window visible.</desc>
93                </info>
94            </prop>
95            <group oor:name="UserData" oor:extensible="true">
96                <info>
97                    <desc>Denotes an additional field for arbitrary data. There is no special semantic associated with this field. Application is to be determined by the user.</desc>
98                </info>
99            </group>
100        </group>
101    </templates>
102    <component>
103        <set oor:name="Dialogs" oor:node-type="DialogType">
104            <info>
105                <desc>Lists persistent dialog states.</desc>
106            </info>
107        </set>
108        <set oor:name="TabDialogs" oor:node-type="TabDialogType">
109            <info>
110                <desc>Lists persistent tab dialog states.</desc>
111            </info>
112        </set>
113        <set oor:name="TabPages" oor:node-type="TabPageType">
114            <info>
115                <desc>Lists persistent tab page states.</desc>
116            </info>
117        </set>
118        <set oor:name="Windows" oor:node-type="WindowType">
119            <info>
120                <desc>Lists persistent window states.</desc>
121            </info>
122        </set>
123    </component>
124</oor:component-schema>
125