]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormUrl.h
remove defaults stuff, let Qt handle no toolbar
[lyx.git] / src / frontends / xforms / FormUrl.h
index 02b8a1e37205efcb4e18573a60ecb97accc6e61b..56d85aa2e5b0e52da43c45102292af69ad0d79b2 100644 (file)
@@ -1,55 +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, public noncopyable {
+class FormUrl : public FormController<ControlCommand, FormView<FD_url> > {
 public:
-       /**@name Constructors and Destructors */
-       //@{
-       ///
-       FormUrl(LyXView *, Dialogs *);
        ///
-       ~FormUrl();
-       //@}
-
+       FormUrl(Dialog &);
 private:
-       /**@name Slot Methods */
-       //@{
-       ///
-       virtual void update();
-       /// Apply from dialog
-       void apply();
-       ///
-       virtual void input( long ) {};
+       /// Apply from dialog (modify or create inset)
+       virtual void apply();
        /// Build the dialog
-       void build();
-       ///
-       virtual FL_FORM * const form() const;
-       ///
-       FD_form_url * build_url();
-       //@}
-
-       /// Real GUI implementation.
-       FD_form_url * dialog_;
+       virtual void build();
+       /// Update dialog before showing it
+       virtual void update();
 };
 
-#endif
+#endif // FORMURL_H