]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetListings.h
Collapsable -> Collapsible (part 1)
[lyx.git] / src / insets / InsetListings.h
index 6bbca9d5fd86e040603ffbe89dbefcf60a426f0d..6c90de0a38a20dbaa24a16978295101616b68efa 100644 (file)
@@ -9,93 +9,81 @@
  * 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 { 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
-       virtual bool display() const;
+       DisplayType display() const;
        ///
-       docstring name() const { return from_ascii("Listings"); }
+       docstring layoutName() const;
        ///
-       void write(Buffer const & buf, std::ostream & os) const;
+       void write(std::ostream & os) const;
        ///
-       void read(Buffer const & buf, Lexer & lex);
+       void read(Lexer & lex);
        ///
-       virtual docstring const editMessage() const;
+       void latex(otexstream &, OutputParams const &) const;
        ///
-       int latex(Buffer const &, odocstream &, OutputParams const &) const;
+       docstring xhtml(XHTMLStream &, OutputParams const &) const;
        ///
        void validate(LaTeXFeatures &) const;
        ///
        bool showInsetDialog(BufferView *) const;
        ///
-       void getDrawFont(Font &) const;
-       ///
        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;
+       ///
+       void doDispatch(Cursor & cur, FuncRequest & cmd);
        ///
        bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const;
-private:
-       virtual std::auto_ptr<Inset> doClone() const;
        ///
-       void init();
+       Inset * clone() const { return new InsetListings(*this); }
        ///
-       void setButtonLabel();
+       docstring const buttonLabel(BufferView const & bv) const;
        ///
-       docstring getCaption(Buffer const &, OutputParams const &) const;
+       TexString getCaption(OutputParams const &) const;
        ///
-       InsetListingsParams params_;
-};
-
+       bool insetAllowed(InsetCode c) const { return c == CAPTION_CODE || c == QUOTE_CODE; }
 
-class InsetListingsMailer : public MailInset {
-public:
-       ///
-       InsetListingsMailer(InsetListings & inset);
-       ///
-       virtual Inset & inset() const { return inset_; }
-       ///
-       virtual std::string const & name() const { return name_; }
-       ///
-       virtual std::string const inset2string(Buffer const &) const;
-       ///
-       static void string2params(std::string const &,
-               InsetListingsParams &);
        ///
-       static std::string const params2string(InsetListingsParams const &);
-private:
-       ///
-       static std::string const name_;
-       ///
-       InsetListings & inset_;
+       InsetListingsParams params_;
 };
 
-
 } // namespace lyx
 
-#endif
+#endif // INSET_LISTINGS_H