]> 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 5bc8b0437bb0d30ced6be95a1da451e54bc9c69a..653d078d8b83ddf322d9c00af64dd798a0f7ca14 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)
  * 
  * ====================================================== */
 
@@ -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
        };
        
        ///
@@ -38,8 +48,6 @@ public:
        InsetRef(string const &, Buffer *);
        ///
        InsetRef(InsetCommand const &, Buffer *);
-       ///
-       ~InsetRef();
         ///
         Inset * Clone() const {
                return new InsetRef (getCommand(), master);
@@ -47,30 +55,32 @@ public:
        ///
        Inset::Code LyxCode() const { return Inset::REF_CODE; }
        ///
-       void Edit(int, int);
+       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(FILE * file, signed char fragile);
+       int Latex(Buffer const *, std::ostream &, bool fragile, bool free_spc) const;
        ///
-       int Latex(string & file, signed char fragile);
+       int Ascii(Buffer const *, std::ostream &) const;
        ///
-       int Linuxdoc(string & file);
+       int Linuxdoc(Buffer const *, std::ostream &) const;
        ///
-       int DocBook(string & file);
+       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;
        ///
@@ -84,7 +94,7 @@ inline
 void InsetRef::gotoLabel()
 {
     if (master) {
-       master->gotoLabel(getContents());
+       master->getUser()->gotoLabel(getContents());
     }
 }
 #endif