xref: /trunk/main/sw/source/ui/table/splittbl.src (revision cdf0e10c)
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
28#include "table.hrc"
29#include "splittbl.hrc"
30#include "cmdid.h"
31#include "helpid.h"
32ModalDialog DLG_SPLIT_TABLE
33{
34	HelpID = CMD_FN_TABLE_SPLIT_TABLE ;
35	OutputSize = TRUE ;
36	SVLook = TRUE ;
37	Size = MAP_APPFONT ( 207 , 76 ) ;
38	Moveable = TRUE ;
39	OKButton PB_OK
40	{
41		Pos = MAP_APPFONT ( 151 , 6 ) ;
42		Size = MAP_APPFONT ( 50 , 14 ) ;
43		TabStop = TRUE ;
44		DefButton = TRUE ;
45	};
46	CancelButton PB_CANCEL
47	{
48		Pos = MAP_APPFONT ( 151 , 23 ) ;
49		Size = MAP_APPFONT ( 50 , 14 ) ;
50		TabStop = TRUE ;
51	};
52	HelpButton PB_HELP
53	{
54		Pos = MAP_APPFONT ( 151 , 40 ) ;
55		Size = MAP_APPFONT ( 50 , 14 ) ;
56		TabStop = TRUE ;
57	};
58    FixedLine FL_SPLIT
59	{
60		Pos = MAP_APPFONT ( 6 , 3 ) ;
61        Size = MAP_APPFONT ( 139 , 8 ) ;
62		Text [ en-US ] = "Mode" ;
63	};
64	RadioButton RB_CNTNT
65	{
66	    HelpID = "sw:RadioButton:DLG_SPLIT_TABLE:RB_CNTNT";
67		Pos = MAP_APPFONT ( 12 , 15 ) ;
68		Size = MAP_APPFONT ( 130 , 10 ) ;
69		Check = TRUE ;
70		TabStop = TRUE ;
71		Text [ en-US ] = "~Copy heading" ;
72	};
73	RadioButton RB_BOX_PARA
74	{
75	    HelpID = "sw:RadioButton:DLG_SPLIT_TABLE:RB_BOX_PARA";
76		Pos = MAP_APPFONT ( 12 , 30 ) ;
77		Size = MAP_APPFONT ( 130 , 10 ) ;
78		Text [ en-US ] = "C~ustom heading (apply Style)" ;
79	};
80	RadioButton RB_BOX_NOPARA
81	{
82	    HelpID = "sw:RadioButton:DLG_SPLIT_TABLE:RB_BOX_NOPARA";
83		Pos = MAP_APPFONT ( 12 , 45 ) ;
84		Size = MAP_APPFONT ( 130 , 10 ) ;
85		Text [ en-US ] = "Cu~stom heading" ;
86	};
87	RadioButton RB_BORDER
88	{
89	    HelpID = "sw:RadioButton:DLG_SPLIT_TABLE:RB_BORDER";
90		Pos = MAP_APPFONT ( 12 , 60 ) ;
91		Size = MAP_APPFONT ( 130 , 10 ) ;
92		Text [ en-US ] = "~No heading" ;
93	};
94	Text [ en-US ] = "Split Table" ;
95};
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130