xref: /trunk/main/sw/source/ui/dialog/wordcountdialog.src (revision 31d35622ee258902b338f9bfdfb2a2ed84b7bb6c)
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements.  See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership.  The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License.  You may obtain a copy of the License at
10 *
11 *   http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied.  See the License for the
17 * specific language governing permissions and limitations
18 * under the License.
19 *
20 *************************************************************/
21
22#include <helpid.h>
23#include <dialog.hrc>
24#include <wordcountdialog.hrc>
25
26ModalDialog DLG_WORDCOUNT
27{
28    HelpID = HID_DLG_WORDCOUNT ;
29    OutputSize = TRUE ;
30    SVLook = TRUE ;
31    Size = MAP_APPFONT ( 170, 108 ) ;
32    Text [ en-US ] = "Word Count" ;
33    Moveable = TRUE ;
34
35    FixedLine FL_CURRENT
36    {
37        Pos = MAP_APPFONT ( 6, 3 ) ;
38        Size = MAP_APPFONT ( 158, 8 ) ;
39        Text [ en-US ] = "Current selection" ;
40    };
41    FixedText FT_CURRENTWORD
42    {
43        Pos = MAP_APPFONT ( 12, 14 ) ;
44        Size = MAP_APPFONT ( 80, 8 ) ;
45        Text [ en-US ] = "Words:" ;
46    };
47    FixedText FI_CURRENTWORD
48    {
49        Pos = MAP_APPFONT ( 111, 14 ) ;
50        Size = MAP_APPFONT ( 50, 8 ) ;
51        Right = TRUE ;
52    };
53    FixedText FT_CURRENTCHARACTER
54    {
55        Pos = MAP_APPFONT ( 12, 26 ) ;
56        Size = MAP_APPFONT ( 80, 8 ) ;
57        Text [ en-US ] = "Characters:" ;
58    };
59    FixedText FI_CURRENTCHARACTER
60    {
61        Pos = MAP_APPFONT ( 111, 26 ) ;
62        Size = MAP_APPFONT ( 50, 8 ) ;
63        Right = TRUE ;
64    };
65    FixedLine FL_DOC
66    {
67        Pos = MAP_APPFONT ( 6, 40 ) ;
68        Size = MAP_APPFONT ( 158, 8 ) ;
69        Text [ en-US ] = "Whole document" ;
70    };
71    FixedText FT_DOCWORD
72    {
73        Pos = MAP_APPFONT ( 12, 51 ) ;
74        Size = MAP_APPFONT ( 80, 8 ) ;
75        Text [ en-US ] = "Words:" ;
76    };
77    FixedText FI_DOCWORD
78    {
79        Pos = MAP_APPFONT ( 111, 51 ) ;
80        Size = MAP_APPFONT ( 50, 8 ) ;
81        Right = TRUE ;
82    };
83    FixedText FT_DOCCHARACTER
84    {
85        Pos = MAP_APPFONT ( 12, 63 ) ;
86        Size = MAP_APPFONT ( 80, 8 ) ;
87        Text [ en-US ] = "Characters:" ;
88    };
89    FixedText FI_DOCCHARACTER
90    {
91        Pos = MAP_APPFONT ( 111, 63 ) ;
92        Size = MAP_APPFONT ( 50, 8 ) ;
93        Right = TRUE ;
94    };
95    FixedLine FL_BOTTOM
96    {
97        Pos = MAP_APPFONT ( 6, 77 ) ;
98        Size = MAP_APPFONT ( 158, 8 ) ;
99    };
100    OKButton PB_OK
101    {
102        Pos = MAP_APPFONT ( 61, 88 ) ;
103        Size = MAP_APPFONT ( 50, 14 ) ;
104        DefButton = TRUE ;
105    };
106    HelpButton PB_HELP
107    {
108        Pos = MAP_APPFONT ( 114, 88 ) ;
109        Size = MAP_APPFONT ( 50, 14 ) ;
110    };
111};
112
113// ********************************************************************** EOF
114