xref: /trunk/main/sw/source/ui/table/splittbl.src (revision 78190a370f7d7129fed9a7e70ca122eaae71ce1d)
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 "splittbl.hrc"
24#include "cmdid.h"
25#include "helpid.h"
26ModalDialog DLG_SPLIT_TABLE
27{
28    HelpID = CMD_FN_TABLE_SPLIT_TABLE ;
29    OutputSize = TRUE ;
30    SVLook = TRUE ;
31    Size = MAP_APPFONT ( 207, 76 ) ;
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_SPLIT
53    {
54        Pos = MAP_APPFONT ( 6, 3 ) ;
55        Size = MAP_APPFONT ( 139, 8 ) ;
56        Text [ en-US ] = "Mode" ;
57    };
58    RadioButton RB_CNTNT
59    {
60        HelpID = "sw:RadioButton:DLG_SPLIT_TABLE:RB_CNTNT" ;
61        Pos = MAP_APPFONT ( 12, 15 ) ;
62        Size = MAP_APPFONT ( 130, 10 ) ;
63        Check = TRUE ;
64        TabStop = TRUE ;
65        Text [ en-US ] = "~Copy heading" ;
66    };
67    RadioButton RB_BOX_PARA
68    {
69        HelpID = "sw:RadioButton:DLG_SPLIT_TABLE:RB_BOX_PARA" ;
70        Pos = MAP_APPFONT ( 12, 30 ) ;
71        Size = MAP_APPFONT ( 130, 10 ) ;
72        Text [ en-US ] = "C~ustom heading (apply Style)" ;
73    };
74    RadioButton RB_BOX_NOPARA
75    {
76        HelpID = "sw:RadioButton:DLG_SPLIT_TABLE:RB_BOX_NOPARA" ;
77        Pos = MAP_APPFONT ( 12, 45 ) ;
78        Size = MAP_APPFONT ( 130, 10 ) ;
79        Text [ en-US ] = "Cu~stom heading" ;
80    };
81    RadioButton RB_BORDER
82    {
83        HelpID = "sw:RadioButton:DLG_SPLIT_TABLE:RB_BORDER" ;
84        Pos = MAP_APPFONT ( 12, 60 ) ;
85        Size = MAP_APPFONT ( 130, 10 ) ;
86        Text [ en-US ] = "~No heading" ;
87    };
88    Text [ en-US ] = "Split Table" ;
89};
90
91// ********************************************************************** EOF
92