X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetListings.h;h=41be4394ceb9a8c9431946c11b993395e6dbdebc;hb=eeb36e808c9726fd3689926a3c20457e3b801341;hp=1d02c7cd4fe6136421c6a78ec28c904f0620d0ae;hpb=4ce743a0a77d85d5e1722a3f2854ce163e40b353;p=lyx.git diff --git a/src/insets/InsetListings.h b/src/insets/InsetListings.h index 1d02c7cd4f..41be4394ce 100644 --- a/src/insets/InsetListings.h +++ b/src/insets/InsetListings.h @@ -9,91 +9,85 @@ * Full author contact details are available in file CREDITS. */ -#ifndef INSETLISTINGS_H -#define INSETLISTINGS_H +#ifndef INSET_LISTINGS_H +#define INSET_LISTINGS_H -#include "LaTeXFeatures.h" -#include "InsetERT.h" #include "InsetListingsParams.h" -#include "MailInset.h" namespace lyx { -/** A collapsable text inset for program listings. - */ +class LaTeXFeatures; +struct TexString; +///////////////////////////////////////////////////////////////////////// +// +// InsetListings +// +///////////////////////////////////////////////////////////////////////// -class InsetListings : public InsetERT { +/// A captionable and collapsible text inset for program listings. +class InsetListings : public InsetCaptionable +{ public: /// - InsetListings(BufferParams const &, InsetListingsParams const & par = InsetListingsParams()); + InsetListings(Buffer *, InsetListingsParams const & par = InsetListingsParams()); /// ~InsetListings(); /// - Inset::Code lyxCode() const { return Inset::LISTINGS_CODE; } + static void string2params(std::string const &, InsetListingsParams &); + /// + static std::string params2string(InsetListingsParams const &); +private: + /// + bool isLabeled() const override { return true; } + /// false is needed since listings do their own font handling. + bool inheritFont() const override { return false; } + /// + InsetCode lyxCode() const override { return LISTINGS_CODE; } /// lstinline is inlined, normal listing is displayed - virtual bool display() const; + RowFlags rowFlags() const override; /// - docstring name() const { return from_ascii("Listings"); } + docstring layoutName() const override; /// - void write(Buffer const & buf, std::ostream & os) const; + void write(std::ostream & os) const override; /// - void read(Buffer const & buf, Lexer & lex); + void read(Lexer & lex) override; /// - virtual docstring const editMessage() const; + void latex(otexstream &, OutputParams const &) const override; /// - int latex(Buffer const &, odocstream &, OutputParams const &) const; + docstring xhtml(XMLStream &, OutputParams const &) const override; /// - void validate(LaTeXFeatures &) const; + void docbook(XMLStream &, OutputParams const &) const override; /// - bool showInsetDialog(BufferView *) const; + void validate(LaTeXFeatures &) const override; /// - void getDrawFont(Font &) const; + bool showInsetDialog(BufferView *) const override; /// InsetListingsParams const & params() const { return params_; } /// InsetListingsParams & params() { return params_; } -protected: - InsetListings(InsetListings const &); /// - virtual void doDispatch(Cursor & cur, FuncRequest & cmd); + std::string contextMenuName() const override; /// - bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const; -private: - virtual std::auto_ptr doClone() const; + void doDispatch(Cursor & cur, FuncRequest & cmd) override; /// - void init(); + bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const override; /// - void setButtonLabel(); + Inset * clone() const override { return new InsetListings(*this); } /// - InsetListingsParams params_; -}; - - -class InsetListingsMailer : public MailInset { -public: - /// - InsetListingsMailer(InsetListings & inset); - /// - virtual Inset & inset() const { return inset_; } + docstring const buttonLabel(BufferView const & bv) const override; /// - virtual std::string const & name() const { return name_; } + TexString getCaption(OutputParams const &) const; /// - virtual std::string const inset2string(Buffer const &) const; + bool insetAllowed(InsetCode c) const override { return c == CAPTION_CODE || c == QUOTE_CODE; } /// - static void string2params(std::string const &, - InsetListingsParams &); - /// - static std::string const params2string(InsetListingsParams const &); -private: - /// - static std::string const name_; + Encoding const * forcedEncoding(Encoding const *, Encoding const *) const override; + /// - InsetListings & inset_; + InsetListingsParams params_; }; - } // namespace lyx -#endif +#endif // INSET_LISTINGS_H