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