]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetListings.h
XHTML output for InsetListings.
[lyx.git] / src / insets / InsetListings.h
index 85120aeb681c5f64779e7ed0776efb612ed42798..51a3f7022c364eb472bbeaaef14642b27156190e 100644 (file)
@@ -9,28 +9,38 @@
  * 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.
- */
-
+/////////////////////////////////////////////////////////////////////////
+//
+// InsetListings
+//
+/////////////////////////////////////////////////////////////////////////
 
-class InsetListings : public InsetCollapsable {
+/// A collapsable text inset for program listings.
+class InsetListings : public InsetCollapsable
+{
 public:
        ///
        InsetListings(Buffer const &, InsetListingsParams const & par = InsetListingsParams());
        ///
        ~InsetListings();
        ///
+       static void string2params(std::string const &, InsetListingsParams &);
+       ///
+       static std::string params2string(InsetListingsParams const &);
+private:
+       ///
+       bool isLabeled() const { return true; }
+       ///
        InsetCode lyxCode() const { return LISTINGS_CODE; }
        /// lstinline is inlined, normal listing is displayed
        DisplayType display() const;
@@ -45,10 +55,10 @@ public:
        ///
        docstring editMessage() const;
        ///
-       bool isMacroScope() const { return true; }
-       ///
        int latex(odocstream &, OutputParams const &) const;
        ///
+       docstring xhtml(odocstream &, OutputParams const &) const;
+       ///
        void validate(LaTeXFeatures &) const;
        ///
        bool showInsetDialog(BufferView *) const;
@@ -56,7 +66,8 @@ public:
        InsetListingsParams const & params() const { return params_; }
        ///
        InsetListingsParams & params() { return params_; }
-private:
+       ///
+       docstring contextMenu(BufferView const & bv, int x, int y) const;
        ///
        void doDispatch(Cursor & cur, FuncRequest & cmd);
        ///
@@ -64,37 +75,14 @@ private:
        ///
        Inset * clone() const { return new InsetListings(*this); }
        ///
-       void setButtonLabel();
+       docstring const buttonLabel(BufferView const & bv) const;
        ///
        docstring getCaption(OutputParams const &) const;
-       ///
-       InsetListingsParams params_;
-};
 
-
-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