xref: /aoo4110/main/sfx2/source/dialog/srchdlg.src (revision b1cdbd2c)
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
24#ifndef _SFX_SRCHDLG_HRC_
25#include "srchdlg.hrc"
26#endif
27#ifndef _SFX_DIALOG_HRC
28#include "dialog.hrc"
29#endif
30#ifndef _SFX_HELPID_HRC
31#include "helpid.hrc"
32#endif
33
34ModelessDialog RID_DLG_SEARCH
35{
36	HelpId = HID_SEARCHDIALOG;
37	OutputSize = TRUE;
38	Moveable = TRUE;
39	Closeable = TRUE;
40	Hide = TRUE;
41	Size = MAP_APPFONT( 218, 84 );
42	Text [ en-US ] = "Find on this Page";
43	FixedText FT_SEARCH
44	{
45		Pos = MAP_APPFONT( 6, 3 );
46		Size = MAP_APPFONT( 150, 8 );
47		Text [ en-US ] = "~Search for";
48	};
49	ComboBox ED_SEARCH
50	{
51	    HelpID = "sfx2:ComboBox:RID_DLG_SEARCH:ED_SEARCH";
52		Border = TRUE;
53		Pos = MAP_APPFONT( 6, 14 );
54		Size = MAP_APPFONT( 150, 50 );
55		DropDown = TRUE ;
56		TabStop = TRUE;
57	};
58	CheckBox CB_WHOLEWORDS
59	{
60	    HelpID = "sfx2:CheckBox:RID_DLG_SEARCH:CB_WHOLEWORDS";
61		Pos = MAP_APPFONT( 6, 29 );
62		Size = MAP_APPFONT( 150, 10 );
63		Text [ en-US ] = "~Whole words only" ;
64		TabStop = TRUE;
65	};
66	CheckBox CB_MATCHCASE
67	{
68	    HelpID = "sfx2:CheckBox:RID_DLG_SEARCH:CB_MATCHCASE";
69		Pos = MAP_APPFONT( 6, 42 );
70		Size = MAP_APPFONT( 150, 10 );
71		Text[ en-US ] = "~Match case";
72		TabStop = TRUE;
73	};
74	CheckBox CB_WRAPAROUND
75	{
76	    HelpID = "sfx2:CheckBox:RID_DLG_SEARCH:CB_WRAPAROUND";
77		Pos = MAP_APPFONT( 6, 55 );
78		Size = MAP_APPFONT( 150, 10 );
79		Text [ en-US ] = "Wrap ~around" ;
80		TabStop = TRUE;
81	};
82	CheckBox CB_BACKWARDS
83	{
84	    HelpID = "sfx2:CheckBox:RID_DLG_SEARCH:CB_BACKWARDS";
85		Pos = MAP_APPFONT( 6, 68 );
86		Size = MAP_APPFONT( 150, 10 );
87		Text [ en-US ] = "~Backwards" ;
88		TabStop = TRUE;
89	};
90	PushButton PB_FIND
91	{
92	    HelpID = "sfx2:PushButton:RID_DLG_SEARCH:PB_FIND";
93		Pos = MAP_APPFONT( 162, 6 );
94		Size = MAP_APPFONT( 50, 14 );
95		Text [ en-US ] = "~Find" ;
96		TabStop = TRUE;
97		DefButton = TRUE ;
98	};
99	CancelButton PB_CANCELFIND
100	{
101		Pos = MAP_APPFONT( 162, 23 );
102		Size = MAP_APPFONT( 50, 14 );
103		Text [ en-US ] = "~Close" ;
104		TabStop = TRUE;
105	};
106
107	String STR_TOGGLE
108	{
109		Text [ en-US ] = "Wrap ~around" ;
110	};
111};
112
113