]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormBrowser.h
remove defaults stuff, let Qt handle no toolbar
[lyx.git] / src / frontends / xforms / FormBrowser.h
index 6de60da1d4a747caae5eff857d957f8448eb8de3..7b480e4513d2fa5709fa27b752748a8c4e01683f 100644 (file)
@@ -1,58 +1,34 @@
 // -*- C++ -*-
-/*
- * FormBrowser.h
+/**
+ * \file FormBrowser.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author John Levon
+ * \author Angus Leeming
  *
- * (C) 2001 LyX Team
- * John Levon, moz@compsoc.man.ac.uk
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef FORMBROWSER_H
 #define FORMBROWSER_H
 
-#include <boost/smart_ptr.hpp>
-
-#ifdef __GNUG__
-#pragma interface
-#endif
-
-#include "FormBaseDeprecated.h"
 
-struct FD_form_browser;
+#include "FormDialogView.h"
 
 /**
  * This class provides an XForms implementation of a read only
  * text browser.
  */
-class FormBrowser : public FormBaseBD {
+struct FD_browser;
+
+class FormBrowser : public FormView<FD_browser> {
 public:
        ///
-       FormBrowser(LyXView *, Dialogs *, const string &);
-protected:
-       /// Update the dialog.
-       virtual void update();
-
-       /// Real GUI implementation.
-       boost::scoped_ptr<FD_form_browser> dialog_;
-       /// Pointer to the actual instantiation of the ButtonController.
-       virtual xformsBC & bc();
+       FormBrowser(Dialog &, string const &, bool allowResize = true);
 private:
-       /// Pointer to the actual instantiation of the xforms form
-       virtual FL_FORM * form() const;
-       /// Filter the inputs on callback from xforms
-       virtual bool input(FL_OBJECT *, long);
-       /// Build the dialog
+       /// Build the dialog.
        virtual void build();
-
-       /// generated build function
-       FD_form_browser * build_browser();
-       /// The ButtonController
-       ButtonController<OkCancelPolicy, xformsBC> bc_;
 };
 
-
-inline
-xformsBC & FormBrowser::bc()
-{
-       return bc_;
-}
-#endif
+#endif // FORMBROWSER_H