]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormSearch.h
Bugfixes: checkboxes to radiobuttons (from J�rgen S) and remove a little
[lyx.git] / src / frontends / xforms / FormSearch.h
index cf1af9fe3be402796a5d8cadb34f241cd3dafc27..24a473ad8cc3fdd004b3a2399876c233fff5ad40 100644 (file)
@@ -1,3 +1,4 @@
+// -*- C++ -*-
 /**
  * \file FormSearch.h
  * Copyright 2001 The LyX Team.
 #ifndef FORMSEARCH_H
 #define FORMSEARCH_H
 
-#include <boost/smart_ptr.hpp>
-
 #ifdef __GNUG__
 #pragma interface
 #endif
 
-#include "FormBaseDeprecated.h"
+#include "FormBase.h"
 
+class ControlSearch;
 struct FD_form_search;
 
 /** This class provides an XForms implementation of the FormSearch Dialog.
  */
-class FormSearch : public FormBaseBD {
+class FormSearch : public FormCB<ControlSearch, FormDB<FD_form_search> > {
 public:
        ///
-       FormSearch(LyXView *, Dialogs *);
+       FormSearch(ControlSearch &);
    
 private:
-       /// Pointer to the actual instantiation of the ButtonController.
-       virtual xformsBC & bc();
-
-       /// Filter the inputs
-       virtual bool input(FL_OBJECT *, long);
-   
-       /// Build the popup
+       /// not needed.
+       virtual void apply() {}
+       /// Build the dialog
        virtual void build();
+       /// not needed.
+       virtual void update() {}
 
-       /// Update the popup
-       virtual void update();
-
-       /// Searches occurance of string
-       /// if argument=true forward search otherwise backward search
-       void Find(bool const = true);
-       /// if argument=false replace once otherwise replace all
-       /// Replaces occurance of string
-       void Replace(bool const = false);
-   
-       ///
-       virtual FL_FORM * form() const;
+       /// Filter the inputs
+       virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
    
-       /// Typedefinitions from the fdesign produced Header file
+       /// Fdesign generated method
        FD_form_search  * build_search();
-   
-       /// Real GUI implementation.
-       boost::scoped_ptr<FD_form_search> dialog_;
-       /// The ButtonController
-       ButtonController<NoRepeatedApplyReadOnlyPolicy, xformsBC> bc_;
 };
 
-
-inline
-xformsBC & FormSearch::bc()
-{
-       return bc_;
-}
-#endif
+#endif // FORMSEARCH_H