]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetEnvironment.h
Change inset label from ": filename" to "Program Listing: filename" for listings...
[lyx.git] / src / insets / InsetEnvironment.h
index c853492a269a813fa3a49c3be5db6f24378c3197..bb393719f30927fd66d142ae86397ab6e6f62fb7 100644 (file)
 #define INSETENVIRONMENT_H
 
 #include "InsetText.h"
-#include "LayoutPtr.h"
-
 
 namespace lyx {
 
+class Layout;
+       
 class InsetEnvironment : public InsetText {
 public:
        ///
@@ -39,18 +39,16 @@ public:
        ///
        Inset::EDITABLE editable() const { return HIGHLY_EDITABLE; }
        ///
-       LayoutPtr const & layout() const;
+       Layout const & layout() const;
        /** returns true if, when outputing LaTeX, font changes should
            be closed before generating this inset. This is needed for
            insets that may contain several paragraphs */
        bool noFontChange() const { return true; }
-protected:
-       InsetEnvironment(InsetEnvironment const &);
 private:
        ///
        Inset * clone() const { return new InsetEnvironment(*this); }
        /// the layout
-       LayoutPtr layout_;
+       Layout const & layout_;
        ///
        docstring name_;
 };