1<?xml version="1.0" encoding="UTF-8"?>
2
3<modaldialog xmlns="http://openoffice.org/2007/layout"
4	     xmlns:cnt="http://openoffice.org/2007/layout/container"
5	     help-id="HID_DLG_WORDCOUNT"
6	     id="dialog"
7	     sizeable="true" moveable="true" optimumsize="true"
8	     has_border="true" sv-look="true" title="Word Count">
9    <vbox border="5" spacing="5">
10        <fixedline id="FL_CURRENT" text="Current selection"/>
11        <hbox>
12	    <fixedtext id="FT_CURRENTWORD" label="Words:" cnt:padding="13"/>
13	    <fixedinfo id="FI_CURRENTWORD" right="true" label="0" cnt:padding="13"/>
14        </hbox>
15        <hbox>
16	    <fixedtext id="FT_CURRENTCHARACTER" label="Characters:" cnt:padding="13"/>
17	    <fixedinfo id="FI_CURRENTCHARACTER" right="true" label="00" cnt:padding="13"/>
18        </hbox>
19        <fixedline id="FL_DOC" text="Whole document"/>
20        <hbox>
21	    <fixedtext id="FT_DOCWORD" label="Words:" cnt:padding="13"/>
22	    <fixedinfo id="FI_DOCWORD" right="true" label="000" cnt:padding="13"/>
23        </hbox>
24        <hbox>
25	    <fixedtext id="FT_DOCCHARACTER" label="Characters:" cnt:padding="13"/>
26	    <fixedinfo id="FI_DOCCHARACTER" right="true" label="0000" cnt:padding="13"/>
27        </hbox>
28        <fixedline cnt:padding="1" id="FL_BOTTOM"/>
29        <hbox border="5">
30	    <flow homogeneous="true"/>
31	    <okbutton id="PB_OK" cnt:expand="false" defbutton="true"/>
32	    <helpbutton id="PB_HELP" cnt:expand="false"/>
33        </hbox>
34    </vbox>
35</modaldialog>
36