xref: /trunk/main/sw/source/ui/dialog/docstdlg.src (revision cdf0e10c4e3984b49a9502b011690b615761d4a3)
1/*************************************************************************
2 *
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
6 *
7 * OpenOffice.org - a multi-platform office productivity suite
8 *
9 * This file is part of OpenOffice.org.
10 *
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
14 *
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
20 *
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org.  If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
25 *
26 ************************************************************************/
27
28#include "globals.hrc"
29#include "docstdlg.hrc"
30#include "helpid.h"
31 // #define TP_DOC_STAT 256
32TabPage TP_DOC_STAT
33{
34    HelpID = HID_DOC_STAT ;
35    Hide = TRUE;
36    Size = MAP_APPFONT ( 260 , 185 ) ;
37    FixedText FT_PAGE
38    {
39        Pos = MAP_APPFONT ( 6 , 6 ) ;
40        Size = MAP_APPFONT ( 90 , 8 ) ;
41        Text [ en-US ] = "Number of Pages:" ;
42        Left = TRUE ;
43    };
44    FixedText FT_TABLE
45    {
46        Pos = MAP_APPFONT ( 6 , 18 ) ;
47        Size = MAP_APPFONT ( 90 , 8 ) ;
48        Text [ en-US ] = "Number of Tables:" ;
49        Left = TRUE ;
50    };
51    FixedText FT_GRF
52    {
53        Pos = MAP_APPFONT ( 6 , 30 ) ;
54        Size = MAP_APPFONT ( 90 , 8 ) ;
55        Text [ en-US ] = "Number of Graphics:" ;
56        Left = TRUE ;
57    };
58    FixedText FT_OLE
59    {
60        Pos = MAP_APPFONT ( 6 , 42 ) ;
61        Size = MAP_APPFONT ( 90 , 8 ) ;
62        Text [ en-US ] = "Number of OLE Objects:" ;
63        Left = TRUE ;
64    };
65    FixedText FT_PARA
66    {
67        Pos = MAP_APPFONT ( 6 , 54 ) ;
68        Size = MAP_APPFONT ( 90 , 8 ) ;
69        Text [ en-US ] = "Number of Paragraphs:" ;
70        Left = TRUE ;
71    };
72    FixedText FT_WORD
73    {
74        Pos = MAP_APPFONT ( 6 , 68 ) ;
75        Size = MAP_APPFONT ( 90 , 8 ) ;
76        Text [ en-US ] = "Number of Words:" ;
77        Left = TRUE ;
78    };
79    FixedText FT_CHAR
80    {
81        Pos = MAP_APPFONT ( 6 , 82 ) ;
82        Size = MAP_APPFONT ( 90 , 8 ) ;
83        Text [ en-US ] = "Number of Characters:" ;
84        Left = TRUE ;
85    };
86    FixedText FT_LINE
87    {
88        Pos = MAP_APPFONT ( 6 , 96 ) ;
89        Size = MAP_APPFONT ( 90 , 8 ) ;
90        Text [ en-US ] = "Number of Lines:" ;
91    };
92    FixedText FT_PAGE_COUNT
93    {
94        Pos = MAP_APPFONT ( 114 , 6 ) ;
95        Size = MAP_APPFONT ( 27 , 8 ) ;
96        Left = TRUE ;
97    };
98    FixedText FT_TABLE_COUNT
99    {
100        Pos = MAP_APPFONT ( 114 , 18 ) ;
101        Size = MAP_APPFONT ( 27 , 8 ) ;
102        Left = TRUE ;
103    };
104    FixedText FT_GRF_COUNT
105    {
106        Pos = MAP_APPFONT ( 114 , 30 ) ;
107        Size = MAP_APPFONT ( 27 , 8 ) ;
108        Left = TRUE ;
109    };
110    FixedText FT_OLE_COUNT
111    {
112        Pos = MAP_APPFONT ( 114 , 42 ) ;
113        Size = MAP_APPFONT ( 27 , 8 ) ;
114        Left = TRUE ;
115    };
116    FixedText FT_PARA_COUNT
117    {
118        Pos = MAP_APPFONT ( 114 , 54 ) ;
119        Size = MAP_APPFONT ( 27 , 8 ) ;
120        Left = TRUE ;
121    };
122    FixedText FT_WORD_COUNT
123    {
124        Pos = MAP_APPFONT ( 114 , 68 ) ;
125        Size = MAP_APPFONT ( 27 , 8 ) ;
126        Left = TRUE ;
127    };
128    FixedText FT_CHAR_COUNT
129    {
130        Pos = MAP_APPFONT ( 114 , 82 ) ;
131        Size = MAP_APPFONT ( 27 , 8 ) ;
132        Left = TRUE ;
133    };
134    FixedText FT_LINE_COUNT
135    {
136        Pos = MAP_APPFONT ( 114 , 96 ) ;
137        Size = MAP_APPFONT ( 27 , 8 ) ;
138        Left = TRUE ;
139        Text = "..." ;
140    };
141    PushButton PB_PDATE
142    {
143        HelpID = "sw:PushButton:TP_DOC_STAT:PB_PDATE";
144        Pos = MAP_APPFONT ( 204 , 94 ) ;
145        Size = MAP_APPFONT ( 50 , 14 ) ;
146        Text [ en-US ] = "~Update" ;
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
182
183
184
185