Bump version to 4.1-6
[LibreOffice.git] / sfx2 / source / dialog / srchdlg.src
blob1f41ef40bc1b8fa8536d64b09e36388be92167de
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  *
9  * This file incorporates work covered by the following license notice:
10  *
11  *   Licensed to the Apache Software Foundation (ASF) under one or more
12  *   contributor license agreements. See the NOTICE file distributed
13  *   with this work for additional information regarding copyright
14  *   ownership. The ASF licenses this file to you under the Apache
15  *   License, Version 2.0 (the "License"); you may not use this file
16  *   except in compliance with the License. You may obtain a copy of
17  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
18  */
20 #include "srchdlg.hrc"
21 #include "dialog.hrc"
22 #include "helpid.hrc"
24 ModelessDialog RID_DLG_SEARCH
26     HelpId = HID_SEARCHDIALOG;
27     OutputSize = TRUE;
28     Moveable = TRUE;
29     Closeable = TRUE;
30     Hide = TRUE;
31     Size = MAP_APPFONT( 218, 84 );
32     Text [ en-US ] = "Find on this Page";
33     FixedText FT_SEARCH
34     {
35         Pos = MAP_APPFONT( 6, 3 );
36         Size = MAP_APPFONT( 150, 8 );
37         Text [ en-US ] = "~Search for";
38     };
39     ComboBox ED_SEARCH
40     {
41         HelpID = "sfx2:ComboBox:RID_DLG_SEARCH:ED_SEARCH";
42         Border = TRUE;
43         Pos = MAP_APPFONT( 6, 14 );
44         Size = MAP_APPFONT( 150, 50 );
45         DropDown = TRUE ;
46         TabStop = TRUE;
47     };
48     CheckBox CB_WHOLEWORDS
49     {
50         HelpID = "sfx2:CheckBox:RID_DLG_SEARCH:CB_WHOLEWORDS";
51         Pos = MAP_APPFONT( 6, 29 );
52         Size = MAP_APPFONT( 150, 10 );
53         Text [ en-US ] = "~Whole words only" ;
54         TabStop = TRUE;
55     };
56     CheckBox CB_MATCHCASE
57     {
58         HelpID = "sfx2:CheckBox:RID_DLG_SEARCH:CB_MATCHCASE";
59         Pos = MAP_APPFONT( 6, 42 );
60         Size = MAP_APPFONT( 150, 10 );
61         Text[ en-US ] = "~Match case";
62         TabStop = TRUE;
63     };
64     CheckBox CB_WRAPAROUND
65     {
66         HelpID = "sfx2:CheckBox:RID_DLG_SEARCH:CB_WRAPAROUND";
67         Pos = MAP_APPFONT( 6, 55 );
68         Size = MAP_APPFONT( 150, 10 );
69         Text [ en-US ] = "Wrap ~around" ;
70         TabStop = TRUE;
71     };
72     CheckBox CB_BACKWARDS
73     {
74         HelpID = "sfx2:CheckBox:RID_DLG_SEARCH:CB_BACKWARDS";
75         Pos = MAP_APPFONT( 6, 68 );
76         Size = MAP_APPFONT( 150, 10 );
77         Text [ en-US ] = "~Backwards" ;
78         TabStop = TRUE;
79     };
80     PushButton PB_FIND
81     {
82         HelpID = "sfx2:PushButton:RID_DLG_SEARCH:PB_FIND";
83         Pos = MAP_APPFONT( 162, 6 );
84         Size = MAP_APPFONT( 50, 14 );
85         Text [ en-US ] = "~Find" ;
86         TabStop = TRUE;
87         DefButton = TRUE ;
88     };
89     CancelButton PB_CANCELFIND
90     {
91         Pos = MAP_APPFONT( 162, 23 );
92         Size = MAP_APPFONT( 50, 14 );
93         Text [ en-US ] = "~Close" ;
94         TabStop = TRUE;
95     };
97     String STR_TOGGLE
98     {
99         Text [ en-US ] = "Wrap ~around" ;
100     };
103 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */