]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormUrl.h
Introduce LFUN_PRINT.
[lyx.git] / src / frontends / xforms / FormUrl.h
index 0635409c85265419a244f5f64521274172e8ada1..f5b278527f548f769525c517984e88cf7c41c606 100644 (file)
@@ -1,53 +1,36 @@
 // -*- C++ -*-
-/* This file is part of
- * ====================================================== 
+/**
+ * \file FormUrl.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 FORMURL_H
 #define FORMURL_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
-#include "FormCommand.h"
-struct FD_form_url;
+#include "FormDialogView.h"
+
+class ControlCommand;
+struct FD_url;
 
-/** This class provides an XForms implementation of the FormUrl Dialog.
+/** This class provides an XForms implementation of the Url Dialog.
  */
-class FormUrl : public FormCommand {
+class FormUrl : public FormController<ControlCommand, FormView<FD_url> > {
 public:
-       /**@name Constructors and Destructors */
-       //@{
-       ///
-       FormUrl(LyXView *, Dialogs *);
        ///
-       ~FormUrl();
-       //@}
-
+       FormUrl(Dialog &);
 private:
+       /// Apply from dialog (modify or create inset)
+       virtual void apply();
        /// Build the dialog
        virtual void build();
-       /// Not used but must be instantiated
-       virtual void input( long ) {}
        /// Update dialog before showing it
        virtual void update();
-       /// Apply from dialog (modify or create inset)
-       virtual void apply();
-       /// Pointer to the actual instantiation of the xform's form
-       virtual FL_FORM * const form() const;
-       ///
-       FD_form_url * build_url();
-       //@}
-
-       /// Real GUI implementation.
-       FD_form_url * dialog_;
 };
 
-#endif
+#endif // FORMURL_H