1cdf0e10cSrcweir<?xml version="1.0" encoding="UTF-8"?>
2*10544477SAndre Fischer<!--***********************************************************
3*10544477SAndre Fischer *
4*10544477SAndre Fischer * Licensed to the Apache Software Foundation (ASF) under one
5*10544477SAndre Fischer * or more contributor license agreements.  See the NOTICE file
6*10544477SAndre Fischer * distributed with this work for additional information
7*10544477SAndre Fischer * regarding copyright ownership.  The ASF licenses this file
8*10544477SAndre Fischer * to you under the Apache License, Version 2.0 (the
9*10544477SAndre Fischer * "License"); you may not use this file except in compliance
10*10544477SAndre Fischer * with the License.  You may obtain a copy of the License at
11*10544477SAndre Fischer *
12*10544477SAndre Fischer *   http://www.apache.org/licenses/LICENSE-2.0
13*10544477SAndre Fischer *
14*10544477SAndre Fischer * Unless required by applicable law or agreed to in writing,
15*10544477SAndre Fischer * software distributed under the License is distributed on an
16*10544477SAndre Fischer * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17*10544477SAndre Fischer * KIND, either express or implied.  See the License for the
18*10544477SAndre Fischer * specific language governing permissions and limitations
19*10544477SAndre Fischer * under the License.
20*10544477SAndre Fischer *
21*10544477SAndre Fischer ***********************************************************-->
22cdf0e10cSrcweir
23cdf0e10cSrcweir<modaldialog xmlns="http://openoffice.org/2007/layout"
24cdf0e10cSrcweir	     xmlns:cnt="http://openoffice.org/2007/layout/container"
25cdf0e10cSrcweir	     help-id="HID_DLG_WORDCOUNT"
26cdf0e10cSrcweir	     id="dialog"
27cdf0e10cSrcweir	     sizeable="true" moveable="true" optimumsize="true"
28cdf0e10cSrcweir	     has_border="true" sv-look="true" title="Word Count">
29cdf0e10cSrcweir    <vbox border="5" spacing="5">
30cdf0e10cSrcweir        <fixedline id="FL_CURRENT" text="Current selection"/>
31cdf0e10cSrcweir        <hbox>
32cdf0e10cSrcweir	    <fixedtext id="FT_CURRENTWORD" label="Words:" cnt:padding="13"/>
33cdf0e10cSrcweir	    <fixedinfo id="FI_CURRENTWORD" right="true" label="0" cnt:padding="13"/>
34cdf0e10cSrcweir        </hbox>
35cdf0e10cSrcweir        <hbox>
36cdf0e10cSrcweir	    <fixedtext id="FT_CURRENTCHARACTER" label="Characters:" cnt:padding="13"/>
37cdf0e10cSrcweir	    <fixedinfo id="FI_CURRENTCHARACTER" right="true" label="00" cnt:padding="13"/>
38cdf0e10cSrcweir        </hbox>
39cdf0e10cSrcweir        <fixedline id="FL_DOC" text="Whole document"/>
40cdf0e10cSrcweir        <hbox>
41cdf0e10cSrcweir	    <fixedtext id="FT_DOCWORD" label="Words:" cnt:padding="13"/>
42cdf0e10cSrcweir	    <fixedinfo id="FI_DOCWORD" right="true" label="000" cnt:padding="13"/>
43cdf0e10cSrcweir        </hbox>
44cdf0e10cSrcweir        <hbox>
45cdf0e10cSrcweir	    <fixedtext id="FT_DOCCHARACTER" label="Characters:" cnt:padding="13"/>
46cdf0e10cSrcweir	    <fixedinfo id="FI_DOCCHARACTER" right="true" label="0000" cnt:padding="13"/>
47cdf0e10cSrcweir        </hbox>
48cdf0e10cSrcweir        <fixedline cnt:padding="1" id="FL_BOTTOM"/>
49cdf0e10cSrcweir        <hbox border="5">
50cdf0e10cSrcweir	    <flow homogeneous="true"/>
51cdf0e10cSrcweir	    <okbutton id="PB_OK" cnt:expand="false" defbutton="true"/>
52cdf0e10cSrcweir	    <helpbutton id="PB_HELP" cnt:expand="false"/>
53cdf0e10cSrcweir        </hbox>
54cdf0e10cSrcweir    </vbox>
55cdf0e10cSrcweir</modaldialog>
56