]> 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 c3402992f5bcf227a6683a298fc257373546cada..66a3241e7799a40f8dca76434aadad740f4ed9b1 100644 (file)
@@ -1,3 +1,4 @@
+// -*- C++ -*-
 /**
  * \file FormBibtex.h
  * Copyright 2001 the LyX Team
 #pragma interface
 #endif
 
-#include "FormInset.h"
+#include "FormBase.h"
+
+class ControlBibtex;
 struct FD_form_bibtex;
 
 /**
  * For bibtex database setting
  */
-class FormBibtex : public FormCommand {
+class FormBibtex : public FormCB<ControlBibtex, FormDB<FD_form_bibtex> > {
 public:
        ///
-       FormBibtex(LyXView *, Dialogs *);
-       ///
-       ~FormBibtex();
+       FormBibtex(ControlBibtex &);
+
 private:
-       /// Connect signals etc. Set form's max size.
-       virtual void connect();
-       /// Build the dialog
+       /// Set the Params variable for the Controller.
+       virtual void apply();
+       /// Build the dialog.
        virtual void build();
-       /// Update dialog before showing it
+       /// Update dialog before/whilst showing it.
        virtual void update();
-       /// input handler
-       virtual bool input(FL_OBJECT *, long);
-       /// Apply from dialog (modify or create inset)
-       virtual void apply();
-       /// Pointer to the actual instantiation of the xforms form
-       virtual FL_FORM * form() const;
-       ///
+       /// Filter the inputs on callback from xforms
+       virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
+
+       /// Fdesign generated method
        FD_form_bibtex * build_bibtex();
-       /// Real GUI implementation.
-       FD_form_bibtex * dialog_;
 };
 
 #endif // FORMBIBTEX_H