]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormRef.h
try this for distinguishing inner and outer tabs
[lyx.git] / src / frontends / xforms / FormRef.h
index f0548cfb66532f93831e676e0ac9dee715c3fd1a..a77b4f4ebda75ab5bc84da4ecd94ca9f5572edfc 100644 (file)
@@ -16,7 +16,7 @@
 #pragma interface
 #endif
 
-#include "FormCommand.h"
+#include "FormInset.h"
 struct FD_form_ref;
 
 /** This class provides an XForms implementation of the FormRef Dialog.
@@ -27,22 +27,10 @@ public:
        FormRef(LyXView *, Dialogs *);
        ///
        ~FormRef();
-private:
        ///
-       enum Type{
-               ///
-               REF,
-               ///
-               PAGEREF,
-               ///
-               VREF,
-               ///
-               VPAGEREF,
-               ///
-               PRETTYREF
-       };
+private:
        ///
-       enum Goto{
+       enum Goto {
                ///
                GOREF,
                ///
@@ -51,33 +39,24 @@ private:
                GOFIRST
        };
 
+       /// Disconnect signals. Also perform any necessary housekeeping.
+       virtual void disconnect();
+
        /// Build the dialog
        virtual void build();
        /// Filter the input
-       virtual void input( long );
+       virtual bool input(FL_OBJECT *, long);
        /// Update dialog before showing it
        virtual void update();
        /// Not used but must be instantiated
        virtual void apply();
-       /// delete derived class variables from hide()
-       virtual void clearStore();
        /// Pointer to the actual instantiation of the xform's form
-       virtual FL_FORM * const form() const;
+       virtual FL_FORM * form() const;
 
        ///
-       void updateBrowser( std::vector<string> ) const;
-       ///
-       void showBrowser() const;
-       ///
-       void hideBrowser() const;
-       ///
-       void setSize( int, int, int ) const;
+       void updateBrowser(std::vector<string> const &) const;
        ///
        FD_form_ref * build_ref();
-       ///
-       Type getType() const;
-       ///
-       string getName( Type type ) const;
 
        ///
        Goto toggle;