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"> <info> 26 <author>AS</author> 27 <desc >Contains persistent information about opened dialogs, windows, tab pages, and so on.</desc> 28 </info> 29 <templates> 30 <group oor:name="DialogType"> 31 <info> 32 <desc>Contains the persistent data for a general office dialog.</desc> 33 </info> 34 <prop oor:name="WindowState" oor:type="xs:string"> 35 <info> 36 <desc>Includes information (position,size, and states) about the used vcl window.</desc> 37 </info> 38 </prop> 39 <group oor:name="UserData" oor:extensible="true"> 40 <info> 41 <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> 42 </info> 43 </group> 44 </group> 45 <group oor:name="TabDialogType"> 46 <info> 47 <desc>Contains the persistent data for a special tab dialog.</desc> 48 </info> 49 <prop oor:name="WindowState" oor:type="xs:string"> 50 <info> 51 <desc>Includes information (position,size, and states) about the used vcl window.</desc> 52 </info> 53 </prop> 54 <prop oor:name="PageID" oor:type="xs:int"> 55 <info> 56 <desc>Represents the number of an active tab page inside a dialog.</desc> 57 </info> 58 </prop> 59 <group oor:name="UserData" oor:extensible="true"> 60 <info> 61 <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> 62 </info> 63 </group> 64 </group> 65 <group oor:name="TabPageType"> 66 <info> 67 <desc>Contains the persistent data for a tab page.</desc> 68 </info> 69 <prop oor:name="WindowState" oor:type="xs:string"> 70 <info> 71 <desc>Includes information (position,size, and states) about the used vcl window.</desc> 72 </info> 73 </prop> 74 <group oor:name="UserData" oor:extensible="true"> 75 <info> 76 <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> 77 </info> 78 </group> 79 </group> 80 <group oor:name="WindowType"> 81 <info> 82 <desc>Contains the persistent data for a general office window.</desc> 83 </info> 84 <prop oor:name="WindowState" oor:type="xs:string"> 85 <info> 86 <desc>Includes information (position,size, and states) about the used vcl window.</desc> 87 </info> 88 </prop> 89 <prop oor:name="Visible" oor:type="xs:boolean"> 90 <info> 91 <desc>Makes window visible.</desc> 92 </info> 93 </prop> 94 <group oor:name="UserData" oor:extensible="true"> 95 <info> 96 <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> 97 </info> 98 </group> 99 </group> 100 </templates> 101 <component> 102 <set oor:name="Dialogs" oor:node-type="DialogType"> 103 <info> 104 <desc>Lists persistent dialog states.</desc> 105 </info> 106 </set> 107 <set oor:name="TabDialogs" oor:node-type="TabDialogType"> 108 <info> 109 <desc>Lists persistent tab dialog states.</desc> 110 </info> 111 </set> 112 <set oor:name="TabPages" oor:node-type="TabPageType"> 113 <info> 114 <desc>Lists persistent tab page states.</desc> 115 </info> 116 </set> 117 <set oor:name="Windows" oor:node-type="WindowType"> 118 <info> 119 <desc>Lists persistent window states.</desc> 120 </info> 121 </set> 122 </component> 123</oor:component-schema> 124 125 126 127 128 129 130 131 132