]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetERT.h
Add comment.
[lyx.git] / src / insets / InsetERT.h
index 4be3ece467e55f6e14784e15dd43a8662f359524..139834c21aec6f2ff178ca17238505d04fb1cfa0 100644 (file)
 #define INSETERT_H
 
 #include "InsetCollapsable.h"
-#include "RenderPreview.h"
-#include "graphics/PreviewLoader.h"
 
-#include <boost/scoped_ptr.hpp>
 
 namespace lyx {
 
@@ -37,32 +34,12 @@ public:
        ///
        InsetERT(Buffer *, CollapseStatus status = Open);
        ///
-       InsetERT(InsetERT const & other);
-       ///
-       ~InsetERT();
-       //
-       InsetERT & operator=(InsetERT const & other);
-       ///
        static CollapseStatus string2params(std::string const &);
        ///
        static std::string params2string(CollapseStatus);
-       ///
-       void addPreview(DocIterator const & inset_pos,
-               graphics::PreviewLoader & ploader) const;
-       ///
-       void preparePreview(DocIterator const & pos) const;
-       ///
-       void reloadPreview(DocIterator const & pos) const;
-       ///
-       bool notifyCursorLeaves(Cursor const & old, Cursor & cur);
-       ///
-       void draw(PainterInfo & pi, int x, int y) const;
-       ///
-       Inset * editXY(Cursor & cur, int x, int y);
-       ///
-       void metrics(MetricsInfo & mi, Dimension & dim) const;
-       ///
-       bool previewState(BufferView * bv) const;
+
+       docstring contextMenu(BufferView const &, int, int) const
+               { return from_ascii("context-ert"); }
 private:
        ///
        InsetCode lyxCode() const { return ERT_CODE; }
@@ -78,8 +55,6 @@ private:
        docstring xhtml(XHTMLStream &, OutputParams const &) const;
        ///
        void validate(LaTeXFeatures &) const {}
-       ///
-       bool showInsetDialog(BufferView *) const;
        /// should paragraph indendation be omitted in any case?
        bool neverIndent() const { return true; }
        ///
@@ -92,10 +67,6 @@ private:
        docstring const buttonLabel(BufferView const & bv) const;
        ///
        bool allowSpellCheck() const { return false; }
-       ///
-       boost::scoped_ptr<RenderPreview> preview_;
-       ///
-       mutable bool use_preview_;
 };