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