]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormSearch.h
Yet more dialog tweaking from Rob.
[lyx.git] / src / frontends / xforms / FormSearch.h
index 93b0d922e7ef017ab18e625f6c461075f4c5ce68..ec710406c619ff6f9ca630afac478f3f6f1b8241 100644 (file)
@@ -1,10 +1,12 @@
 // -*- C++ -*-
 /**
  * \file FormSearch.h
- * Copyright 2001 The LyX Team.
- * See the file COPYING.
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * \author Edwin Leuven, leuven@fee.uva.nl
+ * \author Edwin Leuven
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef FORMSEARCH_H
 #include "FormBase.h"
 
 class ControlSearch;
-struct FD_form_search;
+struct FD_search;
 
 /** This class provides an XForms implementation of the FormSearch Dialog.
  */
-class FormSearch : public FormCB<ControlSearch, FormDB<FD_form_search> > {
+class FormSearch : public FormCB<ControlSearch, FormDB<FD_search> > {
 public:
        ///
-       FormSearch(ControlSearch &);
-   
+       FormSearch();
 private:
        /// not needed.
        virtual void apply() {}
        /// Build the dialog
        virtual void build();
-       /// not needed.
-       virtual void update() {}
+       /// update the dialog
+       virtual void update();
 
        /// Filter the inputs
        virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
-   
-       /// Fdesign generated method
-       FD_form_search  * build_search();
 };
 
 #endif // FORMSEARCH_H