]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormUrl.h
try this for distinguishing inner and outer tabs
[lyx.git] / src / frontends / xforms / FormUrl.h
index 0635409c85265419a244f5f64521274172e8ada1..3aa21d665be0d47e5f3bb9de0ae8d1d573aec1d3 100644 (file)
 #pragma interface
 #endif
 
-#include "FormCommand.h"
+#include "FormInset.h"
 struct FD_form_url;
 
 /** This class provides an XForms implementation of the FormUrl Dialog.
  */
 class FormUrl : public FormCommand {
 public:
-       /**@name Constructors and Destructors */
-       //@{
        ///
        FormUrl(LyXView *, Dialogs *);
        ///
        ~FormUrl();
-       //@}
-
 private:
+       /// Connect signals etc. Set form's max size.
+       virtual void connect();
        /// 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;
+       virtual FL_FORM * form() const;
        ///
        FD_form_url * build_url();
-       //@}
-
        /// Real GUI implementation.
        FD_form_url * dialog_;
 };