]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormRef.h
get rid of broken_header.h and some unneeded tests
[lyx.git] / src / frontends / xforms / FormRef.h
index e74c9259a3f5d18c0bb79df78bec164639eefef8..cd00ae9bd99e6bc9bf86b9b31aaa900a734b517a 100644 (file)
@@ -1,77 +1,54 @@
 // -*- C++ -*-
-/* This file is part of
- * ====================================================== 
+/**
+ * \file FormRef.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.
- *
- * ======================================================
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef FORMREF_H
 #define FORMREF_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
+#include "FormDialogView.h"
+
+namespace lyx {
+namespace frontend {
 
-#include "FormCommand.h"
-struct FD_form_ref;
+class ControlRef;
+struct FD_ref;
 
 /** This class provides an XForms implementation of the FormRef Dialog.
  */
-class FormRef : public FormCommand {
+class FormRef : public FormController<ControlRef, FormView<FD_ref> > {
 public:
-       /**@name Constructors and Destructors */
-       //@{
-       ///
-       FormRef(LyXView *, Dialogs *);
        ///
-       ~FormRef();
-       //@}
-
+       FormRef(Dialog &);
 private:
-       ///
-       enum Type{ REF=0, PAGEREF, VREF, VPAGEREF, PRETTYREF };
-       ///
-       enum Goto{ GOREF=0, GOBACK, GOFIRST };
-
+       /// Set the Params variable for the Controller.
+       virtual void apply();
        /// Build the dialog
        virtual void build();
-       /// Filter the input
-       virtual void input( long );
+       /// Filter the inputs on callback from xforms
+       virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
        /// Update dialog before showing it
        virtual void update();
-       /// Not used but must be instantiated
-       virtual void apply();
-       /// delete derived class variables from hide()
-       virtual void clearStore();
-       /// Pointer to the actual instantiation of the xform's form
-       virtual FL_FORM * const form() const;
 
        ///
-       void updateBrowser( std::vector<string> ) const;
-       ///
-       void showBrowser() const;
-       ///
-       void hideBrowser() const;
-       ///
-       void setSize( int, int, int ) const;
-       ///
-       FD_form_ref * build_ref();
-       ///
-       Type getType() const;
-       ///
-       string getName( Type type ) const;
+       void updateBrowser(std::vector<std::string> const &) const;
 
        ///
-       Goto toggle;
-       /// 
-       std::vector<string> refs;
+       void switch_go_button();
 
-       /// Real GUI implementation.
-       FD_form_ref * dialog_;
+       ///
+       bool at_ref_;
+       ///
+       std::vector<std::string> refs_;
 };
 
-#endif
+} // namespace frontend
+} // namespace lyx
+
+#endif // FORMREF_H