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