xref: /AOO41X/main/sw/source/ui/table/rowht.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 "table.hrc"
25#include "rowht.hrc"
26#include "cmdid.h"
27#include "helpid.h"
28ModalDialog DLG_ROW_HEIGHT
29{
30    HelpID = CMD_FN_TABLE_SET_ROW_HEIGHT ;
31    OutputSize = TRUE ;
32    SVLook = TRUE ;
33    Size = MAP_APPFONT ( 157 , 60 ) ;
34    /* ### ACHTUNG: Neuer Text in Resource? Zeilenh�he : Zellenh�he */
35    Text [ en-US ] = "Row Height" ;
36    Moveable = TRUE ;
37    OKButton BT_OK
38    {
39        Pos = MAP_APPFONT ( 101 , 6 ) ;
40        Size = MAP_APPFONT ( 50 , 14 ) ;
41        TabStop = TRUE ;
42        DefButton = TRUE ;
43    };
44    CancelButton BT_CANCEL
45    {
46        Pos = MAP_APPFONT ( 101 , 23 ) ;
47        Size = MAP_APPFONT ( 50 , 14 ) ;
48        TabStop = TRUE ;
49    };
50    HelpButton BT_HELP
51    {
52        Pos = MAP_APPFONT ( 101 , 43 ) ;
53        Size = MAP_APPFONT ( 50 , 14 ) ;
54        TabStop = TRUE ;
55    };
56    MetricField ED_HEIGHT
57    {
58        HelpID = "sw:MetricField:DLG_ROW_HEIGHT:ED_HEIGHT";
59        Border = TRUE ;
60        Pos = MAP_APPFONT ( 12 , 16 ) ;
61        Size = MAP_APPFONT ( 38 , 12 ) ;
62        TabStop = TRUE ;
63        Left = TRUE ;
64        Repeat = TRUE ;
65        Spin = TRUE ;
66        Minimum = 5 ;
67        Maximum = 990 ;
68        DecimalDigits = 1 ;
69        Value = 10 ;
70        Unit = FUNIT_CM ;
71        First = 100 ;
72        Last = 9999 ;
73    };
74    CheckBox CB_AUTOHEIGHT
75    {
76        HelpID = "sw:CheckBox:DLG_ROW_HEIGHT:CB_AUTOHEIGHT";
77        Pos = MAP_APPFONT ( 12 , 34 ) ;
78        Size = MAP_APPFONT ( 80 , 10 ) ;
79        /* ### ACHTUNG: Neuer Text in Resource? ~dynamisch anpassen : auto. H~�he */
80        TabStop = TRUE ;
81        Text [ en-US ] = "~Fit to size" ;
82    };
83    FixedLine FL_HEIGHT
84    {
85        Pos = MAP_APPFONT ( 6 , 3 ) ;
86        Size = MAP_APPFONT ( 89 , 8 ) ;
87        Text [ en-US ] = "Height" ;
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