X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finseturl.h;h=124600e091507125c60eaf27c6a2e02cf538002d;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=408f8b35f18dd3f966d011ad81e6fab6507cbecc;hpb=b0eb70e869128e30ab7e4538aa32a244fd4cea57;p=lyx.git diff --git a/src/insets/inseturl.h b/src/insets/inseturl.h index 408f8b35f1..124600e091 100644 --- a/src/insets/inseturl.h +++ b/src/insets/inseturl.h @@ -15,7 +15,10 @@ #include "insetcommand.h" -struct LaTeXFeatures; + +namespace lyx { + +class LaTeXFeatures; /** The url inset */ @@ -25,35 +28,34 @@ public: explicit InsetUrl(InsetCommandParams const &); /// - ~InsetUrl(); - /// - virtual std::auto_ptr clone() const { - return std::auto_ptr(new InsetUrl(params())); - } - /// - InsetOld::Code lyxCode() const { return InsetOld::URL_CODE; } + InsetBase::Code lyxCode() const { return InsetBase::URL_CODE; } /// void validate(LaTeXFeatures &) const; /// - std::string const getScreenLabel(Buffer const &) const; + docstring const getScreenLabel(Buffer const &) const; /// EDITABLE editable() const { return IS_EDITABLE; } /// bool display() const { return false; } /// - int latex(Buffer const &, std::ostream &, - LatexRunParams const &) const; + int latex(Buffer const &, odocstream &, + OutputParams const &) const; /// - int ascii(Buffer const &, std::ostream &, int linelen) const; + int plaintext(Buffer const &, odocstream &, + OutputParams const &) const; /// - int linuxdoc(Buffer const &, std::ostream &) const; - /// - int docbook(Buffer const &, std::ostream &, bool mixcont) const; -protected: - /// - virtual - DispatchResult - priv_dispatch(FuncRequest const & cmd, idx_type &, pos_type &); + 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; +private: + virtual std::auto_ptr doClone() const { + return std::auto_ptr(new InsetUrl(params())); + } }; + +} // namespace lyx + #endif