]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormRef.h
Swap two printer related help messages.
[lyx.git] / src / frontends / xforms / FormRef.h
index 29e022a11e517b25f80be69b7900b2bdd150e3fe..ca2023011444e8a60229b5d956943f54f564a5b7 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.
@@ -29,7 +29,7 @@ public:
        ~FormRef();
 private:
        ///
-       enum Type{
+       enum Type {
                ///
                REF,
                ///
@@ -42,7 +42,7 @@ private:
                PRETTYREF
        };
        ///
-       enum Goto{
+       enum Goto {
                ///
                GOREF,
                ///
@@ -51,33 +51,28 @@ private:
                GOFIRST
        };
 
+       /// Disconnect signals. Also perform any necessary housekeeping.
+       virtual void disconnect();
+
        /// Build the dialog
        virtual void build();
        /// Filter the input
-       virtual bool input( FL_OBJECT *, 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 * 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;
+       string const getName(Type type) const;
 
        ///
        Goto toggle;