X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetref.h;h=46a82f206bc239eaf87a37f798a9ff1b122ee944;hb=4a5b7a5952ad2381fcdf4830511293e184c7c5a1;hp=3b889dda851c6cc644011d6c3f9168c50fa65ad5;hpb=bfabea1a25e85e13a470994f1ad7004c8561937e;p=lyx.git diff --git a/src/insets/insetref.h b/src/insets/insetref.h index 3b889dda85..46a82f206b 100644 --- a/src/insets/insetref.h +++ b/src/insets/insetref.h @@ -23,33 +23,51 @@ struct LaTeXFeatures; */ class InsetRef : public InsetCommand { public: + struct type_info { + /// + string latex_name; + /// + string gui_name; + /// + string short_gui_name; + }; + static type_info types[]; /// - InsetRef(InsetCommandParams const &); + static int getType(string const & name); /// - Inset * Clone() const { return new InsetRef(params()); } + static string const & getName(int type); + + /// + InsetRef(InsetCommandParams const &, Buffer const &, bool same_id = false); + /// + virtual Inset * clone(Buffer const & buffer, bool same_id = false) const { + return new InsetRef(params(), buffer, same_id); + } /// - string getScreenLabel() const; + string const getScreenLabel(Buffer const *) const; /// - EDITABLE Editable() const { return IS_EDITABLE; } + EDITABLE editable() const { return IS_EDITABLE; } /// - Inset::Code LyxCode() const { return Inset::REF_CODE; } + Inset::Code lyxCode() const { return Inset::REF_CODE; } + /// + void edit(BufferView *, int, int, unsigned int); + /// + void edit(BufferView * bv, bool front = true); /// - void Edit(BufferView *, int, int, unsigned int); - /// bool display() const { return false; } /// - int Latex(Buffer const *, std::ostream &, - bool 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 ascii(Buffer const *, std::ostream &, int linelen) const; /// - int Linuxdoc(Buffer const *, std::ostream &) const; + int linuxdoc(Buffer const *, std::ostream &) const; /// - int DocBook(Buffer const *, std::ostream &) const; + int docbook(Buffer const *, std::ostream &) const; /// - void Validate(LaTeXFeatures & features) const; + void validate(LaTeXFeatures & features) const; private: - /// This function escapes 8-bit characters - string escape(string const &) const; + /// + bool isLatex; }; #endif