]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/controllers/ControlSearch.h
Add a buffer_path arg to InsetGraphicsMailer's params2string, string2params.
[lyx.git] / src / frontends / controllers / ControlSearch.h
index 1774b94e6067edecea06fb5a6879b877de9be3d8..b0a6d10fed18e174fb583f08ffce4bbc53c94327 100644 (file)
@@ -1,41 +1,35 @@
 // -*- C++ -*-
-/* This file is part of
- * ====================================================== 
- *
- *           LyX, The Document Processor
- *
- *           Copyright 2001 The LyX Team.
+/**
+ * \file ControlSearch.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * ======================================================
+ * \author Angus Leeming
  *
- * \file ControlSearch.h
- * \author Angus Leeming <a.leeming@ic.ac.uk>
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef CONTROLSEARCH_H
 #define CONTROLSEARCH_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
-#include "ControlDialogs.h"
+#include "ControlDialog_impl.h"
+#include "LString.h"
 
 /** A controller for Search dialogs.
  */
-class ControlSearch : public ControlDialog<ControlConnectBD> {
+class ControlSearch : public ControlDialogBD {
 public:
        ///
        ControlSearch(LyXView &, Dialogs &);
-   
+
        /// Searches occurence of string
        void find(string const & search,
-                 bool casesensitive, bool matchword, bool forward) const;
+                 bool casesensitive, bool matchword, bool forward);
 
        /// Replaces occurence of string
        void replace(string const & search, string const & replace,
-                    bool casesensitive, bool matchword, bool all) const;
-
+                    bool casesensitive, bool matchword, bool all);
 private:
        /// not needed.
        virtual void apply() {}