]> 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 0b71e28ef4641edbcfbd9f6b8ea41ef39d4dfe72..cd00ae9bd99e6bc9bf86b9b31aaa900a734b517a 100644 (file)
@@ -1,35 +1,31 @@
-/* This file is part of
- * ====================================================== 
- *
- *           LyX, The Document Processor
- *
- *           Copyright 2000-2001 The LyX Team.
+// -*- C++ -*-
+/**
+ * \file FormRef.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * ======================================================
+ * \author Angus Leeming
  *
- * \file FormRef.h
- * \author Angus Leeming, a.leeming@.ac.uk
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef FORMREF_H
 #define FORMREF_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
+#include "FormDialogView.h"
 
-#include "FormBase.h"
+namespace lyx {
+namespace frontend {
 
 class ControlRef;
-struct FD_form_ref;
+struct FD_ref;
 
 /** This class provides an XForms implementation of the FormRef Dialog.
  */
-class FormRef : public FormCB<ControlRef, FormDB<FD_form_ref> > {
+class FormRef : public FormController<ControlRef, FormView<FD_ref> > {
 public:
        ///
-       FormRef(ControlRef &);
-
+       FormRef(Dialog &);
 private:
        /// Set the Params variable for the Controller.
        virtual void apply();
@@ -41,15 +37,18 @@ private:
        virtual void update();
 
        ///
-       void updateBrowser(std::vector<string> const &) const;
+       void updateBrowser(std::vector<std::string> const &) const;
 
-       /// Fdesign generated method
-       FD_form_ref * build_ref();
+       ///
+       void switch_go_button();
 
        ///
        bool at_ref_;
-       /// 
-       std::vector<string> refs_;
+       ///
+       std::vector<std::string> refs_;
 };
 
+} // namespace frontend
+} // namespace lyx
+
 #endif // FORMREF_H