]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetListings.h
Collapsable -> Collapsible (part 1)
[lyx.git] / src / insets / InsetListings.h
index d11612282d2be731aa75b306bf8431115f905001..6c90de0a38a20dbaa24a16978295101616b68efa 100644 (file)
 #ifndef INSET_LISTINGS_H
 #define INSET_LISTINGS_H
 
-#include "LaTeXFeatures.h"
 #include "InsetListingsParams.h"
 
 
 namespace lyx {
 
+class LaTeXFeatures;
+struct TexString;
+
 /////////////////////////////////////////////////////////////////////////
 //
 // InsetListings
 //
 /////////////////////////////////////////////////////////////////////////
 
-/// A collapsable text inset for program listings.
-class InsetListings : public InsetCollapsable
+/// A captionable and collapsible text inset for program listings.
+class InsetListings : public InsetCaptionable
 {
 public:
        ///
@@ -39,22 +41,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 &, UpdateType);
+       docstring layoutName() const;
        ///
        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 +66,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);
        ///
@@ -76,7 +76,9 @@ private:
        ///
        docstring const buttonLabel(BufferView const & bv) const;
        ///
-       docstring getCaption(OutputParams const &) const;
+       TexString getCaption(OutputParams const &) const;
+       ///
+       bool insetAllowed(InsetCode c) const { return c == CAPTION_CODE || c == QUOTE_CODE; }
 
        ///
        InsetListingsParams params_;