109a1d057SAndrew Rist/************************************************************** 2cdf0e10cSrcweir * 309a1d057SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 409a1d057SAndrew Rist * or more contributor license agreements. See the NOTICE file 509a1d057SAndrew Rist * distributed with this work for additional information 609a1d057SAndrew Rist * regarding copyright ownership. The ASF licenses this file 709a1d057SAndrew Rist * to you under the Apache License, Version 2.0 (the 809a1d057SAndrew Rist * "License"); you may not use this file except in compliance 909a1d057SAndrew Rist * with the License. You may obtain a copy of the License at 10cdf0e10cSrcweir * 1109a1d057SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12cdf0e10cSrcweir * 1309a1d057SAndrew Rist * Unless required by applicable law or agreed to in writing, 1409a1d057SAndrew Rist * software distributed under the License is distributed on an 1509a1d057SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 1609a1d057SAndrew Rist * KIND, either express or implied. See the License for the 1709a1d057SAndrew Rist * specific language governing permissions and limitations 1809a1d057SAndrew Rist * under the License. 19cdf0e10cSrcweir * 2009a1d057SAndrew Rist *************************************************************/ 2109a1d057SAndrew Rist 2209a1d057SAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir// include --------------------------------------------------------------- 25cdf0e10cSrcweir 26cdf0e10cSrcweir#include <svx/dialogs.hrc> 27cdf0e10cSrcweir#include "srchdlg.hrc" 28cdf0e10cSrcweir#include <sfx2/sfxcommands.h> 29cdf0e10cSrcweir 30cdf0e10cSrcweir// Strings --------------------------------------------------------------- 31cdf0e10cSrcweir 32cdf0e10cSrcweirString RID_SVXSTR_SEARCH_STYLES 33cdf0e10cSrcweir{ 34cdf0e10cSrcweir Text [ en-US ] = "Including Styles" ; 35cdf0e10cSrcweir}; 36cdf0e10cSrcweirString RID_SVXSTR_SEARCH 37cdf0e10cSrcweir{ 38cdf0e10cSrcweir Text [ en-US ] = " (Search)" ; 39cdf0e10cSrcweir}; 40cdf0e10cSrcweirString RID_SVXSTR_REPLACE 41cdf0e10cSrcweir{ 42cdf0e10cSrcweir Text [ en-US ] = " (Replace)" ; 43cdf0e10cSrcweir}; 44cdf0e10cSrcweir 45cdf0e10cSrcweir// RID_SVXDLG_SEARCH ----------------------------------------------------- 46cdf0e10cSrcweir 47cdf0e10cSrcweirModelessDialog RID_SVXDLG_SEARCH 48cdf0e10cSrcweir{ 49cdf0e10cSrcweir HelpId = CMD_SID_SEARCH_DLG ; 50cdf0e10cSrcweir OutputSize = TRUE ; 51cdf0e10cSrcweir Hide = TRUE ; 52cdf0e10cSrcweir SvLook = TRUE ; 53cdf0e10cSrcweir Size = MAP_APPFONT ( 200, 155 ) ; 54cdf0e10cSrcweir Text [ en-US ] = "Find & Replace" ; 55cdf0e10cSrcweir Moveable = TRUE ; 56cdf0e10cSrcweir FixedText FT_SEARCH 57cdf0e10cSrcweir { 58cdf0e10cSrcweir Pos = MAP_APPFONT ( 6, 7 ) ; 59cdf0e10cSrcweir Size = MAP_APPFONT ( 132, 8 ) ; 60cdf0e10cSrcweir Text [ en-US ] = "~Search for" ; 61cdf0e10cSrcweir }; 62cdf0e10cSrcweir ComboBox ED_SEARCH 63cdf0e10cSrcweir { 64cdf0e10cSrcweir HelpID = "svx:ComboBox:RID_SVXDLG_SEARCH:ED_SEARCH" ; 65cdf0e10cSrcweir Pos = MAP_APPFONT ( 6, 18 ) ; 66cdf0e10cSrcweir Size = MAP_APPFONT ( 132, 98 ) ; 67cdf0e10cSrcweir TabStop = TRUE ; 68cdf0e10cSrcweir DropDown = TRUE ; 69cdf0e10cSrcweir }; 70cdf0e10cSrcweir ListBox LB_SEARCH 71cdf0e10cSrcweir { 72cdf0e10cSrcweir HelpID = "svx:ListBox:RID_SVXDLG_SEARCH:LB_SEARCH" ; 73cdf0e10cSrcweir Border = TRUE ; 74cdf0e10cSrcweir Pos = MAP_APPFONT ( 6, 18 ) ; 75cdf0e10cSrcweir Size = MAP_APPFONT ( 132, 98 ) ; 76cdf0e10cSrcweir TabStop = TRUE ; 77cdf0e10cSrcweir DropDown = TRUE ; 78cdf0e10cSrcweir Hide = TRUE ; 79cdf0e10cSrcweir Sort = TRUE ; 80cdf0e10cSrcweir }; 81cdf0e10cSrcweir FixedText FT_SEARCH_ATTR 82cdf0e10cSrcweir { 83cdf0e10cSrcweir Pos = MAP_APPFONT ( 9, 35 ) ; 84cdf0e10cSrcweir Size = MAP_APPFONT ( 129, 16 ) ; 85cdf0e10cSrcweir WordBreak = TRUE ; 86cdf0e10cSrcweir Hide = TRUE ; 87cdf0e10cSrcweir }; 88cdf0e10cSrcweir FixedText FT_SEARCH_FORMATS 89cdf0e10cSrcweir { 90cdf0e10cSrcweir Pos = MAP_APPFONT ( 9, 35 ) ; 91cdf0e10cSrcweir Size = MAP_APPFONT ( 129, 16 ) ; 92cdf0e10cSrcweir WordBreak = TRUE ; 93cdf0e10cSrcweir Hide = TRUE ; 94cdf0e10cSrcweir }; 95cdf0e10cSrcweir FixedText FT_REPLACE 96cdf0e10cSrcweir { 97cdf0e10cSrcweir Pos = MAP_APPFONT ( 6, 54 ) ; 98cdf0e10cSrcweir Size = MAP_APPFONT ( 132, 8 ) ; 99cdf0e10cSrcweir Text [ en-US ] = "Re~place with" ; 100cdf0e10cSrcweir }; 101cdf0e10cSrcweir ComboBox ED_REPLACE 102cdf0e10cSrcweir { 103cdf0e10cSrcweir HelpID = "svx:ComboBox:RID_SVXDLG_SEARCH:ED_REPLACE" ; 104cdf0e10cSrcweir Pos = MAP_APPFONT ( 6, 65 ) ; 105cdf0e10cSrcweir Size = MAP_APPFONT ( 132, 98 ) ; 106cdf0e10cSrcweir TabStop = TRUE ; 107cdf0e10cSrcweir DropDown = TRUE ; 108cdf0e10cSrcweir }; 109cdf0e10cSrcweir ListBox LB_REPLACE 110cdf0e10cSrcweir { 111cdf0e10cSrcweir HelpID = "svx:ListBox:RID_SVXDLG_SEARCH:LB_REPLACE" ; 112cdf0e10cSrcweir Border = TRUE ; 113cdf0e10cSrcweir Pos = MAP_APPFONT ( 6, 65 ) ; 114cdf0e10cSrcweir Size = MAP_APPFONT ( 132, 98 ) ; 115cdf0e10cSrcweir TabStop = TRUE ; 116cdf0e10cSrcweir DropDown = TRUE ; 117cdf0e10cSrcweir Hide = TRUE ; 118cdf0e10cSrcweir Sort = TRUE ; 119cdf0e10cSrcweir }; 120cdf0e10cSrcweir FixedText FT_REPLACE_ATTR 121cdf0e10cSrcweir { 122cdf0e10cSrcweir Pos = MAP_APPFONT ( 9, 82 ) ; 123cdf0e10cSrcweir Size = MAP_APPFONT ( 129, 16 ) ; 124cdf0e10cSrcweir WordBreak = TRUE ; 125cdf0e10cSrcweir Hide = TRUE ; 126cdf0e10cSrcweir }; 127cdf0e10cSrcweir FixedText FT_REPLACE_FORMATS 128cdf0e10cSrcweir { 129cdf0e10cSrcweir Pos = MAP_APPFONT ( 9, 82 ) ; 130cdf0e10cSrcweir Size = MAP_APPFONT ( 129, 16 ) ; 131cdf0e10cSrcweir WordBreak = TRUE ; 132cdf0e10cSrcweir Hide = TRUE ; 133cdf0e10cSrcweir }; 134cdf0e10cSrcweir PushButton BTN_SEARCH 135cdf0e10cSrcweir { 136cdf0e10cSrcweir HelpID = "svx:PushButton:RID_SVXDLG_SEARCH:BTN_SEARCH" ; 137cdf0e10cSrcweir Pos = MAP_APPFONT ( 144, 9 ) ; 138cdf0e10cSrcweir Size = MAP_APPFONT ( 50, 14 ) ; 139cdf0e10cSrcweir Text [ en-US ] = "~Find" ; 140cdf0e10cSrcweir TabStop = TRUE ; 141cdf0e10cSrcweir DefButton = TRUE ; 142cdf0e10cSrcweir }; 143cdf0e10cSrcweir PushButton BTN_SEARCH_ALL 144cdf0e10cSrcweir { 145cdf0e10cSrcweir HelpID = "svx:PushButton:RID_SVXDLG_SEARCH:BTN_SEARCH_ALL" ; 146cdf0e10cSrcweir Pos = MAP_APPFONT ( 144, 26 ) ; 147cdf0e10cSrcweir Size = MAP_APPFONT ( 50, 14 ) ; 148cdf0e10cSrcweir Text [ en-US ] = "Find ~All" ; 149cdf0e10cSrcweir TabStop = TRUE ; 150cdf0e10cSrcweir }; 151cdf0e10cSrcweir FixedLine FL_SEARCH_COMMAND 152cdf0e10cSrcweir { 153cdf0e10cSrcweir Pos = MAP_APPFONT ( 141, 44 ) ; 154cdf0e10cSrcweir Size = MAP_APPFONT ( 56, 8 ) ; 155cdf0e10cSrcweir }; 156cdf0e10cSrcweir PushButton BTN_REPLACE 157cdf0e10cSrcweir { 158cdf0e10cSrcweir HelpID = "svx:PushButton:RID_SVXDLG_SEARCH:BTN_REPLACE" ; 159cdf0e10cSrcweir Pos = MAP_APPFONT ( 144, 56 ) ; 160cdf0e10cSrcweir Size = MAP_APPFONT ( 50, 14 ) ; 161cdf0e10cSrcweir Text [ en-US ] = "~Replace" ; 162cdf0e10cSrcweir TabStop = TRUE ; 163cdf0e10cSrcweir }; 164cdf0e10cSrcweir PushButton BTN_REPLACE_ALL 165cdf0e10cSrcweir { 166cdf0e10cSrcweir HelpID = "svx:PushButton:RID_SVXDLG_SEARCH:BTN_REPLACE_ALL" ; 167cdf0e10cSrcweir Pos = MAP_APPFONT ( 144, 73 ) ; 168cdf0e10cSrcweir Size = MAP_APPFONT ( 50, 14 ) ; 169cdf0e10cSrcweir Text [ en-US ] = "Replace A~ll" ; 170cdf0e10cSrcweir TabStop = TRUE ; 171cdf0e10cSrcweir }; 172cdf0e10cSrcweir FixedLine FL_SEARCH_COMPONENT 173cdf0e10cSrcweir { 174cdf0e10cSrcweir Pos = MAP_APPFONT ( 141, 91 ) ; 175cdf0e10cSrcweir Size = MAP_APPFONT ( 56, 8 ) ; 176cdf0e10cSrcweir Hide = TRUE ; 177cdf0e10cSrcweir }; 178cdf0e10cSrcweir PushButton BTN_COMPONENT_1 179cdf0e10cSrcweir { 180cdf0e10cSrcweir HelpID = "svx:PushButton:RID_SVXDLG_SEARCH:BTN_COMPONENT_1" ; 181cdf0e10cSrcweir Pos = MAP_APPFONT ( 144, 103 ) ; 182cdf0e10cSrcweir Size = MAP_APPFONT ( 50, 14 ) ; 183cdf0e10cSrcweir TabStop = TRUE ; 184cdf0e10cSrcweir Hide = TRUE ; 185cdf0e10cSrcweir }; 186cdf0e10cSrcweir PushButton BTN_COMPONENT_2 187cdf0e10cSrcweir { 188cdf0e10cSrcweir HelpID = "svx:PushButton:RID_SVXDLG_SEARCH:BTN_COMPONENT_2" ; 189cdf0e10cSrcweir Pos = MAP_APPFONT ( 144, 120 ) ; 190cdf0e10cSrcweir Size = MAP_APPFONT ( 50, 14 ) ; 191cdf0e10cSrcweir TabStop = TRUE ; 192cdf0e10cSrcweir Hide = TRUE ; 193cdf0e10cSrcweir }; 194cdf0e10cSrcweir CheckBox CB_MATCH_CASE 195cdf0e10cSrcweir { 196cdf0e10cSrcweir HelpID = "svx:CheckBox:RID_SVXDLG_SEARCH:CB_MATCH_CASE" ; 197cdf0e10cSrcweir Pos = MAP_APPFONT ( 12, 101 ) ; 198cdf0e10cSrcweir Size = MAP_APPFONT ( 126, 10 ) ; 199cdf0e10cSrcweir TabStop = TRUE ; 200cdf0e10cSrcweir Text [ en-US ] = "Ma~tch case" ; 201cdf0e10cSrcweir }; 202cdf0e10cSrcweir CheckBox CB_WHOLE_WORDS 203cdf0e10cSrcweir { 204cdf0e10cSrcweir HelpID = "svx:CheckBox:RID_SVXDLG_SEARCH:CB_WHOLE_WORDS" ; 205cdf0e10cSrcweir Pos = MAP_APPFONT ( 12, 114 ) ; 206cdf0e10cSrcweir Size = MAP_APPFONT ( 126, 10 ) ; 207cdf0e10cSrcweir Text [ en-US ] = "Whole wor~ds only" ; 208cdf0e10cSrcweir TabStop = TRUE ; 209cdf0e10cSrcweir }; 210cdf0e10cSrcweir FixedLine FL_BUTTONS 211cdf0e10cSrcweir { 212cdf0e10cSrcweir Pos = MAP_APPFONT ( 0, 124 ) ; 213cdf0e10cSrcweir Size = MAP_APPFONT ( 200, 8 ) ; 214cdf0e10cSrcweir }; 215cdf0e10cSrcweir MoreButton BTN_MORE 216cdf0e10cSrcweir { 217cdf0e10cSrcweir HelpID = "svx:MoreButton:RID_SVXDLG_SEARCH:BTN_MORE" ; 218cdf0e10cSrcweir Pos = MAP_APPFONT ( 6, 135 ) ; 219*49cf81a2Smseidel Size = MAP_APPFONT ( 65, 14 ) ; 220cdf0e10cSrcweir TabStop = TRUE ; 221cdf0e10cSrcweir MapUnit = MAP_APPFONT ; 222cdf0e10cSrcweir Delta = 174 ; 223cdf0e10cSrcweir State = FALSE ; 224cdf0e10cSrcweir }; 225cdf0e10cSrcweir HelpButton BTN_HELP 226cdf0e10cSrcweir { 227cdf0e10cSrcweir Pos = MAP_APPFONT ( 88, 135 ) ; 228cdf0e10cSrcweir Size = MAP_APPFONT ( 50, 14 ) ; 229cdf0e10cSrcweir TabStop = TRUE ; 230cdf0e10cSrcweir }; 231cdf0e10cSrcweir CancelButton BTN_CLOSE 232cdf0e10cSrcweir { 233cdf0e10cSrcweir Pos = MAP_APPFONT ( 144, 135 ) ; 234cdf0e10cSrcweir Size = MAP_APPFONT ( 50, 14 ) ; 235cdf0e10cSrcweir Text [ en-US ] = "~Close" ; 236cdf0e10cSrcweir TabStop = TRUE ; 237cdf0e10cSrcweir }; 238cdf0e10cSrcweir FixedLine FL_OPTIONS 239cdf0e10cSrcweir { 240cdf0e10cSrcweir Pos = MAP_APPFONT ( 6, 152 ) ; 241cdf0e10cSrcweir Size = MAP_APPFONT ( 191, 8 ) ; 242cdf0e10cSrcweir Hide = TRUE ; 243cdf0e10cSrcweir }; 244cdf0e10cSrcweir CheckBox CB_SELECTIONS 245cdf0e10cSrcweir { 246cdf0e10cSrcweir HelpID = "svx:CheckBox:RID_SVXDLG_SEARCH:CB_SELECTIONS" ; 247cdf0e10cSrcweir Pos = MAP_APPFONT ( 12, 163 ) ; 248cdf0e10cSrcweir Size = MAP_APPFONT ( 126, 10 ) ; 249cdf0e10cSrcweir Text [ en-US ] = "C~urrent selection only" ; 250cdf0e10cSrcweir TabStop = TRUE ; 251cdf0e10cSrcweir Hide = TRUE ; 252cdf0e10cSrcweir }; 253cdf0e10cSrcweir CheckBox CB_BACKWARDS 254cdf0e10cSrcweir { 255cdf0e10cSrcweir HelpID = "svx:CheckBox:RID_SVXDLG_SEARCH:CB_BACKWARDS" ; 256cdf0e10cSrcweir Pos = MAP_APPFONT ( 12, 176 ) ; 257cdf0e10cSrcweir Size = MAP_APPFONT ( 126, 10 ) ; 258cdf0e10cSrcweir Text [ en-US ] = "Bac~kwards" ; 259cdf0e10cSrcweir TabStop = TRUE ; 260cdf0e10cSrcweir Hide = TRUE ; 261cdf0e10cSrcweir }; 262cdf0e10cSrcweir CheckBox CB_REGEXP 263cdf0e10cSrcweir { 264cdf0e10cSrcweir HelpID = "svx:CheckBox:RID_SVXDLG_SEARCH:CB_REGEXP" ; 265cdf0e10cSrcweir Pos = MAP_APPFONT ( 12, 189 ) ; 266cdf0e10cSrcweir Size = MAP_APPFONT ( 126, 10 ) ; 267cdf0e10cSrcweir Text [ en-US ] = "Regular e~xpressions" ; 268cdf0e10cSrcweir TabStop = TRUE ; 269cdf0e10cSrcweir Hide = TRUE ; 270cdf0e10cSrcweir }; 271cdf0e10cSrcweir CheckBox CB_SIMILARITY 272cdf0e10cSrcweir { 273cdf0e10cSrcweir HelpID = "svx:CheckBox:RID_SVXDLG_SEARCH:CB_SIMILARITY" ; 274cdf0e10cSrcweir Pos = MAP_APPFONT ( 12, 204 ) ; 275cdf0e10cSrcweir Size = MAP_APPFONT ( 109, 10 ) ; 276cdf0e10cSrcweir Text [ en-US ] = "S~imilarity search" ; 277cdf0e10cSrcweir TabStop = TRUE ; 278cdf0e10cSrcweir Hide = TRUE ; 279cdf0e10cSrcweir }; 280cdf0e10cSrcweir PushButton PB_SIMILARITY 281cdf0e10cSrcweir { 282cdf0e10cSrcweir HelpID = "svx:PushButton:RID_SVXDLG_SEARCH:PB_SIMILARITY" ; 283cdf0e10cSrcweir Pos = MAP_APPFONT ( 124, 202 ) ; 284cdf0e10cSrcweir Size = MAP_APPFONT ( 14, 14 ) ; 285cdf0e10cSrcweir Text = "~..." ; 286cdf0e10cSrcweir TabStop = TRUE ; 287cdf0e10cSrcweir Hide = TRUE ; 288cdf0e10cSrcweir }; 289cdf0e10cSrcweir CheckBox CB_LAYOUTS 290cdf0e10cSrcweir { 291cdf0e10cSrcweir HelpID = "svx:CheckBox:RID_SVXDLG_SEARCH:CB_LAYOUTS" ; 292cdf0e10cSrcweir Pos = MAP_APPFONT ( 12, 219 ) ; 293cdf0e10cSrcweir Size = MAP_APPFONT ( 126, 10 ) ; 294cdf0e10cSrcweir Text [ en-US ] = "Search for St~yles" ; 295cdf0e10cSrcweir TabStop = TRUE ; 296cdf0e10cSrcweir Hide = TRUE ; 297cdf0e10cSrcweir }; 298cdf0e10cSrcweir CheckBox CB_NOTES 299cdf0e10cSrcweir { 300cdf0e10cSrcweir HelpID = "svx:CheckBox:RID_SVXDLG_SEARCH:CB_NOTES" ; 301cdf0e10cSrcweir Pos = MAP_APPFONT ( 12, 232 ) ; 302cdf0e10cSrcweir Size = MAP_APPFONT ( 126, 10 ) ; 303cdf0e10cSrcweir TabStop = TRUE ; 304cdf0e10cSrcweir Text [ en-US ] = "Notes" ; 305cdf0e10cSrcweir }; 306cdf0e10cSrcweir CheckBox CB_JAP_MATCH_FULL_HALF_WIDTH 307cdf0e10cSrcweir { 308cdf0e10cSrcweir HelpID = "svx:CheckBox:RID_SVXDLG_SEARCH:CB_JAP_MATCH_FULL_HALF_WIDTH" ; 309cdf0e10cSrcweir Pos = MAP_APPFONT ( 12, 247 ) ; 310cdf0e10cSrcweir Size = MAP_APPFONT ( 126, 10 ) ; 311cdf0e10cSrcweir TabStop = TRUE ; 312cdf0e10cSrcweir Text [ en-US ] = "Match character width" ; 313cdf0e10cSrcweir Hide = TRUE ; 314cdf0e10cSrcweir }; 315cdf0e10cSrcweir CheckBox CB_JAP_SOUNDS_LIKE 316cdf0e10cSrcweir { 317cdf0e10cSrcweir HelpID = "svx:CheckBox:RID_SVXDLG_SEARCH:CB_JAP_SOUNDS_LIKE" ; 318cdf0e10cSrcweir Pos = MAP_APPFONT ( 12, 260 ) ; 319cdf0e10cSrcweir Size = MAP_APPFONT ( 109, 10 ) ; 320cdf0e10cSrcweir TabStop = TRUE ; 321cdf0e10cSrcweir Text [ en-US ] = "Sounds like (Japanese)" ; 322cdf0e10cSrcweir Hide = TRUE ; 323cdf0e10cSrcweir }; 324cdf0e10cSrcweir PushButton PB_JAP_OPTIONS 325cdf0e10cSrcweir { 326cdf0e10cSrcweir HelpID = "svx:PushButton:RID_SVXDLG_SEARCH:PB_JAP_OPTIONS" ; 327cdf0e10cSrcweir Pos = MAP_APPFONT ( 124, 258 ) ; 328cdf0e10cSrcweir Size = MAP_APPFONT ( 14, 14 ) ; 329cdf0e10cSrcweir Text = "..." ; 330cdf0e10cSrcweir TabStop = TRUE ; 331cdf0e10cSrcweir Hide = TRUE ; 332cdf0e10cSrcweir }; 333cdf0e10cSrcweir PushButton BTN_ATTRIBUTE 334cdf0e10cSrcweir { 335cdf0e10cSrcweir HelpID = "svx:PushButton:RID_SVXDLG_SEARCH:BTN_ATTRIBUTE" ; 336cdf0e10cSrcweir Pos = MAP_APPFONT ( 144, 163 ) ; 337cdf0e10cSrcweir Size = MAP_APPFONT ( 50, 14 ) ; 338cdf0e10cSrcweir Text [ en-US ] = "Attri~butes..." ; 339cdf0e10cSrcweir TabStop = TRUE ; 340cdf0e10cSrcweir Hide = TRUE ; 341cdf0e10cSrcweir }; 342cdf0e10cSrcweir PushButton BTN_FORMAT 343cdf0e10cSrcweir { 344cdf0e10cSrcweir HelpID = "svx:PushButton:RID_SVXDLG_SEARCH:BTN_FORMAT" ; 345cdf0e10cSrcweir Pos = MAP_APPFONT ( 144, 180 ) ; 346cdf0e10cSrcweir Size = MAP_APPFONT ( 50, 14 ) ; 347cdf0e10cSrcweir Text [ en-US ] = "For~mat..." ; 348cdf0e10cSrcweir TabStop = TRUE ; 349cdf0e10cSrcweir Hide = TRUE ; 350cdf0e10cSrcweir }; 351cdf0e10cSrcweir PushButton BTN_NOFORMAT 352cdf0e10cSrcweir { 353cdf0e10cSrcweir HelpID = "svx:PushButton:RID_SVXDLG_SEARCH:BTN_NOFORMAT" ; 354cdf0e10cSrcweir Pos = MAP_APPFONT ( 144, 197 ) ; 355cdf0e10cSrcweir Size = MAP_APPFONT ( 50, 14 ) ; 356cdf0e10cSrcweir Text [ en-US ] = "~No Format" ; 357cdf0e10cSrcweir TabStop = TRUE ; 358cdf0e10cSrcweir Hide = TRUE ; 359cdf0e10cSrcweir }; 360cdf0e10cSrcweir FixedLine FL_CALC 361cdf0e10cSrcweir { 362cdf0e10cSrcweir Pos = MAP_APPFONT ( 6, 272 ) ; 363cdf0e10cSrcweir Size = MAP_APPFONT ( 191, 8 ) ; 364cdf0e10cSrcweir Hide = TRUE ; 365cdf0e10cSrcweir }; 366cdf0e10cSrcweir FixedText FT_CALC_SEARCHIN 367cdf0e10cSrcweir { 368cdf0e10cSrcweir Pos = MAP_APPFONT ( 12, 285 ) ; 369cdf0e10cSrcweir Size = MAP_APPFONT ( 60, 8 ) ; 370cdf0e10cSrcweir Text [ en-US ] = "Search i~n" ; 371cdf0e10cSrcweir Hide = TRUE ; 372cdf0e10cSrcweir }; 373cdf0e10cSrcweir ListBox LB_CALC_SEARCHIN 374cdf0e10cSrcweir { 375cdf0e10cSrcweir HelpID = "svx:ListBox:RID_SVXDLG_SEARCH:LB_CALC_SEARCHIN" ; 376cdf0e10cSrcweir Border = TRUE ; 377cdf0e10cSrcweir Pos = MAP_APPFONT ( 75, 283 ) ; 378cdf0e10cSrcweir Size = MAP_APPFONT ( 63, 48 ) ; 379cdf0e10cSrcweir TabStop = TRUE ; 380cdf0e10cSrcweir DropDown = TRUE ; 381cdf0e10cSrcweir Hide = TRUE ; 382cdf0e10cSrcweir StringList [ en-US ] = 383cdf0e10cSrcweir { 384cdf0e10cSrcweir < "Formulas" ; Default ; > ; 385cdf0e10cSrcweir < "Values" ; Default ; > ; 386cdf0e10cSrcweir < "Notes" ; Default ; > ; 387cdf0e10cSrcweir }; 388cdf0e10cSrcweir }; 389cdf0e10cSrcweir FixedText FT_CALC_SEARCHDIR 390cdf0e10cSrcweir { 391cdf0e10cSrcweir Pos = MAP_APPFONT ( 12, 300 ) ; 392cdf0e10cSrcweir Size = MAP_APPFONT ( 60, 8 ) ; 393cdf0e10cSrcweir Text [ en-US ] = "Search ~direction" ; 394cdf0e10cSrcweir Hide = TRUE ; 395cdf0e10cSrcweir }; 396cdf0e10cSrcweir RadioButton RB_CALC_ROWS 397cdf0e10cSrcweir { 398cdf0e10cSrcweir HelpID = "svx:RadioButton:RID_SVXDLG_SEARCH:RB_CALC_ROWS" ; 399cdf0e10cSrcweir Pos = MAP_APPFONT ( 75, 300 ) ; 400cdf0e10cSrcweir Size = MAP_APPFONT ( 63, 10 ) ; 401cdf0e10cSrcweir Text [ en-US ] = "Ro~ws" ; 402cdf0e10cSrcweir Hide = TRUE ; 403cdf0e10cSrcweir }; 404cdf0e10cSrcweir RadioButton RB_CALC_COLUMNS 405cdf0e10cSrcweir { 406cdf0e10cSrcweir HelpID = "svx:RadioButton:RID_SVXDLG_SEARCH:RB_CALC_COLUMNS" ; 407cdf0e10cSrcweir Pos = MAP_APPFONT ( 75, 313 ) ; 408cdf0e10cSrcweir Size = MAP_APPFONT ( 63, 10 ) ; 409cdf0e10cSrcweir Text [ en-US ] = "Colu~mns" ; 410cdf0e10cSrcweir Hide = TRUE ; 411cdf0e10cSrcweir }; 412cdf0e10cSrcweir CheckBox CB_ALL_SHEETS 413cdf0e10cSrcweir { 414cdf0e10cSrcweir HelpID = "svx:CheckBox:RID_SVXDLG_SEARCH:CB_ALL_SHEETS" ; 415cdf0e10cSrcweir Pos = MAP_APPFONT ( 12, 326 ) ; 416cdf0e10cSrcweir Size = MAP_APPFONT ( 126, 10 ) ; 417cdf0e10cSrcweir Text [ en-US ] = "Search in all sheets" ; 418cdf0e10cSrcweir Hide = TRUE ; 419cdf0e10cSrcweir }; 420cdf0e10cSrcweir 421cdf0e10cSrcweir String STR_WORDCALC 422cdf0e10cSrcweir { 423cdf0e10cSrcweir Text [ en-US ] = "~Entire cells" ; 424cdf0e10cSrcweir }; 425cdf0e10cSrcweir String STR_MORE_BTN 426cdf0e10cSrcweir { 427cdf0e10cSrcweir Text [ en-US ] = "More ~Options" ; 428cdf0e10cSrcweir }; 429cdf0e10cSrcweir String STR_LESS_BTN 430cdf0e10cSrcweir { 431cdf0e10cSrcweir Text [ en-US ] = "Fewer ~Options" ; 432cdf0e10cSrcweir }; 433cdf0e10cSrcweir}; 434cdf0e10cSrcweir 435cdf0e10cSrcweir// ********************************************************************** EOF 436