1*8414840eSAndrew Rist/************************************************************** 2cdf0e10cSrcweir * 3*8414840eSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4*8414840eSAndrew Rist * or more contributor license agreements. See the NOTICE file 5*8414840eSAndrew Rist * distributed with this work for additional information 6*8414840eSAndrew Rist * regarding copyright ownership. The ASF licenses this file 7*8414840eSAndrew Rist * to you under the Apache License, Version 2.0 (the 8*8414840eSAndrew Rist * "License"); you may not use this file except in compliance 9*8414840eSAndrew Rist * with the License. You may obtain a copy of the License at 10*8414840eSAndrew Rist * 11*8414840eSAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12*8414840eSAndrew Rist * 13*8414840eSAndrew Rist * Unless required by applicable law or agreed to in writing, 14*8414840eSAndrew Rist * software distributed under the License is distributed on an 15*8414840eSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*8414840eSAndrew Rist * KIND, either express or implied. See the License for the 17*8414840eSAndrew Rist * specific language governing permissions and limitations 18*8414840eSAndrew Rist * under the License. 19*8414840eSAndrew Rist * 20*8414840eSAndrew Rist *************************************************************/ 21*8414840eSAndrew Rist 22*8414840eSAndrew Rist 23cdf0e10cSrcweir#ifndef _FMSEARCH_HRC 24cdf0e10cSrcweir#define _FMSEARCH_HRC 25cdf0e10cSrcweir 26cdf0e10cSrcweir#include "svl/solar.hrc" 27cdf0e10cSrcweir 28cdf0e10cSrcweir#define RID_SVX_DLG_INPUTRECORDNO (RID_FORMS_START + 10) 29cdf0e10cSrcweir#define RID_SVX_DLG_SHOWGRIDCOLUMNS (RID_FORMS_START + 11) 30cdf0e10cSrcweir#define RID_SVXDLG_SEARCHFORM (RID_FORMS_START + 7) 31cdf0e10cSrcweir#define RID_STR_SEARCH_ANYWHERE (RID_FORMS_START + 85) 32cdf0e10cSrcweir#define RID_STR_SEARCH_BEGINNING (RID_FORMS_START + 86) 33cdf0e10cSrcweir#define RID_STR_SEARCH_END (RID_FORMS_START + 87) 34cdf0e10cSrcweir#define RID_STR_SEARCH_WHOLE (RID_FORMS_START + 88) 35cdf0e10cSrcweir#define RID_STR_FROM_TOP (RID_FORMS_START + 74) 36cdf0e10cSrcweir#define RID_STR_FROM_BOTTOM (RID_FORMS_START + 75) 37cdf0e10cSrcweir#define RID_SVXERR_SEARCH_NORECORD (RID_FORMS_START + 8) 38cdf0e10cSrcweir#define RID_SVXERR_SEARCH_GENERAL_ERROR (RID_FORMS_START + 9) 39cdf0e10cSrcweir#define RID_STR_OVERFLOW_FORWARD (RID_FORMS_START + 34) 40cdf0e10cSrcweir#define RID_STR_OVERFLOW_BACKWARD (RID_FORMS_START + 35) 41cdf0e10cSrcweir#define RID_STR_SEARCH_COUNTING (RID_FORMS_START + 76) 42cdf0e10cSrcweir 43cdf0e10cSrcweir#define FT_SEARCHTEXT 1 44cdf0e10cSrcweir#define FT_FORM 2 45cdf0e10cSrcweir#define FT_POSITION 3 46cdf0e10cSrcweir#define FT_RECORDLABEL 4 47cdf0e10cSrcweir#define FT_RECORD 5 48cdf0e10cSrcweir#define FT_HINT 6 49cdf0e10cSrcweir 50cdf0e10cSrcweir 51cdf0e10cSrcweir#define CMB_SEARCHTEXT 1 52cdf0e10cSrcweir 53cdf0e10cSrcweir#define RB_ALLFIELDS 1 54cdf0e10cSrcweir#define RB_SINGLEFIELD 2 55cdf0e10cSrcweir#define RB_SEARCHFORTEXT 3 56cdf0e10cSrcweir#define RB_SEARCHFORNULL 4 57cdf0e10cSrcweir#define RB_SEARCHFORNOTNULL 5 58cdf0e10cSrcweir 59cdf0e10cSrcweir#define LB_FORM 1 60cdf0e10cSrcweir#define LB_FIELD 2 61cdf0e10cSrcweir#define LB_POSITION 3 62cdf0e10cSrcweir 63cdf0e10cSrcweir#define PB_APPROXSETTINGS 1 64cdf0e10cSrcweir#define PB_SEARCH 2 65cdf0e10cSrcweir#define PB_SOUNDSLIKESETTINGS 3 66cdf0e10cSrcweir 67cdf0e10cSrcweir#define FL_SEARCHFOR 1 68cdf0e10cSrcweir#define FL_WHERE 2 69cdf0e10cSrcweir#define FL_OPTIONS 3 70cdf0e10cSrcweir#define FL_STATE 4 71cdf0e10cSrcweir 72cdf0e10cSrcweir#define CB_USEFORMATTER 1 73cdf0e10cSrcweir#define CB_BACKWARD 2 74cdf0e10cSrcweir#define CB_STARTOVER 3 75cdf0e10cSrcweir#define CB_CASE 4 76cdf0e10cSrcweir#define CB_WILDCARD 5 77cdf0e10cSrcweir#define CB_REGULAR 6 78cdf0e10cSrcweir#define CB_APPROX 7 79cdf0e10cSrcweir#define CB_HALFFULLFORMS 8 80cdf0e10cSrcweir#define CB_SOUNDSLIKECJK 9 81cdf0e10cSrcweir 82cdf0e10cSrcweir#endif // _FMSEARCH_HRC 83