X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetref.h;h=46a82f206bc239eaf87a37f798a9ff1b122ee944;hb=4a5b7a5952ad2381fcdf4830511293e184c7c5a1;hp=994d3ad914786a9f3fd023ab33561529ff2cd0ce;hpb=cd694827a934423effc364d82408709d02adb02b;p=lyx.git diff --git a/src/insets/insetref.h b/src/insets/insetref.h index 994d3ad914..46a82f206b 100644 --- a/src/insets/insetref.h +++ b/src/insets/insetref.h @@ -17,68 +17,57 @@ #include "insetcommand.h" -class Buffer; struct LaTeXFeatures; /** The reference inset */ class InsetRef : public InsetCommand { public: - /// - enum Ref_Flags { + struct type_info { /// - REF = 0, + string latex_name; /// - PAGE_REF, + string gui_name; /// - VREF, - /// - VPAGE_REF, - /// - PRETTY_REF, - /// - REF_LAST = PRETTY_REF, - /// - REF_FIRST = REF + string short_gui_name; }; - + static type_info types[]; /// - InsetRef(InsetCommandParams const &, Buffer *); + static int getType(string const & name); /// - Inset * Clone() const { return new InsetRef(params(), master); } + static string const & getName(int type); + /// - string getScreenLabel() const; + InsetRef(InsetCommandParams const &, Buffer const &, bool same_id = false); /// - EDITABLE Editable() const { return IS_EDITABLE; } + virtual Inset * clone(Buffer const & buffer, bool same_id = false) const { + return new InsetRef(params(), buffer, same_id); + } /// - Inset::Code LyxCode() const { return Inset::REF_CODE; } + string const getScreenLabel(Buffer const *) const; /// - void Edit(BufferView *, int, int, unsigned int); - /// - bool display() const { return false; } + EDITABLE editable() const { return IS_EDITABLE; } /// - void Toggle(); - /// - void gotoLabel(); + Inset::Code lyxCode() const { return Inset::REF_CODE; } /// - int Latex(Buffer const *, std::ostream &, - bool fragile, bool free_spc) const; + void edit(BufferView *, int, int, unsigned int); /// - int Ascii(Buffer const *, std::ostream &) const; + void edit(BufferView * bv, bool front = true); /// - int Linuxdoc(Buffer const *, std::ostream &) const; + bool display() const { return false; } /// - int DocBook(Buffer const *, std::ostream &) const; + int latex(Buffer const *, std::ostream &, + bool fragile, bool free_spc) const; /// - void Validate(LaTeXFeatures & features) const; -private: + int ascii(Buffer const *, std::ostream &, int linelen) const; + /// + int linuxdoc(Buffer const *, std::ostream &) const; /// - void GenerateFlag(); - /// This function escapes 8-bit characters - string escape(string const &) const; + int docbook(Buffer const *, std::ostream &) const; + /// + void validate(LaTeXFeatures & features) const; +private: /// - Ref_Flags flag; - /// - Buffer * master; + bool isLatex; }; #endif