]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetert.h
Don't remove cell selections after fontchange.
[lyx.git] / src / insets / insetert.h
index 546b6fe46e3402eba3c223514c365ab8364b8bd2..b42fa9e405680cfffd6b7427b6ec8e23a59812b7 100644 (file)
 #endif
 
 #include "insetcollapsable.h"
+#include <sigc++/signal_system.h>
 
 /** A collapsable text inset for LaTeX insertions.
   
   To write full ert (including styles and other insets) in a given
-  space. 
+  space.
+
+  Note that collapsed_ encompasses both the inline and collapsed button
+  versions of this inset. 
 */
 class InsetERT : public InsetCollapsable {
 public:
        ///
-       InsetERT();
+       enum ERTStatus {
+               Open,
+               Collapsed,
+               Inlined
+       };
+       ///
+       InsetERT(bool collapsed=false);
        ///
        InsetERT(InsetERT const &, bool same_id = false);
        ///
@@ -36,6 +46,8 @@ public:
        ///
        InsetERT(string const & contents, bool collapsed);
        ///
+       ~InsetERT();
+       ///
        Inset::Code lyxCode() const { return Inset::ERT_CODE; }
        ///
        void read(Buffer const * buf, LyXLex & lex);
@@ -55,7 +67,15 @@ public:
        ///
        void edit(BufferView * bv, bool front = true);
        ///
-       void insetButtonRelease(BufferView * bv, int x, int y, int button);
+       EDITABLE editable() const;
+       ///
+       SigC::Signal0<void> hideDialog;
+       ///
+       void insetButtonPress(BufferView *, int x, int y, int button);
+       ///
+       bool insetButtonRelease(BufferView * bv, int x, int y, int button);
+       ///
+       void insetMotionNotify(BufferView *, int x, int y, int state);
        ///
        int latex(Buffer const *, std::ostream &, bool fragile,
                  bool free_spc) const;
@@ -65,12 +85,47 @@ public:
        ///
        int linuxdoc(Buffer const *, std::ostream &) const;
        ///
-       int docBook(Buffer const *, std::ostream &) const;
+       int docbook(Buffer const *, std::ostream &) const;
+       ///
+       void validate(LaTeXFeatures &) const {}
        ///
        UpdatableInset::RESULT localDispatch(BufferView *, kb_action,
                                             string const &);
        ///
        bool checkInsertChar(LyXFont &);
+       ///
+       // this are needed here because of the label/inlined functionallity
+       ///
+       bool needFullRow() const { return status_ == Open; }
+       ///
+       bool isOpen() const { return status_ == Open || status_ == Inlined; }
+       ///
+       bool inlined() const { return status_ == Inlined; }
+       ///
+       ERTStatus status() const { return status_; }
+       ///
+       void open(BufferView *);
+       ///
+       void close(BufferView *) const;
+       ///
+       bool allowSpellcheck() { return false; }
+       string const selectNextWordToSpellcheck(BufferView *, float &) const;
+       ///
+       int ascent(BufferView *, LyXFont const &) const;
+       ///
+       int descent(BufferView *, LyXFont const &) const;
+       ///
+       int width(BufferView *, LyXFont const &) const;
+       ///
+       void draw(BufferView *, const LyXFont &, int , float &, bool) const;
+       /// set the status of the inset
+       void status(BufferView *, ERTStatus const st) const;
+       ///
+       bool showInsetDialog(BufferView *) const;
+       ///
+       bool forceDefaultParagraphs(Inset const *) const {
+               return true;
+       }
 
 private:
        ///
@@ -78,7 +133,14 @@ private:
        ///
        string const get_new_label() const;
        ///
-       void setButtonLabel();
+       void setButtonLabel() const;
+       ///
+       void set_latex_font(BufferView *);
+       /// update status on button
+       void updateStatus(BufferView *, bool = false) const;
+
+       ///
+       mutable ERTStatus status_;
 };
 
 #endif