1<?xml version="1.0" encoding="UTF-8"?>
2<!--***********************************************************************
3 *
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 *
6 * Copyright 2000, 2010 Oracle and/or its affiliates.
7 *
8 * OpenOffice.org - a multi-platform office productivity suite
9 *
10 * This file is part of OpenOffice.org.
11 *
12 * OpenOffice.org is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU Lesser General Public License version 3
14 * only, as published by the Free Software Foundation.
15 *
16 * OpenOffice.org is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 * GNU Lesser General Public License version 3 for more details
20 * (a copy is included in the LICENSE file that accompanied this code).
21 *
22 * You should have received a copy of the GNU Lesser General Public License
23 * version 3 along with OpenOffice.org.  If not, see
24 * <http://www.openoffice.org/license.html>
25 * for a copy of the LGPLv3 License.
26 *
27 ************************************************************************ -->
28<!DOCTYPE oor:component-schema SYSTEM "../../../../component-schema.dtd">
29<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"> <info>
30		<author>AS</author>
31		<desc >Contains persistent information about opened dialogs, windows, tab pages, and so on.</desc>
32	</info>
33	<templates>
34		<group oor:name="DialogType">
35			<info>
36				<desc>Contains the persistent data for a general office dialog.</desc>
37			</info>
38			<prop oor:name="WindowState" oor:type="xs:string">
39				<info>
40					<desc>Includes information (position,size, and states) about the used vcl window.</desc>
41				</info>
42			</prop>
43			<group oor:name="UserData" oor:extensible="true">
44				<info>
45					<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>
46				</info>
47			</group>
48		</group>
49		<group oor:name="TabDialogType">
50			<info>
51				<desc>Contains the persistent data for a special tab dialog.</desc>
52			</info>
53			<prop oor:name="WindowState" oor:type="xs:string">
54				<info>
55					<desc>Includes information (position,size, and states) about the used vcl window.</desc>
56				</info>
57			</prop>
58			<prop oor:name="PageID" oor:type="xs:int">
59				<info>
60					<desc>Represents the number of an active tab page inside a dialog.</desc>
61				</info>
62			</prop>
63			<group oor:name="UserData" oor:extensible="true">
64				<info>
65					<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>
66				</info>
67			</group>
68		</group>
69		<group oor:name="TabPageType">
70			<info>
71				<desc>Contains the persistent data for a tab page.</desc>
72			</info>
73			<prop oor:name="WindowState" oor:type="xs:string">
74				<info>
75					<desc>Includes information (position,size, and states) about the used vcl window.</desc>
76				</info>
77			</prop>
78			<group oor:name="UserData" oor:extensible="true">
79				<info>
80					<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>
81				</info>
82			</group>
83		</group>
84		<group oor:name="WindowType">
85			<info>
86				<desc>Contains the persistent data for a general office window.</desc>
87			</info>
88			<prop oor:name="WindowState" oor:type="xs:string">
89				<info>
90					<desc>Includes information (position,size, and states) about the used vcl window.</desc>
91				</info>
92			</prop>
93			<prop oor:name="Visible" oor:type="xs:boolean">
94				<info>
95					<desc>Makes window visible.</desc>
96				</info>
97			</prop>
98			<group oor:name="UserData" oor:extensible="true">
99				<info>
100					<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>
101				</info>
102			</group>
103		</group>
104	</templates>
105	<component>
106		<set oor:name="Dialogs" oor:node-type="DialogType">
107			<info>
108				<desc>Lists persistent dialog states.</desc>
109			</info>
110		</set>
111		<set oor:name="TabDialogs" oor:node-type="TabDialogType">
112			<info>
113				<desc>Lists persistent tab dialog states.</desc>
114			</info>
115		</set>
116		<set oor:name="TabPages" oor:node-type="TabPageType">
117			<info>
118				<desc>Lists persistent tab page states.</desc>
119			</info>
120		</set>
121		<set oor:name="Windows" oor:node-type="WindowType">
122			<info>
123				<desc>Lists persistent window states.</desc>
124			</info>
125		</set>
126	</component>
127</oor:component-schema>
128
129
130
131
132
133
134
135
136