]> git.lyx.org Git - features.git/blobdiff - src/insets/insetref.h
read the Changelog
[features.git] / src / insets / insetref.h
index 2d6d2b45fcfdfbb65dd9d4df707afa258c0cbb9a..f000853828bfa8a299afe73d9c14b646a6b85e8f 100644 (file)
@@ -4,7 +4,7 @@
  *
  *           LyX, The Document Processor
  *      
- *         Copyright (C) 1997 LyX Team (this file was created this year)
+ *         Copyright 1997 LyX Team (this file was created this year)
  * 
  * ====================================================== */
 
@@ -22,14 +22,24 @@ struct LaTeXFeatures;
 
 /** The reference inset  
  */
-class InsetRef: public InsetCommand {
+class InsetRef : public InsetCommand {
 public:
         ///
         enum Ref_Flags {
                ///
-               REF,
+               REF = 0,
                ///
-               PAGE_REF
+               PAGE_REF,
+               ///
+               VREF,
+               ///
+               VPAGE_REF,
+               ///
+               PRETTY_REF,
+               ///
+               REF_LAST = PRETTY_REF,
+               ///
+               REF_FIRST = REF
        };
        
        ///
@@ -47,35 +57,31 @@ public:
        ///
        void Edit(BufferView *, int, int, unsigned int);
        ///
-       unsigned char Editable() const {
-               return 1;
+       EDITABLE Editable() const {
+               return IS_EDITABLE;
        }
         ///
        bool display() const { return false; }
        ///
        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) const;
-#ifndef USE_OSTREAM_ONLY
-       ///
-       int Latex(string & file, signed char fragile) const;
+       int Latex(Buffer const *, std::ostream &,
+                 bool fragile, bool free_spc) const;
        ///
-       int Linuxdoc(string & file) const;
+       int Ascii(Buffer const *, std::ostream &) const;
        ///
-       int DocBook(string & file) const;
-#else
+       int Linuxdoc(Buffer const *, std::ostream &) const;
        ///
-       int Linuxdoc(ostream &) const;
+       int DocBook(Buffer const *, std::ostream &) const;
        ///
-       int DocBook(ostream &) const;
-#endif
+       void Validate(LaTeXFeatures & features) const;
 private:
+       ///
+       void GenerateFlag();
        /// This function escapes 8-bit characters
        string escape(string const &) const;
        ///