xref: /trunk/main/sw/source/ui/table/mergetbl.src (revision 0dfdc53f)
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#include "table.hrc"
23#include "mergetbl.hrc"
24#include "cmdid.h"
25#include "helpid.h"
26ModalDialog DLG_MERGE_TABLE
27{
28	HelpID = CMD_FN_TABLE_MERGE_TABLE ;
29	OutputSize = TRUE ;
30	SVLook = TRUE ;
31	Size = MAP_APPFONT ( 207, 57 ) ;
32	Moveable = TRUE ;
33	OKButton PB_OK
34	{
35		Pos = MAP_APPFONT ( 151, 6 ) ;
36		Size = MAP_APPFONT ( 50, 14 ) ;
37		TabStop = TRUE ;
38		DefButton = TRUE ;
39	};
40	CancelButton PB_CANCEL
41	{
42		Pos = MAP_APPFONT ( 151, 23 ) ;
43		Size = MAP_APPFONT ( 50, 14 ) ;
44		TabStop = TRUE ;
45	};
46	HelpButton PB_HELP
47	{
48		Pos = MAP_APPFONT ( 151, 40 ) ;
49		Size = MAP_APPFONT ( 50, 14 ) ;
50		TabStop = TRUE ;
51	};
52	FixedLine FL_MERGE
53	{
54		Pos = MAP_APPFONT ( 6, 3 ) ;
55		Size = MAP_APPFONT ( 139, 8 ) ;
56		Text [ en-US ] = "Mode" ;
57	};
58	RadioButton RB_MERGE_PREV
59	{
60		HelpID = "sw:RadioButton:DLG_MERGE_TABLE:RB_MERGE_PREV" ;
61		Pos = MAP_APPFONT ( 12, 15 ) ;
62		Size = MAP_APPFONT ( 130, 10 ) ;
63		Check = TRUE ;
64		TabStop = TRUE ;
65		Text [ en-US ] = "Join with ~previous table" ;
66	};
67	RadioButton RB_MERGE_NEXT
68	{
69		HelpID = "sw:RadioButton:DLG_MERGE_TABLE:RB_MERGE_NEXT" ;
70		Pos = MAP_APPFONT ( 12, 30 ) ;
71		Size = MAP_APPFONT ( 130, 10 ) ;
72		Text [ en-US ] = "Join with ~next table" ;
73	};
74	Text [ en-US ] = "Merge Tables" ;
75};
76
77// ********************************************************************** EOF
78