xref: /trunk/main/cui/source/dialogs/insrc.src (revision b3e637ac)
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 <cuires.hrc>
25#include "insrc.hrc"
26
27ModalDialog DLG_INS_ROW_COL
28{
29	HelpID = "cui:ModalDialog:DLG_INS_ROW_COL" ;
30	OutputSize = TRUE ;
31	SVLook = TRUE ;
32	Size = MAP_APPFONT ( 136, 84 ) ;
33	Text = "-" ; // Dummy text, will be overwritten later
34	Moveable = TRUE ;
35	OKButton BT_OK
36	{
37		Pos = MAP_APPFONT ( 80, 6 ) ;
38		Size = MAP_APPFONT ( 50, 14 ) ;
39		TabStop = TRUE ;
40		DefButton = TRUE ;
41	};
42	CancelButton BT_CANCEL
43	{
44		Pos = MAP_APPFONT ( 80, 23 ) ;
45		Size = MAP_APPFONT ( 50, 14 ) ;
46		TabStop = TRUE ;
47	};
48	HelpButton BT_HELP
49	{
50		Pos = MAP_APPFONT ( 80, 43 ) ;
51		Size = MAP_APPFONT ( 50, 14 ) ;
52		TabStop = TRUE ;
53	};
54	RadioButton CB_POS_BEFORE
55	{
56		HelpID = "cui:RadioButton:DLG_INS_ROW_COL:CB_POS_BEFORE" ;
57		Pos = MAP_APPFONT ( 12, 49 ) ;
58		Size = MAP_APPFONT ( 56, 10 ) ;
59		Text [ en-US ] = "~Before" ;
60		TabStop = TRUE ;
61	};
62	RadioButton CB_POS_AFTER
63	{
64		HelpID = "cui:RadioButton:DLG_INS_ROW_COL:CB_POS_AFTER" ;
65		Pos = MAP_APPFONT ( 12, 62 ) ;
66		Size = MAP_APPFONT ( 56, 10 ) ;
67		Text [ en-US ] = "A~fter" ;
68		TabStop = TRUE ;
69		Check = TRUE ;
70	};
71	NumericField ED_COUNT
72	{
73		HelpID = "cui:NumericField:DLG_INS_ROW_COL:ED_COUNT" ;
74		Border = TRUE ;
75		Pos = MAP_APPFONT ( 44, 14 ) ;
76		Size = MAP_APPFONT ( 24, 12 ) ;
77		TabStop = TRUE ;
78		Left = TRUE ;
79		Repeat = TRUE ;
80		Spin = TRUE ;
81		Minimum = 1 ;
82		Maximum = 99 ;
83		Value = 1 ;
84		First = 1 ;
85		Last = 5 ;
86	};
87	FixedLine FL_INS
88	{
89		Pos = MAP_APPFONT ( 6, 3 ) ;
90		Size = MAP_APPFONT ( 68, 8 ) ;
91		Text [ en-US ] = "Insert" ;
92	};
93	FixedLine FL_POS
94	{
95		Pos = MAP_APPFONT ( 6, 38 ) ;
96		Size = MAP_APPFONT ( 68, 8 ) ;
97		Text [ en-US ] = "Position" ;
98	};
99	FixedText FT_COUNT
100	{
101		Pos = MAP_APPFONT ( 12, 16 ) ;
102		Size = MAP_APPFONT ( 30, 8 ) ;
103		Text [ en-US ] = "~Number" ;
104		Left = TRUE ;
105	};
106	String STR_ROW
107	{
108		Text [ en-US ] = "Insert Rows" ;
109	};
110	String STR_COL
111	{
112		Text [ en-US ] = "Insert Columns" ;
113	};
114};
115
116// ********************************************************************** EOF
117