]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormBibitem.h
Yet more dialog tweaking from Rob.
[lyx.git] / src / frontends / xforms / FormBibitem.h
index 2627beeeb9c9758e22581553ba3521a898344b9c..3c078be7287950bfc57fc8260907a3a9943dcf2b 100644 (file)
@@ -1,10 +1,13 @@
+// -*- C++ -*-
 /**
  * \file FormBibitem.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
+ * \author Angus Leeming 
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef FORMBIBITEM_H
 #pragma interface
 #endif
 
-#include "FormInset.h"
-struct FD_form_bibitem;
+#include "FormBase.h"
+
+class ControlBibitem;
+struct FD_bibitem;
 
 /**
  * For bibliography entry editing
  */
-class FormBibitem : public FormCommand {
+class FormBibitem : public FormCB<ControlBibitem, FormDB<FD_bibitem> > {
 public:
        ///
-       FormBibitem(LyXView *, Dialogs *);
-       ///
-       ~FormBibitem();
+       FormBibitem();
 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;
-       ///
-       FD_form_bibitem * build_bibitem();
-       /// Real GUI implementation.
-       FD_form_bibitem * dialog_;
+       /// Filter the inputs on callback from xforms
+       virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
 };
 
 #endif // FORMBIBITEM_H