]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetref.h
Some more changes for updating text-insets.
[lyx.git] / src / insets / insetref.h
index 681563d570034065657e2410752a9e3f0aa20c16..653d078d8b83ddf322d9c00af64dd798a0f7ca14 100644 (file)
@@ -27,9 +27,19 @@ public:
         ///
         enum Ref_Flags {
                ///
-               REF,
+               REF = 0,
                ///
-               PAGE_REF
+               PAGE_REF,
+               ///
+               VREF,
+               ///
+               VPAGE_REF,
+               ///
+               PRETTY_REF,
+               ///
+               REF_LAST = PRETTY_REF,
+               ///
+               REF_FIRST = REF
        };
        
        ///
@@ -55,18 +65,22 @@ public:
        ///
        string getScreenLabel() const;
        ///
-       InsetRef::Ref_Flags getFlag() { return flag; }
-       ///
-       void setFlag(InsetRef::Ref_Flags f) { flag = f; }
+       void Toggle();
         ///
         void gotoLabel();
        ///
-       int Latex(ostream &, signed char fragile, bool free_spc) const;
+       int Latex(Buffer const *, std::ostream &, bool fragile, bool free_spc) const;
+       ///
+       int Ascii(Buffer const *, std::ostream &) const;
        ///
-       int Linuxdoc(ostream &) const;
+       int Linuxdoc(Buffer const *, std::ostream &) const;
        ///
-       int DocBook(ostream &) const;
+       int DocBook(Buffer const *, std::ostream &) const;
+       ///
+       void Validate(LaTeXFeatures & features) const;
 private:
+       ///
+       void GenerateFlag();
        /// This function escapes 8-bit characters
        string escape(string const &) const;
        ///