merge the formfield patch from ooo-build
[ooovba.git] / sfx2 / source / dialog / srchdlg.src
blob50086855234177df9638a3fd35438ee8ac1ea502
1 /*************************************************************************
2  *
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  * 
5  * Copyright 2008 by Sun Microsystems, Inc.
6  *
7  * OpenOffice.org - a multi-platform office productivity suite
8  *
9  * $RCSfile: srchdlg.src,v $
10  * $Revision: 1.9 $
11  *
12  * This file is part of OpenOffice.org.
13  *
14  * OpenOffice.org is free software: you can redistribute it and/or modify
15  * it under the terms of the GNU Lesser General Public License version 3
16  * only, as published by the Free Software Foundation.
17  *
18  * OpenOffice.org is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU Lesser General Public License version 3 for more details
22  * (a copy is included in the LICENSE file that accompanied this code).
23  *
24  * You should have received a copy of the GNU Lesser General Public License
25  * version 3 along with OpenOffice.org.  If not, see
26  * <http://www.openoffice.org/license.html>
27  * for a copy of the LGPLv3 License.
28  *
29  ************************************************************************/
31 #ifndef _SFX_SRCHDLG_HRC_
32 #include "srchdlg.hrc"
33 #endif
34 #ifndef _SFX_DIALOG_HRC
35 #include "dialog.hrc"
36 #endif
37 #ifndef _SFX_HELPID_HRC
38 #include "helpid.hrc"
39 #endif
41 ModelessDialog RID_DLG_SEARCH
43     HelpId = HID_SEARCHDIALOG;
44     OutputSize = TRUE;
45     Moveable = TRUE;
46     Closeable = TRUE;
47     Hide = TRUE;
48     Size = MAP_APPFONT( 218, 84 );
49     Text [ en-US ] = "Find on this Page";
50     FixedText FT_SEARCH
51     {
52         Pos = MAP_APPFONT( 6, 3 );
53         Size = MAP_APPFONT( 150, 8 );
54         Text [ en-US ] = "~Search for";
55     };
56     ComboBox ED_SEARCH
57     {
58         Border = TRUE;
59         Pos = MAP_APPFONT( 6, 14 );
60         Size = MAP_APPFONT( 150, 50 );
61         DropDown = TRUE ;
62         TabStop = TRUE;
63     };
64     CheckBox CB_WHOLEWORDS
65     {
66         Pos = MAP_APPFONT( 6, 29 );
67         Size = MAP_APPFONT( 150, 10 );
68         Text [ en-US ] = "~Whole words only" ;
69         TabStop = TRUE;
70     };
71     CheckBox CB_MATCHCASE
72     {
73         Pos = MAP_APPFONT( 6, 42 );
74         Size = MAP_APPFONT( 150, 10 );
75         Text[ en-US ] = "~Match case";
76         TabStop = TRUE;
77     };
78     CheckBox CB_WRAPAROUND
79     {
80         Pos = MAP_APPFONT( 6, 55 );
81         Size = MAP_APPFONT( 150, 10 );
82         Text [ en-US ] = "Wrap ~around" ;
83         TabStop = TRUE;
84     };
85     CheckBox CB_BACKWARDS
86     {
87         Pos = MAP_APPFONT( 6, 68 );
88         Size = MAP_APPFONT( 150, 10 );
89         Text [ en-US ] = "~Backwards" ;
90         TabStop = TRUE;
91     };
92     PushButton PB_FIND
93     {
94         Pos = MAP_APPFONT( 162, 6 );
95         Size = MAP_APPFONT( 50, 14 );
96         Text [ en-US ] = "~Find" ;
97         TabStop = TRUE;
98         DefButton = TRUE ;
99     };
100     CancelButton PB_CANCELFIND
101     {
102         Pos = MAP_APPFONT( 162, 23 );
103         Size = MAP_APPFONT( 50, 14 );
104         Text [ en-US ] = "~Close" ;
105         TabStop = TRUE;
106     };
108     String STR_TOGGLE
109     {
110         Text [ en-US ] = "Wrap ~around" ;
111     };