]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormBibtex.h
Bugfixes: checkboxes to radiobuttons (from J�rgen S) and remove a little
[lyx.git] / src / frontends / xforms / FormBibtex.h
index ce9ca1d3787a5f5fd6f10bb293190f44171e9276..66a3241e7799a40f8dca76434aadad740f4ed9b1 100644 (file)
 
 #include "FormBase.h"
 
-#include "form_bibtex.h"
-
 class ControlBibtex;
+struct FD_form_bibtex;
 
 /**
  * For bibtex database setting
  */
-class FormBibtex : public FormBase2<ControlBibtex, FD_form_bibtex> {
+class FormBibtex : public FormCB<ControlBibtex, FormDB<FD_form_bibtex> > {
 public:
        ///
        FormBibtex(ControlBibtex &);
 
-       // Functions accessible to the Controller.
-
+private:
        /// Set the Params variable for the Controller.
        virtual void apply();
        /// Build the dialog.
        virtual void build();
        /// Update dialog before/whilst showing it.
        virtual void update();
-       
-private:
        /// Filter the inputs on callback from xforms
        virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
-       ///
+
+       /// Fdesign generated method
        FD_form_bibtex * build_bibtex();
 };