xref: /AOO41X/main/dbaccess/source/ui/dlg/dlgsize.src (revision 81d089ae0b6b164818efbaaff21440338527721c)
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#ifndef DBAUI_DLGSIZE_HRC
25#include "dlgsize.hrc"
26#endif
27#ifndef _DBA_DBACCESS_HELPID_HRC_
28#include "dbaccess_helpid.hrc"
29#endif
30#ifndef _DBU_DLG_HRC_
31#include "dbu_dlg.hrc"
32#endif
33
34ModalDialog DLG_ROWHEIGHT
35{
36    OutputSize = TRUE ;
37    SVLook = TRUE ;
38    HelpId = HID_DLG_ROWHEIGHT ;
39    Size = MAP_APPFONT ( 159 , 59 ) ;
40    Moveable = TRUE ;
41    Closeable = TRUE ;
42    FixedText FT_VALUE
43    {
44        Pos = MAP_APPFONT ( 6 , 8 ) ;
45        Size = MAP_APPFONT ( 23 , 10 ) ;
46        Text [ en-US ] = "~Height" ;
47    };
48    MetricField MF_VALUE
49    {
50        HelpID = "dbaccess:MetricField:DLG_ROWHEIGHT:MF_VALUE";
51        Border = TRUE ;
52        Pos = MAP_APPFONT ( 36 , 6 ) ;
53        Size = MAP_APPFONT ( 63 , 12 ) ;
54        TabStop = TRUE ;
55        Spin = TRUE ;
56        Minimum = 10 ;
57        Maximum = 1600 ;
58        DecimalDigits = 2 ;
59        Unit = FUNIT_CM ;
60        Repeat = TRUE ;
61    };
62    CheckBox CB_STANDARD
63    {
64        HelpID = "dbaccess:CheckBox:DLG_ROWHEIGHT:CB_STANDARD";
65        Pos = MAP_APPFONT ( 36 , 25 ) ;
66        Size = MAP_APPFONT ( 62 , 12 ) ;
67        TabStop = TRUE ;
68        Text [ en-US ] = "~Automatic";
69    };
70    OKButton PB_OK
71    {
72        Pos = MAP_APPFONT ( 105 , 6 ) ;
73        Size = MAP_APPFONT ( 50 , 14 ) ;
74        TabStop = TRUE ;
75        DefButton = TRUE ;
76    };
77    CancelButton PB_CANCEL
78    {
79        Pos = MAP_APPFONT ( 105 , 23 ) ;
80        Size = MAP_APPFONT ( 50 , 14 ) ;
81        TabStop = TRUE ;
82    };
83    HelpButton PB_HELP
84    {
85        Pos = MAP_APPFONT ( 105 , 42 ) ;
86        Size = MAP_APPFONT ( 50 , 14 ) ;
87        TabStop = TRUE ;
88    };
89    Text [ en-US ] = "Row Height" ;
90};
91ModalDialog DLG_COLWIDTH
92{
93    OutputSize = TRUE ;
94    SVLook = TRUE ;
95    HelpId = HID_DLG_COLWIDTH ;
96    Size = MAP_APPFONT ( 159 , 59 ) ;
97    Moveable = TRUE ;
98    Closeable = TRUE ;
99    FixedText FT_VALUE
100    {
101        Pos = MAP_APPFONT ( 6 , 8 ) ;
102        Size = MAP_APPFONT ( 23 , 10 ) ;
103        Text [ en-US ] = "~Width" ;
104    };
105    MetricField MF_VALUE
106    {
107        HelpID = "dbaccess:MetricField:DLG_COLWIDTH:MF_VALUE";
108        Border = TRUE ;
109        Pos = MAP_APPFONT ( 36 , 6 ) ;
110        Size = MAP_APPFONT ( 63 , 12 ) ;
111        TabStop = TRUE ;
112        Spin = TRUE ;
113        Minimum = 10 ;
114        Maximum = 20000 ;
115        DecimalDigits = 2 ;
116        Unit = FUNIT_CM ;
117        Repeat = TRUE ;
118    };
119    CheckBox CB_STANDARD
120    {
121        HelpID = "dbaccess:CheckBox:DLG_COLWIDTH:CB_STANDARD";
122        Pos = MAP_APPFONT ( 36 , 25 ) ;
123        Size = MAP_APPFONT ( 62 , 12 ) ;
124        TabStop = TRUE ;
125        Text [ en-US ] = "~Automatic";
126    };
127    OKButton PB_OK
128    {
129        Pos = MAP_APPFONT ( 105 , 6 ) ;
130        Size = MAP_APPFONT ( 50 , 14 ) ;
131        TabStop = TRUE ;
132        DefButton = TRUE ;
133    };
134    CancelButton PB_CANCEL
135    {
136        Pos = MAP_APPFONT ( 105 , 23 ) ;
137        Size = MAP_APPFONT ( 50 , 14 ) ;
138        TabStop = TRUE ;
139    };
140    HelpButton PB_HELP
141    {
142        Pos = MAP_APPFONT ( 105 , 42 ) ;
143        Size = MAP_APPFONT ( 50 , 14 ) ;
144        TabStop = TRUE ;
145    };
146    Text [ en-US ] = "Column Width" ;
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