]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormUrl.h
Bugfixes: checkboxes to radiobuttons (from J�rgen S) and remove a little
[lyx.git] / src / frontends / xforms / FormUrl.h
index add9278ce7757805cc4bb700c6cb8086bbce7845..5ad62ce30f2a89f8f749281061cac2946350bf53 100644 (file)
@@ -4,9 +4,12 @@
  *
  *           LyX, The Document Processor
  *
- *           Copyright 2000 The LyX Team.
+ *           Copyright 2000-2001 The LyX Team.
  *
  * ======================================================
+ *
+ * \file FormUrl.h
+ * \author Angus Leeming, a.leeming@.ac.uk
  */
 
 #ifndef FORMURL_H
 #pragma interface
 #endif
 
-#include "FormInset.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:
        ///
-       FormUrl(LyXView *, Dialogs *);
-       ///
-       ~FormUrl();
+       FormUrl(ControlUrl &);
+
 private:
+       /// Apply from dialog (modify or create inset)
+       virtual void apply();
        /// Build the dialog
        virtual void build();
        /// Update dialog before showing it
-       virtual void update(bool switched = false);
-       /// Apply from dialog (modify or create inset)
-       virtual void apply();
-       /// Pointer to the actual instantiation of the xform's form
-       virtual FL_FORM * form() const;
-       ///
+       virtual void update();
+       /// Filter the inputs on callback from xforms
        FD_form_url * build_url();
-       /// 
-       int minh;
-       ///
-       int minw;
-       /// Real GUI implementation.
-       FD_form_url * dialog_;
 };
 
-#endif
+#endif // FORMURL_H