]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormCitation.h
remove defaults stuff, let Qt handle no toolbar
[lyx.git] / src / frontends / xforms / FormCitation.h
index d35c256a15b75e4bdae3bf99e9147a41f808b306..7d58e12d726fc903119fade3302facb64a7f62b8 100644 (file)
@@ -1,46 +1,30 @@
 // -*- C++ -*-
-/* This file is part of
- * ====================================================== 
+/**
+ * \file FormCitation.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
+ * \author Angus Leeming
  *
- *           Copyright 2000 The LyX Team.
- *
- * ======================================================
- *
- * \author Angus Leeming <a.leeming@ic.ac.uk>
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef FORMCITATION_H
 #define FORMCITATION_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
-#include "FormBase.h"
+#include "FormDialogView.h"
+#include "biblio.h"
 
 /** This class provides an XForms implementation of the Citation Dialog.
  */
 class ControlCitation;
-struct FD_form_citation;
+struct FD_citation;
 
-class FormCitation : public FormCB<ControlCitation, FormDB<FD_form_citation> > {
+class FormCitation : public FormController<ControlCitation, FormView<FD_citation> > {
 public:
        ///
-       FormCitation(ControlCitation &);
-
-       // Functions accessible to the Controller.
-
-       /// Set the Params variable for the Controller.
-       virtual void apply();
-       /// Build the dialog.
-       virtual void build();
-       /// Hide the dialog.
-       virtual void hide();
-       /// Update dialog before/whilst showing it.
-       virtual void update();
-
+       FormCitation(Dialog &);
 private:
        ///
        enum State {
@@ -50,11 +34,19 @@ private:
                OFF
        };
 
+       /// Set the Params variable for the Controller.
+       virtual void apply();
+       /// Build the dialog.
+       virtual void build();
+       /// Hide the dialog.
+       virtual void hide();
+       /// Update dialog before/whilst showing it.
+       virtual void update();
        /// Filter the inputs on callback from xforms
        virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
 
-       /// Type definition from the fdesign produced header file.
-       FD_form_citation * build_citation();
+       /// search for a citation
+       void findBiblio(biblio::Direction const dir);
 
        ///
        void updateBrowser(FL_OBJECT *, std::vector<string> const &) const;
@@ -62,12 +54,10 @@ private:
        void setBibButtons(State) const;
        ///
        void setCiteButtons(State) const;
-       ///
-       void setSize(int, bool) const;
 
-       ///
+       /// used keys (left panel)
        std::vector<string> citekeys;
-       ///
+       /// available keys (right panel)
        std::vector<string> bibkeys;
 };