1 /********************************************************************************
2 *                                                                               *
3 *                       T e x t   S e a r c h   D i a l o g                     *
4 *                                                                               *
5 *********************************************************************************
6 * Copyright (C) 2000,2005 by Jeroen van der Zijp.   All Rights Reserved.        *
7 *********************************************************************************
8 * This library is free software; you can redistribute it and/or                 *
9 * modify it under the terms of the GNU Lesser General Public                    *
10 * License as published by the Free Software Foundation; either                  *
11 * version 2.1 of the License, or (at your option) any later version.            *
12 *                                                                               *
13 * This library is distributed in the hope that it will be useful,               *
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of                *
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU             *
16 * Lesser General Public License for more details.                               *
17 *                                                                               *
18 * You should have received a copy of the GNU Lesser General Public              *
19 * License along with this library; if not, write to the Free Software           *
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA.    *
21 *********************************************************************************
22 * $Id: FXSearchDialog.h,v 1.22 2005/01/16 16:06:06 fox Exp $                    *
23 ********************************************************************************/
24 #ifndef FXSEARCHDIALOG_H
25 #define FXSEARCHDIALOG_H
26 
27 #ifndef FXREPLACEDIALOG_H
28 #include "FXReplaceDialog.h"
29 #endif
30 
31 namespace FX {
32 
33 
34 /// Text search dialog
35 class FXAPI FXSearchDialog : public FXReplaceDialog {
FXDECLARE(FXSearchDialog)36   FXDECLARE(FXSearchDialog)
37 protected:
38   FXSearchDialog(){}
39 private:
40   FXSearchDialog(const FXSearchDialog&);
41   FXSearchDialog &operator=(const FXSearchDialog&);
42 public:
43 
44   /// Construct search dialog box
45   FXSearchDialog(FXWindow* owner,const FXString& caption,FXIcon* ic=NULL,FXuint opts=0,FXint x=0,FXint y=0,FXint w=0,FXint h=0);
46 
47   /// Destructor
48   virtual ~FXSearchDialog();
49   };
50 
51 }
52 
53 #endif
54