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#include "dialog.hrc" 28#include "helpid.h" 29#include "ascfldlg.hrc" 30 31ModalDialog DLG_ASCII_FILTER 32{ 33 HelpID = HID_ASCII_FILTER ; 34 OutputSize = TRUE ; 35 SVLook = TRUE ; 36 Size = MAP_APPFONT ( 239 , 80 ) ; 37 Moveable = TRUE ; 38 FixedLine FL_1 39 { 40 OutputSize = TRUE ; 41 Pos = MAP_APPFONT ( 6 , 3 ) ; 42 Size = MAP_APPFONT ( 170 , 8 ) ; 43 Text [ en-US ] = "Properties"; 44 }; 45 FixedText FT_CHARSET 46 { 47 Pos = MAP_APPFONT ( 12 , 15 ) ; 48 Size = MAP_APPFONT ( 66 , 10 ) ; 49 Text [ en-US ] = "~Character set"; 50 }; 51 ListBox LB_CHARSET 52 { 53 HelpID = "sw:ListBox:DLG_ASCII_FILTER:LB_CHARSET"; 54 Pos = MAP_APPFONT ( 80 , 14 ) ; 55 Size = MAP_APPFONT ( 90 , 61 ) ; 56 TabStop = TRUE ; 57 DropDown = TRUE ; 58 Sort = TRUE ; 59 }; 60 FixedText FT_FONT 61 { 62 Pos = MAP_APPFONT ( 12 , 31 ) ; 63 Size = MAP_APPFONT ( 66 , 10 ) ; 64 Text [ en-US ] = "Default fonts"; 65 }; 66 ListBox LB_FONT 67 { 68 HelpID = "sw:ListBox:DLG_ASCII_FILTER:LB_FONT"; 69 Pos = MAP_APPFONT ( 80 , 30 ) ; 70 Size = MAP_APPFONT ( 90 , 61 ) ; 71 TabStop = TRUE ; 72 DropDown = TRUE ; 73 Sort = TRUE ; 74 }; 75 FixedText FT_LANGUAGE 76 { 77 Pos = MAP_APPFONT ( 12 , 47 ) ; 78 Size = MAP_APPFONT ( 66 , 10 ) ; 79 Text [ en-US ] = "Lan~guage"; 80 }; 81 ListBox LB_LANGUAGE 82 { 83 HelpID = "sw:ListBox:DLG_ASCII_FILTER:LB_LANGUAGE"; 84 Pos = MAP_APPFONT ( 80 , 46 ) ; 85 Size = MAP_APPFONT ( 90 , 61 ) ; 86 TabStop = TRUE ; 87 DropDown = TRUE ; 88 Sort = TRUE ; 89 }; 90 FixedText FT_CRLF 91 { 92 Pos = MAP_APPFONT ( 12 , 64 ) ; 93 Size = MAP_APPFONT ( 66 , 8 ) ; 94 Text [ en-US ] = "~Paragraph break"; 95 }; 96 RadioButton RB_CRLF 97 { 98 HelpID = "sw:RadioButton:DLG_ASCII_FILTER:RB_CRLF"; 99 Pos = MAP_APPFONT ( 80 , 64 ) ; 100 Size = MAP_APPFONT ( 40 , 10 ) ; 101 TabStop = TRUE ; 102 Check = TRUE; 103 Text [ en-US ] = "~CR & LF"; 104 }; 105 RadioButton RB_CR 106 { 107 HelpID = "sw:RadioButton:DLG_ASCII_FILTER:RB_CR"; 108 Pos = MAP_APPFONT ( 121 , 64 ) ; 109 Size = MAP_APPFONT ( 20 , 10 ) ; 110// TabStop = TRUE ; 111 Text [ en-US ] = "C~R"; 112 }; 113 RadioButton RB_LF 114 { 115 HelpID = "sw:RadioButton:DLG_ASCII_FILTER:RB_LF"; 116 Pos = MAP_APPFONT ( 155 , 64 ) ; 117 Size = MAP_APPFONT ( 20 , 10 ) ; 118// TabStop = TRUE ; 119 Text [ en-US ] = "~LF"; 120 }; 121 122 OKButton PB_OK 123 { 124 Pos = MAP_APPFONT ( 183 , 6 ) ; 125 Size = MAP_APPFONT ( 50 , 14 ) ; 126 TabStop = TRUE ; 127 DefButton = TRUE ; 128 }; 129 CancelButton PB_CANCEL 130 { 131 Pos = MAP_APPFONT ( 183 , 23 ) ; 132 Size = MAP_APPFONT ( 50 , 14 ) ; 133 TabStop = TRUE ; 134 }; 135 HelpButton PB_HELP 136 { 137 Pos = MAP_APPFONT ( 183 , 43 ) ; 138 Size = MAP_APPFONT ( 50 , 14 ) ; 139 TabStop = TRUE ; 140 }; 141 String STR_SYS_CHARSET 142 { 143 Text [ en-US ] = "System"; 144 }; 145 Text [ en-US ] = "ASCII Filter Options"; 146}; 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184