xref: /AOO41X/main/sw/source/ui/dialog/docstdlg.src (revision 8660f102e0dedad7df9a3fe0f3e5d0f91bcf072b)
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
23
24#include "globals.hrc"
25#include "docstdlg.hrc"
26#include "helpid.h"
27 // #define TP_DOC_STAT 256
28TabPage TP_DOC_STAT
29{
30    HelpID = HID_DOC_STAT ;
31    Hide = TRUE;
32    Size = MAP_APPFONT ( 260 , 185 ) ;
33    FixedText FT_PAGE
34    {
35        Pos = MAP_APPFONT ( 6 , 6 ) ;
36        Size = MAP_APPFONT ( 90 , 8 ) ;
37        Text [ en-US ] = "Number of Pages:" ;
38        Left = TRUE ;
39    };
40    FixedText FT_TABLE
41    {
42        Pos = MAP_APPFONT ( 6 , 18 ) ;
43        Size = MAP_APPFONT ( 90 , 8 ) ;
44        Text [ en-US ] = "Number of Tables:" ;
45        Left = TRUE ;
46    };
47    FixedText FT_GRF
48    {
49        Pos = MAP_APPFONT ( 6 , 30 ) ;
50        Size = MAP_APPFONT ( 90 , 8 ) ;
51        Text [ en-US ] = "Number of Graphics:" ;
52        Left = TRUE ;
53    };
54    FixedText FT_OLE
55    {
56        Pos = MAP_APPFONT ( 6 , 42 ) ;
57        Size = MAP_APPFONT ( 90 , 8 ) ;
58        Text [ en-US ] = "Number of OLE Objects:" ;
59        Left = TRUE ;
60    };
61    FixedText FT_PARA
62    {
63        Pos = MAP_APPFONT ( 6 , 54 ) ;
64        Size = MAP_APPFONT ( 90 , 8 ) ;
65        Text [ en-US ] = "Number of Paragraphs:" ;
66        Left = TRUE ;
67    };
68    FixedText FT_WORD
69    {
70        Pos = MAP_APPFONT ( 6 , 68 ) ;
71        Size = MAP_APPFONT ( 90 , 8 ) ;
72        Text [ en-US ] = "Number of Words:" ;
73        Left = TRUE ;
74    };
75    FixedText FT_CHAR
76    {
77        Pos = MAP_APPFONT ( 6 , 82 ) ;
78        Size = MAP_APPFONT ( 90 , 8 ) ;
79        Text [ en-US ] = "Number of Characters:" ;
80        Left = TRUE ;
81    };
82    FixedText FT_LINE
83    {
84        Pos = MAP_APPFONT ( 6 , 96 ) ;
85        Size = MAP_APPFONT ( 90 , 8 ) ;
86        Text [ en-US ] = "Number of Lines:" ;
87    };
88    FixedText FT_PAGE_COUNT
89    {
90        Pos = MAP_APPFONT ( 114 , 6 ) ;
91        Size = MAP_APPFONT ( 27 , 8 ) ;
92        Left = TRUE ;
93    };
94    FixedText FT_TABLE_COUNT
95    {
96        Pos = MAP_APPFONT ( 114 , 18 ) ;
97        Size = MAP_APPFONT ( 27 , 8 ) ;
98        Left = TRUE ;
99    };
100    FixedText FT_GRF_COUNT
101    {
102        Pos = MAP_APPFONT ( 114 , 30 ) ;
103        Size = MAP_APPFONT ( 27 , 8 ) ;
104        Left = TRUE ;
105    };
106    FixedText FT_OLE_COUNT
107    {
108        Pos = MAP_APPFONT ( 114 , 42 ) ;
109        Size = MAP_APPFONT ( 27 , 8 ) ;
110        Left = TRUE ;
111    };
112    FixedText FT_PARA_COUNT
113    {
114        Pos = MAP_APPFONT ( 114 , 54 ) ;
115        Size = MAP_APPFONT ( 27 , 8 ) ;
116        Left = TRUE ;
117    };
118    FixedText FT_WORD_COUNT
119    {
120        Pos = MAP_APPFONT ( 114 , 68 ) ;
121        Size = MAP_APPFONT ( 27 , 8 ) ;
122        Left = TRUE ;
123    };
124    FixedText FT_CHAR_COUNT
125    {
126        Pos = MAP_APPFONT ( 114 , 82 ) ;
127        Size = MAP_APPFONT ( 27 , 8 ) ;
128        Left = TRUE ;
129    };
130    FixedText FT_LINE_COUNT
131    {
132        Pos = MAP_APPFONT ( 114 , 96 ) ;
133        Size = MAP_APPFONT ( 27 , 8 ) ;
134        Left = TRUE ;
135        Text = "..." ;
136    };
137    PushButton PB_PDATE
138    {
139        HelpID = "sw:PushButton:TP_DOC_STAT:PB_PDATE";
140        Pos = MAP_APPFONT ( 204 , 94 ) ;
141        Size = MAP_APPFONT ( 50 , 14 ) ;
142        Text [ en-US ] = "~Update" ;
143    };
144};
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181