summaryrefslogtreecommitdiff
path: root/svx/source/dialog/optgrid.src
blob: 306cb4214f20993afaa45f04d99d6ac6c8a03d04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   Licensed to the Apache Software Foundation (ASF) under one or more
 *   contributor license agreements. See the NOTICE file distributed
 *   with this work for additional information regarding copyright
 *   ownership. The ASF licenses this file to you under the Apache
 *   License, Version 2.0 (the "License"); you may not use this file
 *   except in compliance with the License. You may obtain a copy of
 *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
 */

#include <sfx2/sfx.hrc>
#include "helpid.hrc"
#include <svx/dialogs.hrc>
#include "optgrid.hrc"

TabPage RID_SVXPAGE_GRID
{
    HelpId = HID_OPTIONS_GRID ;
    SVLook = TRUE ;
    Hide = TRUE ;
    Size = MAP_APPFONT ( TP_WIDTH , TP_HEIGHT ) ;
    FixedLine GRP_DRAWGRID
    {
        Pos = MAP_APPFONT ( 6 , 3 ) ;
        Size = MAP_APPFONT ( 248 , 8 ) ;
        Text [ en-US ] = "Grid" ;
    };
    CheckBox CBX_USE_GRIDSNAP
    {
        HelpID = "svx:CheckBox:RID_SVXPAGE_GRID:CBX_USE_GRIDSNAP";
        Pos = MAP_APPFONT ( 12 , 14 ) ;
        Size = MAP_APPFONT ( 204 , 10 ) ;
        TabStop = TRUE ;
        Text [ en-US ] = "Sn~ap to grid" ;
    };
    CheckBox CBX_GRID_VISIBLE
    {
        HelpID = "svx:CheckBox:RID_SVXPAGE_GRID:CBX_GRID_VISIBLE";
        Pos = MAP_APPFONT ( 12 , 27 ) ;
        Size = MAP_APPFONT ( 204 , 10 ) ;
        TabStop = TRUE ;
        Text [ en-US ] = "V~isible grid" ;
    };
    FixedLine FL_RESOLUTION
    {
        Pos = MAP_APPFONT ( 6 , 45 ) ;
        Size = MAP_APPFONT ( 120 , 8 ) ;
        Text [ en-US ] = "Resolution" ;
    };
    FixedText FT_DRAW_X
    {
        Pos = MAP_APPFONT ( 12 , 56 ) ;
        Size = MAP_APPFONT ( 60 , 8 ) ;
        Text [ en-US ] = "H~orizontal";
    };
    FixedText FT_DRAW_Y
    {
        Pos = MAP_APPFONT ( 12 , 71 ) ;
        Size = MAP_APPFONT ( 60 , 8 ) ;
        Text [ en-US ] = "~Vertical";
    };
    MetricField MTR_FLD_DRAW_X
    {
        HelpID = "svx:MetricField:RID_SVXPAGE_GRID:MTR_FLD_DRAW_X";
        Border = TRUE ;
        Pos = MAP_APPFONT ( 75 , 54 ) ;
        Size = MAP_APPFONT ( 45 , 12 ) ;
        TabStop = TRUE ;
        Repeat = TRUE ;
        Spin = TRUE ;
        Minimum = 10 ;
        First = 10 ;
        Maximum = 10000 ;
        Last = 10000 ;
        StrictFormat = TRUE ;
        DecimalDigits = 2 ;
        Unit = FUNIT_MM ;
        SpinSize = 50 ;
    };
    MetricField MTR_FLD_DRAW_Y
    {
        HelpID = "svx:MetricField:RID_SVXPAGE_GRID:MTR_FLD_DRAW_Y";
        Border = TRUE ;
        Pos = MAP_APPFONT ( 75 , 69 ) ;
        Size = MAP_APPFONT ( 45 , 12 ) ;
        TabStop = TRUE ;
        Repeat = TRUE ;
        Spin = TRUE ;
        Minimum = 10 ;
        First = 10 ;
        Maximum = 10000 ;
        Last = 10000 ;
        StrictFormat = TRUE ;
        DecimalDigits = 2 ;
        Unit = FUNIT_MM ;
        SpinSize = 50 ;
    };
    FixedLine FL_DIVISION
    {
        Pos = MAP_APPFONT ( 130 , 45 ) ;
        Size = MAP_APPFONT ( 124 , 8 ) ;
        Text [ en-US ] = "Subdivision" ;
    };
    FixedText FT_DIVISION_X
    {
        Pos = MAP_APPFONT ( 136 , 56 ) ;
        Size = MAP_APPFONT ( 50 , 8 ) ;
        Text [ en-US ] = "Horizont~al";
    };
    FixedText FT_DIVISION_Y
    {
        Pos = MAP_APPFONT ( 136 , 71 ) ;
        Size = MAP_APPFONT ( 50 , 8 ) ;
        Text [ en-US ] = "V~ertical";
    };
    NumericField NUM_FLD_DIVISION_X
    {
        HelpID = "svx:NumericField:RID_SVXPAGE_GRID:NUM_FLD_DIVISION_X";
        Border = TRUE ;
        Pos = MAP_APPFONT ( 195 , 54 ) ;
        Size = MAP_APPFONT ( 25 , 12 ) ;
        TabStop = TRUE ;
        Repeat = TRUE ;
        Spin = TRUE ;
        Minimum = 1 ;
        Maximum = 99 ;
        Last = 99 ;
        StrictFormat = TRUE ;
        SpinSize = 1 ;
    };
    FixedText FT_HORZ_POINTS
    {
        Pos = MAP_APPFONT ( 223 , 56 ) ;
        Size = MAP_APPFONT ( 29 , 8 ) ;
        Text [ en-US ] = "space(s)" ;
    };
    NumericField NUM_FLD_DIVISION_Y
    {
        HelpID = "svx:NumericField:RID_SVXPAGE_GRID:NUM_FLD_DIVISION_Y";
        Border = TRUE ;
        Pos = MAP_APPFONT ( 195 , 69 ) ;
        Size = MAP_APPFONT ( 25 , 12 ) ;
        TabStop = TRUE ;
        Repeat = TRUE ;
        Spin = TRUE ;
        Minimum = 1 ;
        Maximum = 99 ;
        Last = 99 ;
        StrictFormat = TRUE ;
        SpinSize = 1 ;
    };
    FixedText FT_VERT_POINTS
    {
        Pos = MAP_APPFONT ( 223 , 71 ) ;
        Size = MAP_APPFONT ( 29 , 8 ) ;

    };
    CheckBox CBX_SYNCHRONIZE
    {
        HelpID = "svx:CheckBox:RID_SVXPAGE_GRID:CBX_SYNCHRONIZE";
        Pos = MAP_APPFONT ( 12 , 84 ) ;
        Size = MAP_APPFONT ( 127 , 10 ) ;
        TabStop = TRUE ;
        Text [ en-US ] = "Synchronize a~xes" ;
    };
    FixedLine GRP_SNAP
    {
        Pos = MAP_APPFONT ( 6 , 100  ) ;
        Size = MAP_APPFONT ( 120 , 8 ) ;
        Hide = TRUE;
        Text [ en-US ] = "Snap" ;
    };

    CheckBox CBX_SNAP_HELPLINES
    {
        HelpID = "svx:CheckBox:RID_SVXPAGE_GRID:CBX_SNAP_HELPLINES";
        Pos = MAP_APPFONT ( 12 , 111  ) ;
        Size = MAP_APPFONT ( 106 , 10 ) ;
        Hide = TRUE;
        TabStop = TRUE ;
        Text [ en-US ] = "To snap lines" ;
    };
    CheckBox CBX_SNAP_BORDER
    {
        HelpID = "svx:CheckBox:RID_SVXPAGE_GRID:CBX_SNAP_BORDER";
        Hide = TRUE;
        TabStop = TRUE ;
        Pos = MAP_APPFONT ( 12 , 125  ) ;
        Size = MAP_APPFONT ( 106 , 10 ) ;
        Text [ en-US ] = "To the ~page margins" ;
    };
    CheckBox CBX_SNAP_FRAME
    {
        HelpID = "svx:CheckBox:RID_SVXPAGE_GRID:CBX_SNAP_FRAME";
        Pos = MAP_APPFONT ( 12 , 139  ) ;
        Size = MAP_APPFONT ( 106 , 10 ) ;
        Hide = TRUE;
        TabStop = TRUE ;
        Text [ en-US ] = "To object ~frame" ;
    };
    CheckBox CBX_SNAP_POINTS
    {
        HelpID = "svx:CheckBox:RID_SVXPAGE_GRID:CBX_SNAP_POINTS";
        Pos = MAP_APPFONT ( 12 , 153  ) ;
        Size = MAP_APPFONT ( 106 , 10 ) ;
        Hide = TRUE;
        TabStop = TRUE ;
        Text [ en-US ] = "To obje~ct points" ;
    };
    FixedText FT_SNAP_AREA
    {
        Pos = MAP_APPFONT ( 12 , 169  ) ;
        Size = MAP_APPFONT ( 69 , 10 ) ;
        Hide = TRUE;
        Text [ en-US ] = "~Snap range" ;
    };
    MetricField MTR_FLD_SNAP_AREA
    {
        HelpID = "svx:MetricField:RID_SVXPAGE_GRID:MTR_FLD_SNAP_AREA";
        Border = TRUE ;
        Pos = MAP_APPFONT ( 83 , 167  ) ;
        Size = MAP_APPFONT ( 35 , 12 ) ;
        Hide = TRUE;
        TabStop = TRUE ;
        Repeat = TRUE ;
        Spin = TRUE ;
        Minimum = 1 ;
        Maximum = 50 ;
        StrictFormat = TRUE ;
        Unit = FUNIT_CUSTOM ;
        First = 1 ;
        Last = 999 ;
        CustomUnitText [ en-US ] = " Pixels" ;
    };
    FixedLine FL_SEPARATOR
    {
        Pos = MAP_APPFONT ( 127 , 111 ) ;
        Size = MAP_APPFONT ( 4 , 68 ) ;
        Hide = TRUE;
        Vert = TRUE;
    };
    FixedLine GRP_ORTHO
    {
        Pos = MAP_APPFONT ( 130 , 100  ) ;
        Size = MAP_APPFONT ( 124 , 8 ) ;
        Hide = TRUE;
        Text [ en-US ] = "Snap position" ;
    };
    CheckBox CBX_ORTHO
    {
        HelpID = "svx:CheckBox:RID_SVXPAGE_GRID:CBX_ORTHO";
        Pos = MAP_APPFONT ( 136 , 111  ) ;
        Size = MAP_APPFONT ( 112 , 10 ) ;
        Hide = TRUE;
        TabStop = TRUE ;
        Text [ en-US ] = "~When creating or moving objects" ;
    };
    CheckBox CBX_BIGORTHO
    {
        HelpID = "svx:CheckBox:RID_SVXPAGE_GRID:CBX_BIGORTHO";
        Pos = MAP_APPFONT ( 136 , 125  ) ;
        Size = MAP_APPFONT ( 112 , 10 ) ;
        Hide = TRUE;
        TabStop = TRUE ;
        Text [ en-US ] = "~Extend edges" ;
    };
    CheckBox CBX_ROTATE
    {
        HelpID = "svx:CheckBox:RID_SVXPAGE_GRID:CBX_ROTATE";
        Pos = MAP_APPFONT ( 136 , 139  ) ;
         // 136, 111
        Size = MAP_APPFONT ( 55 , 10 ) ;
        Hide = TRUE;
        TabStop = TRUE ;
        Text [ en-US ] = "When ro~tating" ;
    };
    MetricField MTR_FLD_ANGLE
    {
        HelpID = "svx:MetricField:RID_SVXPAGE_GRID:MTR_FLD_ANGLE";
        Border = TRUE ;
        Pos = MAP_APPFONT ( 194 , 137  ) ;
         // 190, 111
        Size = MAP_APPFONT ( 54 , 12 ) ;
        Hide = TRUE;
        TabStop = TRUE ;
        Repeat = TRUE ;
        Spin = TRUE ;
        Maximum = 18000 ;
        Last = 18000 ;
        DecimalDigits = 2 ;
        StrictFormat = TRUE ;
        Unit = FUNIT_CUSTOM ;
        SpinSize = 500 ;
        CustomUnitText [ en-US ] = " degrees" ;
    };
    FixedText FT_BEZ_ANGLE
    {
        Pos = MAP_APPFONT ( 136 , 156  ) ;
        Size = MAP_APPFONT ( 55 , 10 ) ;
        Hide = TRUE;
        Text [ en-US ] = "Point reducti~on" ;
    };
    MetricField MTR_FLD_BEZ_ANGLE
    {
        HelpID = "svx:MetricField:RID_SVXPAGE_GRID:MTR_FLD_BEZ_ANGLE";
        Border = TRUE ;
        Pos = MAP_APPFONT ( 194 , 154  ) ;
        Size = MAP_APPFONT ( 54 , 12 ) ;
        Hide = TRUE;
        TabStop = TRUE ;
        Repeat = TRUE ;
        Spin = TRUE ;
        Maximum = 9000 ;
        Last = 9000 ;
        DecimalDigits = 2 ;
        StrictFormat = TRUE ;
        Unit = FUNIT_CUSTOM ;
        SpinSize = 500 ;
        CustomUnitText [ en-US ] = " degrees" ;
    };
};

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */