]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormBibtex.h
Change glob() API to accept a dir parameter.
[lyx.git] / src / frontends / xforms / FormBibtex.h
index b5ec1a4b17ee2a783995eb998b553ce95a4f259c..c37bc1dae5251e5123551f219955ba309e321ead 100644 (file)
@@ -1,48 +1,45 @@
+// -*- C++ -*-
 /**
  * \file FormBibtex.h
- * Copyright 2001 the LyX Team
- * Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
  * \author Angus Leeming
  * \author John Levon
+ *
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef FORMBIBTEX_H
 #define FORMBIBTEX_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
+#include "FormDialogView.h"
+
+namespace lyx {
+namespace frontend {
 
-#include "FormInset.h"
-struct FD_form_bibtex;
+class ControlBibtex;
+struct FD_bibtex;
 
 /**
  * For bibtex database setting
  */
-class FormBibtex : public FormCommand {
+class FormBibtex : public FormController<ControlBibtex, FormView<FD_bibtex> > {
 public:
        ///
-       FormBibtex(LyXView *, Dialogs *);
-       ///
-       ~FormBibtex();
+       FormBibtex(Dialog &);
 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 xform's form
-       virtual FL_FORM * form() const;
-       ///
-       FD_form_bibtex * build_bibtex();
-       /// Real GUI implementation.
-       FD_form_bibtex * dialog_;
+       /// Filter the inputs on callback from xforms
+       virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
 };
 
+} // namespace frontend
+} // namespace lyx
+
 #endif // FORMBIBTEX_H