X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetERT.h;h=7d77bdafa4d43654b55bc4292de3d9716b572f9e;hb=9914f21bceef9610bd1822f96eff0aa6d1a8df7c;hp=4be3ece467e55f6e14784e15dd43a8662f359524;hpb=0b5fe5494b3d724d369abe7f5c6505c65dd01d0c;p=lyx.git diff --git a/src/insets/InsetERT.h b/src/insets/InsetERT.h index 4be3ece467..7d77bdafa4 100644 --- a/src/insets/InsetERT.h +++ b/src/insets/InsetERT.h @@ -14,10 +14,7 @@ #define INSETERT_H #include "InsetCollapsable.h" -#include "RenderPreview.h" -#include "graphics/PreviewLoader.h" -#include namespace lyx { @@ -37,37 +34,17 @@ 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; + + std::string contextMenuName() const + { return "context-ert"; } private: /// InsetCode lyxCode() const { return ERT_CODE; } /// - docstring name() const { return from_ascii("ERT"); } + docstring layoutName() const { return from_ascii("ERT"); } /// void write(std::ostream & os) const; /// @@ -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 preview_; - /// - mutable bool use_preview_; };