1cdf0e10cSrcweir<?xml version="1.0" encoding="UTF-8"?>
27fced07dSAndrew Rist<!--***********************************************************
3*cd9a0925Smseidel *
47fced07dSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
57fced07dSAndrew Rist * or more contributor license agreements.  See the NOTICE file
67fced07dSAndrew Rist * distributed with this work for additional information
77fced07dSAndrew Rist * regarding copyright ownership.  The ASF licenses this file
87fced07dSAndrew Rist * to you under the Apache License, Version 2.0 (the
97fced07dSAndrew Rist * "License"); you may not use this file except in compliance
107fced07dSAndrew Rist * with the License.  You may obtain a copy of the License at
11*cd9a0925Smseidel *
127fced07dSAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
13*cd9a0925Smseidel *
147fced07dSAndrew Rist * Unless required by applicable law or agreed to in writing,
157fced07dSAndrew Rist * software distributed under the License is distributed on an
167fced07dSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
177fced07dSAndrew Rist * KIND, either express or implied.  See the License for the
187fced07dSAndrew Rist * specific language governing permissions and limitations
197fced07dSAndrew Rist * under the License.
20*cd9a0925Smseidel *
217fced07dSAndrew Rist ***********************************************************-->
227fced07dSAndrew Rist
237fced07dSAndrew Rist
24cdf0e10cSrcweir<!DOCTYPE oor:component-schema SYSTEM "../../../../../component-schema.dtd">
25cdf0e10cSrcweir<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="WindowState" oor:package="org.openoffice.Office.UI" xml:lang="en-US">
26*cd9a0925Smseidel	<info>
27cdf0e10cSrcweir		<desc>Contains state information of all dockable user interface elements based on a Window class.</desc>
28cdf0e10cSrcweir	</info>
29cdf0e10cSrcweir	<templates>
30*cd9a0925Smseidel		<group oor:name="WindowStateType">
31*cd9a0925Smseidel			<info>
32*cd9a0925Smseidel				<desc>Provides a mapping between commands and their textual representation on the user interface.</desc>
33*cd9a0925Smseidel			</info>
34*cd9a0925Smseidel			<prop oor:name="Locked" oor:type="xs:boolean">
35*cd9a0925Smseidel				<info>
36*cd9a0925Smseidel					<desc>A locked user interface element cannot be moved or undocked by the user. This property is only active when the user interface element is in a docked state.</desc>
37*cd9a0925Smseidel				</info>
38*cd9a0925Smseidel				<value>false</value>
39*cd9a0925Smseidel			</prop>
40*cd9a0925Smseidel			<prop oor:name="Docked" oor:type="xs:boolean">
41*cd9a0925Smseidel				<info>
42*cd9a0925Smseidel					<desc>Specifies if the user interface element is currently docked.</desc>
43*cd9a0925Smseidel				</info>
44*cd9a0925Smseidel				<value>true</value>
45*cd9a0925Smseidel			</prop>
46*cd9a0925Smseidel			<prop oor:name="Visible" oor:type="xs:boolean">
47*cd9a0925Smseidel				<info>
48*cd9a0925Smseidel					<desc>Specifies if the user interface element is visible.</desc>
49*cd9a0925Smseidel				</info>
50*cd9a0925Smseidel			</prop>
51*cd9a0925Smseidel			<prop oor:name="ContextSensitive" oor:type="xs:boolean">
52*cd9a0925Smseidel				<info>
53*cd9a0925Smseidel					<desc>Specifies if the user interface element is context sensitive. This controls if the Office shows the user interface element </desc>
54*cd9a0925Smseidel				</info>
55*cd9a0925Smseidel				<value>false</value>
56*cd9a0925Smseidel			</prop>
57*cd9a0925Smseidel			<prop oor:name="HideFromToolbarMenu" oor:type="xs:boolean">
58*cd9a0925Smseidel				<info>
59*cd9a0925Smseidel					<desc>Specifies if a toolbar should not be shown inside the View - Toolbars menu.</desc>
60*cd9a0925Smseidel				</info>
61*cd9a0925Smseidel				<value>false</value>
62*cd9a0925Smseidel			</prop>
63*cd9a0925Smseidel			<prop oor:name="DockingArea" oor:type="xs:int">
64*cd9a0925Smseidel				<info>
65*cd9a0925Smseidel					<desc>Specifies the docking area to which a user interface element belongs to. Only valid if 'Docked' is true. Top docking area=0, bottom=1, left=2, right=3.</desc>
66*cd9a0925Smseidel				</info>
67*cd9a0925Smseidel			</prop>
68*cd9a0925Smseidel			<prop oor:name="DockPos" oor:type="xs:string">
69*cd9a0925Smseidel				<info>
70*cd9a0925Smseidel					<desc>Specifies the position of a docked user interface element. For top/bottom docked elements X describes a pixel position and Y the row number, left/right docked elements uses X for the column and Y for the pixel position. X and Y coordinates must be split by a comma.</desc>
71*cd9a0925Smseidel				</info>
72*cd9a0925Smseidel			</prop>
73*cd9a0925Smseidel			<prop oor:name="DockSize" oor:type="xs:string">
74*cd9a0925Smseidel				<info>
75*cd9a0925Smseidel					<desc>Not used.</desc>
76*cd9a0925Smseidel				</info>
77*cd9a0925Smseidel			</prop>
78*cd9a0925Smseidel			<prop oor:name="Pos" oor:type="xs:string">
79*cd9a0925Smseidel				<info>
80*cd9a0925Smseidel					<desc>Specifies the position of a floating user interface element in pixel. X and Y coordinates must be split by a comma and are relative to the document frame.</desc>
81*cd9a0925Smseidel				</info>
82*cd9a0925Smseidel			</prop>
83*cd9a0925Smseidel			<prop oor:name="Size" oor:type="xs:string">
84*cd9a0925Smseidel				<info>
85*cd9a0925Smseidel					<desc>Specifies the size of a floating user interface element in pixel. The real size can differ if the layout manager decides to resize it due to current circumstances. Width and height must be split by a comma.</desc>
86*cd9a0925Smseidel				</info>
87*cd9a0925Smseidel			</prop>
88*cd9a0925Smseidel			<prop oor:name="UIName" oor:type="xs:string" oor:localized="true">
89*cd9a0925Smseidel				<info>
90*cd9a0925Smseidel					<desc>Specifies the user interface element name. It is used for floating user interface elements to set the title and for the bubble help.</desc>
91*cd9a0925Smseidel				</info>
92*cd9a0925Smseidel			</prop>
93*cd9a0925Smseidel			<prop oor:name="ImageURL" oor:type="xs:string">
94*cd9a0925Smseidel				<info>
95*cd9a0925Smseidel					<desc>Specifies the URL of an image to associate with the user interface element. Any URL scheme supported by the com.sun.star.graphic.GraphicProvider service
96*cd9a0925Smseidel					is suitable here.</desc>
97*cd9a0925Smseidel				</info>
98*cd9a0925Smseidel				<value></value>
99*cd9a0925Smseidel			</prop>
100*cd9a0925Smseidel			<prop oor:name="HelpURL" oor:type="xs:string">
101*cd9a0925Smseidel				<info>
102*cd9a0925Smseidel					<desc>
103*cd9a0925Smseidel						Specifies the help URL of the tool panel.
104*cd9a0925Smseidel					</desc>
105*cd9a0925Smseidel				</info>
106*cd9a0925Smseidel				<value></value>
107*cd9a0925Smseidel			</prop>
108*cd9a0925Smseidel			<prop oor:name="InternalState" oor:type="xs:int">
109*cd9a0925Smseidel				<info>
110*cd9a0925Smseidel					<desc>Specifies an internal state for the user interface element. Please don't change this value, it describes an internal value.</desc>
111*cd9a0925Smseidel				</info>
112*cd9a0925Smseidel			</prop>
113*cd9a0925Smseidel			<prop oor:name="Style" oor:type="xs:int">
114*cd9a0925Smseidel				<info>
115*cd9a0925Smseidel					<desc>Specifies the style of a toolbar. This property is only used by toolbar user interface elements. 0 = symbol buttons, 1 = text buttons, 2 = symbols+text buttons</desc>
116*cd9a0925Smseidel				</info>
117*cd9a0925Smseidel				<value>0</value>
118*cd9a0925Smseidel			</prop>
119*cd9a0925Smseidel			<prop oor:name="NoClose" oor:type="xs:boolean">
120*cd9a0925Smseidel				<info>
121*cd9a0925Smseidel					<desc>Specifies that a user interface element shouldn't have a closer. This property is only used by toolbars or floating window user interface elements.</desc>
122*cd9a0925Smseidel				</info>
123*cd9a0925Smseidel				<value>false</value>
124*cd9a0925Smseidel			</prop>
125*cd9a0925Smseidel			<prop oor:name="SoftClose" oor:type="xs:boolean">
126*cd9a0925Smseidel				<info>
127*cd9a0925Smseidel					<desc>Specifies that a user interface element shouldn't be closed forever. This is useful for context sensitive ui elements which must be visible whenever their context is active. This property is only used by toolbars or floating window user interface elements.</desc>
128*cd9a0925Smseidel				</info>
129*cd9a0925Smseidel				<value>false</value>
130*cd9a0925Smseidel			</prop>
131*cd9a0925Smseidel			<prop oor:name="ContextActive" oor:type="xs:boolean">
132*cd9a0925Smseidel				<info>
133*cd9a0925Smseidel					<desc>Specifies if a context sensitive user interface element is currently bound to its context. This property can be used to disable context sensitivity without losing the information that a user interface element is normally context sensitive.</desc>
134*cd9a0925Smseidel				</info>
135*cd9a0925Smseidel				<value>true</value>
136*cd9a0925Smseidel			</prop>
137*cd9a0925Smseidel		</group>
138cdf0e10cSrcweir	</templates>
139cdf0e10cSrcweir	<component/>
140cdf0e10cSrcweir</oor:component-schema>
141