]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetref.h
reformatting and remove using delc
[lyx.git] / src / insets / insetref.h
index 994d3ad914786a9f3fd023ab33561529ff2cd0ce..102371acdb8e36c316e46f49219b822d9b0839d0 100644 (file)
 
 #include "insetcommand.h"
 
-class Buffer;
 struct LaTeXFeatures;
 
 /** The reference inset  
  */
 class InsetRef : public InsetCommand {
 public:
-        ///
-        enum Ref_Flags {
-               ///
-               REF = 0,
-               ///
-               PAGE_REF,
+       struct type_info {
                ///
-               VREF,
+               string latex_name;
                ///
-               VPAGE_REF,
+               string gui_name;
                ///
-               PRETTY_REF,
-               ///
-               REF_LAST = PRETTY_REF,
-               ///
-               REF_FIRST = REF
+               string short_gui_name;
        };
-       
+       static type_info types[];
+       ///
+       static int getType(string const & name);
        ///
-       InsetRef(InsetCommandParams const &, Buffer *);
+       static string const & getName(int type);
+
+       ///
+       InsetRef(InsetCommandParams const &, Buffer const &);
        ///
-       Inset * Clone() const { return new InsetRef(params(), master); }
+       Inset * Clone(Buffer const & buffer) const {
+               return new InsetRef(params(), buffer);
+       }
        ///
-       string getScreenLabel() const;
+       string const getScreenLabel() const;
        ///
        EDITABLE Editable() const { return IS_EDITABLE; }
        ///
@@ -57,14 +54,10 @@ public:
         ///
        bool display() const { return false; }
        ///
-       void Toggle();
-        ///
-        void gotoLabel();
-       ///
        int Latex(Buffer const *, std::ostream &,
                  bool fragile, bool free_spc) const;
        ///
-       int Ascii(Buffer const *, std::ostream &) const;
+       int Ascii(Buffer const *, std::ostream &, int linelen) const;
        ///
        int Linuxdoc(Buffer const *, std::ostream &) const;
        ///
@@ -72,13 +65,9 @@ public:
        ///
        void Validate(LaTeXFeatures & features) const;
 private:
-       ///
-       void GenerateFlag();
        /// This function escapes 8-bit characters
-       string escape(string const &) const;
+       string const escape(string const &) const;
        ///
-        Ref_Flags flag;
-        ///
-       Buffer * master;
+       bool isLatex;
 };
 #endif