xref: /AOO41X/main/sc/source/ui/src/crnrdlg.src (revision 82177cdbfc5fbca7e9a45fdfffbbaeb8a0d1d1a3)
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#include "crnrdlg.hrc"
24ModelessDialog RID_SCDLG_COLROWNAMERANGES
25{
26    OutputSize = TRUE ;
27    Hide = TRUE ;
28    SVLook = TRUE ;
29    Size = MAP_APPFONT ( 256 , 181 ) ;
30    HelpId = HID_COLROWNAMERANGES ;
31    Moveable = TRUE ;
32     // Closeable = TRUE;   // Dieser Dialog hat einen Cancel-Button !
33    FixedLine FL_ASSIGN
34    {
35        Pos = MAP_APPFONT ( 6 , 3 ) ;
36        Size = MAP_APPFONT ( 188 , 8 ) ;
37        Text [ en-US ] = "Range" ;
38    };
39    ListBox LB_RANGE
40    {
41        HelpID = "sc:ListBox:RID_SCDLG_COLROWNAMERANGES:LB_RANGE";
42        Pos = MAP_APPFONT ( 12 , 14 ) ;
43        Size = MAP_APPFONT ( 179 , 85 ) ;
44        TabStop = TRUE ;
45        VScroll = TRUE ;
46        Border = TRUE ;
47    };
48    Edit ED_AREA
49    {
50        HelpID = "sc:Edit:RID_SCDLG_COLROWNAMERANGES:ED_AREA";
51        Border = TRUE ;
52        Pos = MAP_APPFONT ( 12 , 105 ) ;
53        Size = MAP_APPFONT ( 165 , 12 ) ;
54        TabStop = TRUE ;
55    };
56    ImageButton RB_AREA
57    {
58        HelpID = "sc:ImageButton:RID_SCDLG_COLROWNAMERANGES:RB_AREA";
59        Pos = MAP_APPFONT ( 179 , 104 ) ;
60        Size = MAP_APPFONT ( 13 , 15 ) ;
61        TabStop = FALSE ;
62        QuickHelpText [ en-US ] = "Shrink" ;
63    };
64    RadioButton BTN_COLHEAD
65    {
66        HelpID = "sc:RadioButton:RID_SCDLG_COLROWNAMERANGES:BTN_COLHEAD";
67        Pos = MAP_APPFONT ( 20 , 121 ) ;
68        Size = MAP_APPFONT ( 171 , 10 ) ;
69        TabStop = TRUE ;
70        Text [ en-US ] = "Contains ~column labels" ;
71    };
72    RadioButton BTN_ROWHEAD
73    {
74        HelpID = "sc:RadioButton:RID_SCDLG_COLROWNAMERANGES:BTN_ROWHEAD";
75        Pos = MAP_APPFONT ( 20 , 135 ) ;
76        Size = MAP_APPFONT ( 171 , 10 ) ;
77        TabStop = TRUE ;
78        Text [ en-US ] = "Contains ~row labels" ;
79    };
80    FixedText FT_DATA_LABEL
81    {
82        Pos = MAP_APPFONT ( 12 , 151 ) ;
83        Size = MAP_APPFONT ( 179 , 8 ) ;
84        Text [ en-US ] = "For ~data range" ;
85    };
86    Edit ED_DATA
87    {
88        HelpID = "sc:Edit:RID_SCDLG_COLROWNAMERANGES:ED_DATA";
89        Border = TRUE ;
90        Pos = MAP_APPFONT ( 12 , 162 ) ;
91        Size = MAP_APPFONT ( 165 , 12 ) ;
92        TabStop = TRUE ;
93    };
94    ImageButton RB_DATA
95    {
96        HelpID = "sc:ImageButton:RID_SCDLG_COLROWNAMERANGES:RB_DATA";
97        Pos = MAP_APPFONT ( 179 , 161 ) ;
98        Size = MAP_APPFONT ( 13 , 15 ) ;
99        TabStop = FALSE ;
100        QuickHelpText [ en-US ] = "Shrink" ;
101    };
102    OKButton BTN_OK
103    {
104        Pos = MAP_APPFONT ( 200 , 6 ) ;
105        Size = MAP_APPFONT ( 50 , 14 ) ;
106        TabStop = TRUE ;
107    };
108    CancelButton BTN_CANCEL
109    {
110        Pos = MAP_APPFONT ( 200 , 23 ) ;
111        Size = MAP_APPFONT ( 50 , 14 ) ;
112        TabStop = TRUE ;
113    };
114    PushButton BTN_ADD
115    {
116        HelpID = "sc:PushButton:RID_SCDLG_COLROWNAMERANGES:BTN_ADD";
117        Pos = MAP_APPFONT ( 200 , 104 ) ;
118        Size = MAP_APPFONT ( 50 , 14 ) ;
119        Text [ en-US ] = "~Add" ;
120        TabStop = TRUE ;
121        DefButton = TRUE ;
122    };
123    PushButton BTN_REMOVE
124    {
125        HelpID = "sc:PushButton:RID_SCDLG_COLROWNAMERANGES:BTN_REMOVE";
126        Pos = MAP_APPFONT ( 200 , 122 ) ;
127        Size = MAP_APPFONT ( 50 , 14 ) ;
128        Text [ en-US ] = "~Delete" ;
129        TabStop = TRUE ;
130    };
131    HelpButton BTN_HELP
132    {
133        Pos = MAP_APPFONT ( 200 , 43 ) ;
134        Size = MAP_APPFONT ( 50 , 14 ) ;
135        TabStop = TRUE ;
136    };
137    Text [ en-US ] = "Define Label Range" ;
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