]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormUrl.h
(John): translate dialog titles.
[lyx.git] / src / frontends / xforms / FormUrl.h
index d02dd0f40c987f75f89229446a81ad09356dbb3d..23c984d75ffff884c9e6d1fff6259233507b5c82 100644 (file)
@@ -1,12 +1,10 @@
 // -*- C++ -*-
-/* This file is part of
- * ====================================================== 
+/**
+ * \file xforms/FormUrl.h
+ * Copyright 2000-2001 the LyX Team
+ * Read the file COPYING
  *
- *           LyX, The Document Processor
- *
- *           Copyright 2000 The LyX Team.
- *
- * ======================================================
+ * \author Angus Leeming, a.leeming@ic.ac.uk
  */
 
 #ifndef FORMURL_H
 #pragma interface
 #endif
 
-#include "FormCommand.h"
+#include "FormBase.h"
+
+class ControlUrl;
 struct FD_form_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 FormCB<ControlUrl, FormDB<FD_form_url> > {
 public:
-       /**@name Constructors and Destructors */
-       //@{
        ///
-       FormUrl(LyXView *, Dialogs *);
-       ///
-       ~FormUrl();
-       //@}
+       FormUrl(ControlUrl &);
 
 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;
-       ///
+       /// Filter the inputs on callback from xforms
        FD_form_url * build_url();
-
-       /// 
-       int minh, minw;
-       /// Real GUI implementation.
-       FD_form_url * dialog_;
 };
 
-#endif
+#endif // FORMURL_H