]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetert.h
insetcharstyle drawing cosmetics
[lyx.git] / src / insets / insetert.h
index 4c8796963827227821493972b995376ace156333..6ae4d140a90802b8bdd0bccb44c782d221ba9d11 100644 (file)
@@ -30,27 +30,23 @@ class Language;
 class InsetERT : public InsetCollapsable {
 public:
        ///
-       InsetERT(BufferParams const &, bool collapsed = false);
+       InsetERT(BufferParams const &, CollapseStatus status = Open);
        ///
        InsetERT(InsetERT const &);
        ///
        virtual std::auto_ptr<InsetBase> clone() const;
        ///
        InsetERT(BufferParams const &,
-                Language const *, std::string const & contents, bool collapsed);
+                Language const *, std::string const & contents, CollapseStatus status);
        ///
        ~InsetERT();
        ///
        InsetOld::Code lyxCode() const { return InsetOld::ERT_CODE; }
        ///
-       void read(Buffer const & buf, LyXLex & lex);
-       ///
        void write(Buffer const & buf, std::ostream & os) const;
        ///
        std::string const editMessage() const;
        ///
-       bool insertInset(BufferView *, InsetOld *);
-       ///
        bool insetAllowed(InsetOld::Code code) const;
        ///
        int latex(Buffer const &, std::ostream &,
@@ -75,35 +71,15 @@ public:
        ///
        void getDrawFont(LyXFont &) const;
        ///
-       bool forceDefaultParagraphs(InsetOld const *) const { return true; }
-       ///
-       void setStatus(CollapseStatus st);
+       bool forceDefaultParagraphs(InsetBase const *) const { return true; }
 protected:
        ///
-       virtual
-       DispatchResult
-       priv_dispatch(FuncRequest const &, idx_type &, pos_type &);
+       virtual void priv_dispatch(LCursor & cur, FuncRequest & cmd);
 private:
-       ///
-       void lfunMousePress(FuncRequest const &);
-       ///
-       // the bool return is used to see if we opened a dialog so that we can
-       // check this from an outer inset and open the dialog of the outer inset
-       // if that one has one!
-       ///
-       bool lfunMouseRelease(FuncRequest const &);
-       ///
-       void lfunMouseMotion(FuncRequest const &);
        ///
        void init();
        ///
-       void setButtonLabel() const;
-       ///
-       void setLatexFont(BufferView *);
-       /// update status on button
-       void updateStatus(bool = false) const;
-       ///
-       void edit(BufferView * bv, bool left);
+       void setButtonLabel();
        ///
        bool allowSpellCheck() const { return false; }
 };