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 "instbdlg.hrc" 23ModalDialog RID_SCDLG_INSERT_TABLE 24{ 25 HelpID = "sc:ModalDialog:RID_SCDLG_INSERT_TABLE" ; 26 OutputSize = TRUE ; 27 SVLook = TRUE ; 28 Size = MAP_APPFONT ( 274, 190 ) ; 29 Text [ en-US ] = "Insert Sheet" ; 30 Moveable = TRUE ; 31 Closeable = TRUE ; 32 OKButton BTN_OK 33 { 34 Pos = MAP_APPFONT ( 218, 6 ) ; 35 Size = MAP_APPFONT ( 50, 14 ) ; 36 DefButton = TRUE ; 37 }; 38 CancelButton BTN_CANCEL 39 { 40 Pos = MAP_APPFONT ( 218, 23 ) ; 41 Size = MAP_APPFONT ( 50, 14 ) ; 42 }; 43 HelpButton BTN_HELP 44 { 45 Pos = MAP_APPFONT ( 218, 43 ) ; 46 Size = MAP_APPFONT ( 50, 14 ) ; 47 }; 48 FixedLine FL_POSITION 49 { 50 Pos = MAP_APPFONT ( 6, 3 ) ; 51 Size = MAP_APPFONT ( 206, 8 ) ; 52 Text [ en-US ] = "Position" ; 53 }; 54 RadioButton RB_BEFORE 55 { 56 HelpID = "sc:RadioButton:RID_SCDLG_INSERT_TABLE:RB_BEFORE" ; 57 Pos = MAP_APPFONT ( 12, 14 ) ; 58 Size = MAP_APPFONT ( 197, 10 ) ; 59 TabStop = TRUE ; 60 Text [ en-US ] = "B~efore current sheet" ; 61 }; 62 RadioButton RB_BEHIND 63 { 64 HelpID = "sc:RadioButton:RID_SCDLG_INSERT_TABLE:RB_BEHIND" ; 65 Pos = MAP_APPFONT ( 12, 28 ) ; 66 Size = MAP_APPFONT ( 197, 10 ) ; 67 TabStop = TRUE ; 68 Text [ en-US ] = "~After current sheet" ; 69 }; 70 FixedLine FL_TABLE 71 { 72 Pos = MAP_APPFONT ( 6, 44 ) ; 73 Size = MAP_APPFONT ( 206, 8 ) ; 74 Text [ en-US ] = "Sheet" ; 75 }; 76 RadioButton RB_NEW 77 { 78 HelpID = "sc:RadioButton:RID_SCDLG_INSERT_TABLE:RB_NEW" ; 79 Pos = MAP_APPFONT ( 12, 55 ) ; 80 Size = MAP_APPFONT ( 197, 10 ) ; 81 Text [ en-US ] = "~New sheet" ; 82 }; 83 FixedText FT_COUNT 84 { 85 Pos = MAP_APPFONT ( 20, 68 ) ; 86 Size = MAP_APPFONT ( 52, 8 ) ; 87 Text [ en-US ] = "N~o. of sheets" ; 88 }; 89 NumericField NF_COUNT 90 { 91 HelpID = "sc:NumericField:RID_SCDLG_INSERT_TABLE:NF_COUNT" ; 92 Border = TRUE ; 93 Pos = MAP_APPFONT ( 72, 66 ) ; 94 Size = MAP_APPFONT ( 30, 12 ) ; 95 TabStop = TRUE ; 96 Spin = TRUE ; 97 SpinSize = 1 ; 98 Repeat = TRUE ; 99 Minimum = 1 ; 100 Maximum = 256 ; 101 }; 102 FixedText FT_NAME 103 { 104 Pos = MAP_APPFONT ( 20, 84 ) ; 105 Size = MAP_APPFONT ( 50, 8 ) ; 106 Text [ en-US ] = "Na~me" ; 107 }; 108 Edit ED_TABNAME 109 { 110 HelpID = "sc:Edit:RID_SCDLG_INSERT_TABLE:ED_TABNAME" ; 111 Border = TRUE ; 112 Pos = MAP_APPFONT ( 72, 82 ) ; 113 Size = MAP_APPFONT ( 137, 12 ) ; 114 }; 115 RadioButton RB_FROMFILE 116 { 117 HelpID = "sc:RadioButton:RID_SCDLG_INSERT_TABLE:RB_FROMFILE" ; 118 Pos = MAP_APPFONT ( 12, 100 ) ; 119 Size = MAP_APPFONT ( 197, 10 ) ; 120 Text [ en-US ] = "~From file" ; 121 }; 122 MultiListBox LB_TABLES 123 { 124 HelpID = "sc:MultiListBox:RID_SCDLG_INSERT_TABLE:LB_TABLES" ; 125 SimpleMode = TRUE ; 126 Border = TRUE ; 127 Pos = MAP_APPFONT ( 20, 113 ) ; 128 Size = MAP_APPFONT ( 123, 59 ) ; 129 AutoHScroll = TRUE ; 130 }; 131 PushButton BTN_BROWSE 132 { 133 HelpID = "sc:PushButton:RID_SCDLG_INSERT_TABLE:BTN_BROWSE" ; 134 Pos = MAP_APPFONT ( 149, 113 ) ; 135 Size = MAP_APPFONT ( 60, 14 ) ; 136 Text [ en-US ] = "~Browse..." ; 137 }; 138 CheckBox CB_LINK 139 { 140 HelpID = "sc:CheckBox:RID_SCDLG_INSERT_TABLE:CB_LINK" ; 141 Pos = MAP_APPFONT ( 149, 131 ) ; 142 Size = MAP_APPFONT ( 60, 10 ) ; 143 Text [ en-US ] = "Lin~k" ; 144 }; 145 FixedText FT_PATH 146 { 147 Pos = MAP_APPFONT ( 20, 176 ) ; 148 Size = MAP_APPFONT ( 192, 8 ) ; 149 }; 150}; 151 152// ********************************************************************** EOF 153