X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetListings.h;h=84acbb93db75e8c968651bb558523855347fca13;hb=3d7ede605978461a6bd67b250925fcc8bf8404c3;hp=1e4135c3ef057380cfd1157c7f4167d36ed3c9a4;hpb=bf5a35a29322327347754bc9f9eca0a293a6060a;p=lyx.git diff --git a/src/insets/InsetListings.h b/src/insets/InsetListings.h index 1e4135c3ef..84acbb93db 100644 --- a/src/insets/InsetListings.h +++ b/src/insets/InsetListings.h @@ -12,20 +12,21 @@ #ifndef INSET_LISTINGS_H #define INSET_LISTINGS_H -#include "LaTeXFeatures.h" #include "InsetListingsParams.h" namespace lyx { +class LaTeXFeatures; + ///////////////////////////////////////////////////////////////////////// // // InsetListings // ///////////////////////////////////////////////////////////////////////// -/// A collapsable text inset for program listings. -class InsetListings : public InsetCollapsable +/// A captionable and collapsable text inset for program listings. +class InsetListings : public InsetCaptionable { public: /// @@ -39,22 +40,20 @@ public: private: /// bool isLabeled() const { return true; } - /// - bool noFontChange() const { return true; } + /// false is needed since listings do their own font handling. + bool inheritFont() const { return false; } /// InsetCode lyxCode() const { return LISTINGS_CODE; } /// lstinline is inlined, normal listing is displayed DisplayType display() const; /// - docstring name() const { return from_ascii("Listings"); } - // Update the counters of this inset and of its contents - void updateLabels(ParIterator const &, bool); + docstring layoutName() const { return from_ascii("Listings"); } /// void write(std::ostream & os) const; /// void read(Lexer & lex); /// - int latex(odocstream &, OutputParams const &) const; + void latex(otexstream &, OutputParams const &) const; /// docstring xhtml(XHTMLStream &, OutputParams const &) const; /// @@ -66,7 +65,7 @@ private: /// InsetListingsParams & params() { return params_; } /// - docstring contextMenu(BufferView const & bv, int x, int y) const; + std::string contextMenuName() const; /// void doDispatch(Cursor & cur, FuncRequest & cmd); /// @@ -77,6 +76,8 @@ private: docstring const buttonLabel(BufferView const & bv) const; /// docstring getCaption(OutputParams const &) const; + /// + bool insetAllowed(InsetCode c) const { return c == CAPTION_CODE; } /// InsetListingsParams params_;