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 "imoptdlg.hrc" 25 26ModalDialog RID_SCDLG_IMPORTOPT 27{ 28 HelpId = HID_SC_INPORTOPT ; 29 OutputSize = TRUE ; 30 SVLook = TRUE ; 31 Size = MAP_APPFONT ( 256, 66 ) ; 32 Moveable = TRUE ; 33 Closeable = FALSE ; 34 Text [ en-US ] = "Import File" ; 35 FixedText FT_FIELDSEP 36 { 37 Pos = MAP_APPFONT ( 12, 32 ) ; 38 Size = MAP_APPFONT ( 55, 8 ) ; 39 Text [ en-US ] = "~Field delimiter" ; 40 }; 41 ComboBox ED_FIELDSEP 42 { 43 HelpID = "sc:ComboBox:RID_SCDLG_IMPORTOPT:ED_FIELDSEP" ; 44 Pos = MAP_APPFONT ( 70, 30 ) ; 45 Size = MAP_APPFONT ( 121, 60 ) ; 46 DropDown = TRUE ; 47 }; 48 FixedText FT_TEXTSEP 49 { 50 Pos = MAP_APPFONT ( 12, 48 ) ; 51 Size = MAP_APPFONT ( 55, 8 ) ; 52 Text [ en-US ] = "~Text delimiter" ; 53 }; 54 ComboBox ED_TEXTSEP 55 { 56 HelpID = "sc:ComboBox:RID_SCDLG_IMPORTOPT:ED_TEXTSEP" ; 57 Pos = MAP_APPFONT ( 70, 46 ) ; 58 Size = MAP_APPFONT ( 121, 60 ) ; 59 DropDown = TRUE ; 60 }; 61 FixedText FT_FONT 62 { 63 Pos = MAP_APPFONT ( 12, 16 ) ; 64 Size = MAP_APPFONT ( 55, 8 ) ; 65 Text [ en-US ] = "~Character set" ; 66 }; 67 ListBox DDLB_FONT 68 { 69 HelpID = "sc:ListBox:RID_SCDLG_IMPORTOPT:DDLB_FONT" ; 70 Border = TRUE ; 71 Sort = TRUE ; 72 DropDown = TRUE ; 73 Pos = MAP_APPFONT ( 70, 14 ) ; 74 Size = MAP_APPFONT ( 121, 52 ) ; 75 }; 76 ListBox LB_FONT 77 { 78 HelpID = "sc:ListBox:RID_SCDLG_IMPORTOPT:LB_FONT" ; 79 Border = TRUE ; 80 Sort = TRUE ; 81 DropDown = FALSE ; 82 Pos = MAP_APPFONT ( 12, 14 ) ; 83 Size = MAP_APPFONT ( 179, 50 ) ; 84 }; 85 FixedLine FL_FIELDOPT 86 { 87 Pos = MAP_APPFONT ( 6, 3 ) ; 88 Size = MAP_APPFONT ( 188, 8 ) ; 89 Text [ en-US ] = "Field options" ; 90 }; 91 CheckBox CB_FIXEDWIDTH 92 { 93 HelpID = "sc:CheckBox:RID_SCDLG_IMPORTOPT:CB_FIXEDWIDTH" ; 94 Pos = MAP_APPFONT ( 12, 92 ) ; 95 Size = MAP_APPFONT ( 172, 10 ) ; 96 Hide = TRUE ; 97 Text [ en-US ] = "Fixed column ~width" ; 98 }; 99 CheckBox CB_SAVESHOWN 100 { 101 HelpID = "sc:CheckBox:RID_SCDLG_IMPORTOPT:CB_SAVESHOWN" ; 102 Pos = MAP_APPFONT ( 12, 78 ) ; 103 Size = MAP_APPFONT ( 172, 10 ) ; 104 TabStop = TRUE ; 105 Hide = TRUE ; 106 Text [ en-US ] = "Save cell content as ~shown" ; 107 }; 108 CheckBox CB_QUOTEALL 109 { 110 HelpID = "sc:CheckBox:RID_SCDLG_IMPORTOPT:CB_QUOTEALL" ; 111 Pos = MAP_APPFONT ( 20, 64 ) ; 112 Size = MAP_APPFONT ( 164, 10 ) ; 113 Hide = TRUE ; 114 Text [ en-US ] = "~Quote all text cells" ; 115 }; 116 OKButton BTN_OK 117 { 118 Pos = MAP_APPFONT ( 202, 6 ) ; 119 Size = MAP_APPFONT ( 50, 14 ) ; 120 DefButton = TRUE ; 121 }; 122 CancelButton BTN_CANCEL 123 { 124 Pos = MAP_APPFONT ( 202, 24 ) ; 125 Size = MAP_APPFONT ( 50, 14 ) ; 126 }; 127 HelpButton BTN_HELP 128 { 129 Pos = MAP_APPFONT ( 202, 43 ) ; 130 Size = MAP_APPFONT ( 50, 14 ) ; 131 }; 132}; 133 134// ********************************************************************** EOF 135