X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetref.h;h=a616a08e28a95403b517956897c9cdb45951901c;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=a89ac5d4b8ceb3e557ad3e3d0588b3a61c62696d;hpb=2288d1724715307a71e888faa4bec1f5de1242aa;p=lyx.git diff --git a/src/insets/insetref.h b/src/insets/insetref.h index a89ac5d4b8..a616a08e28 100644 --- a/src/insets/insetref.h +++ b/src/insets/insetref.h @@ -15,6 +15,9 @@ #include "insetcommand.h" +namespace lyx { + + /// The reference inset class InsetRef : public InsetCommand { public: @@ -35,39 +38,38 @@ public: InsetRef(InsetCommandParams const &, Buffer const &); - InsetRef(InsetRef const &); - - /// - virtual std::auto_ptr clone() const { - return std::auto_ptr(new InsetRef(*this)); - } /// - std::string const getScreenLabel(Buffer const &) const; + docstring const getScreenLabel(Buffer const &) const; /// EDITABLE editable() const { return IS_EDITABLE; } /// - InsetOld::Code lyxCode() const { return InsetOld::REF_CODE; } + Code lyxCode() const { return REF_CODE; } /// bool display() const { return false; } /// - int latex(Buffer const &, std::ostream &, - OutputParams const &) const; + int latex(Buffer const &, odocstream &, OutputParams const &) const; /// - int plaintext(Buffer const &, std::ostream &, - OutputParams const &) const; + int plaintext(Buffer const &, odocstream &, OutputParams const &) const; /// - int linuxdoc(Buffer const &, std::ostream &, - OutputParams const &) const; - /// - int docbook(Buffer const &, std::ostream &, - OutputParams const &) const; + int docbook(Buffer const &, odocstream &, OutputParams const &) const; + /// the string that is passed to the TOC + virtual int textString(Buffer const &, odocstream &, + OutputParams const &) const; /// void validate(LaTeXFeatures & features) const; protected: + InsetRef(InsetRef const &); + /// - DispatchResult priv_dispatch(LCursor & cur, FuncRequest const & cmd); + virtual void doDispatch(LCursor & cur, FuncRequest & cmd); private: + virtual std::auto_ptr doClone() const { + return std::auto_ptr(new InsetRef(*this)); + } /// bool isLatex; }; + +} // namespace lyx + #endif