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 "table.hrc" 25#include "mergetbl.hrc" 26#include "cmdid.h" 27#include "helpid.h" 28ModalDialog DLG_MERGE_TABLE 29{ 30 HelpID = CMD_FN_TABLE_MERGE_TABLE ; 31 OutputSize = TRUE ; 32 SVLook = TRUE ; 33 Size = MAP_APPFONT ( 207 , 57 ) ; 34 Moveable = TRUE ; 35 OKButton PB_OK 36 { 37 Pos = MAP_APPFONT ( 151 , 6 ) ; 38 Size = MAP_APPFONT ( 50 , 14 ) ; 39 TabStop = TRUE ; 40 DefButton = TRUE ; 41 }; 42 CancelButton PB_CANCEL 43 { 44 Pos = MAP_APPFONT ( 151 , 23 ) ; 45 Size = MAP_APPFONT ( 50 , 14 ) ; 46 TabStop = TRUE ; 47 }; 48 HelpButton PB_HELP 49 { 50 Pos = MAP_APPFONT ( 151 , 40 ) ; 51 Size = MAP_APPFONT ( 50 , 14 ) ; 52 TabStop = TRUE ; 53 }; 54 FixedLine FL_MERGE 55 { 56 Pos = MAP_APPFONT ( 6 , 3 ) ; 57 Size = MAP_APPFONT ( 139 , 8 ) ; 58 Text [ en-US ] = "Mode" ; 59 }; 60 RadioButton RB_MERGE_PREV 61 { 62 HelpID = "sw:RadioButton:DLG_MERGE_TABLE:RB_MERGE_PREV"; 63 Pos = MAP_APPFONT ( 12 , 15 ) ; 64 Size = MAP_APPFONT ( 130 , 10 ) ; 65 Check = TRUE ; 66 TabStop = TRUE ; 67 Text [ en-US ] = "Join with ~previous table"; 68 }; 69 RadioButton RB_MERGE_NEXT 70 { 71 HelpID = "sw:RadioButton:DLG_MERGE_TABLE:RB_MERGE_NEXT"; 72 Pos = MAP_APPFONT ( 12 , 30 ) ; 73 Size = MAP_APPFONT ( 130 , 10 ) ; 74 Text [ en-US ] = "Join with ~next table"; 75 }; 76 Text [ en-US ] = "Merge Tables"; 77}; 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115