]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetert.h
fix typo that put too many include paths for most people
[lyx.git] / src / insets / insetert.h
index e2e6ddef033b6961bd850aa8ab77f13348b7ba21..8f8c02d2824cfa3075b2e6d65138cf36ab7b182d 100644 (file)
@@ -1,7 +1,7 @@
 // -*- C++ -*-
 /* This file is part of
  * ======================================================
- * 
+ *
  *           LyX, The Document Processor
  *
  *           Copyright 1998 The LyX Team.
 #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 Language;
+
 class InsetERT : public InsetCollapsable {
 public:
        ///
@@ -35,13 +41,14 @@ public:
                Inlined
        };
        ///
-       InsetERT(bool collapsed=false);
+       InsetERT(BufferParams const &, bool collapsed = false);
        ///
        InsetERT(InsetERT const &, bool same_id = false);
        ///
        Inset * clone(Buffer const &, bool same_id = false) const;
        ///
-       InsetERT(string const & contents, bool collapsed);
+       InsetERT(BufferParams const &,
+                Language const *, string const & contents, bool collapsed);
        ///
        ~InsetERT();
        ///
@@ -58,7 +65,7 @@ public:
        bool insetAllowed(Inset::Code) const { return false; }
        ///
        void setFont(BufferView *, LyXFont const &,
-                            bool toggleall = false, bool selectall = false);
+                            bool toggleall = false, bool selectall = false);
        ///
        void edit(BufferView *, int, int, unsigned int);
        ///
@@ -68,20 +75,26 @@ public:
        ///
        SigC::Signal0<void> hideDialog;
        ///
-       void insetButtonRelease(BufferView * bv, int x, int y, int button);
+       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;
        ///
        int ascii(Buffer const *,
-                         std::ostream &, int linelen = 0) const;
+                         std::ostream &, int linelen = 0) const;
        ///
        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 &);
+                                            string const &);
        ///
        bool checkInsertChar(LyXFont &);
        ///
@@ -91,11 +104,16 @@ public:
        ///
        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 *);
+       void close(BufferView *) const;
        ///
-       bool inlined() const { return status_ == Inlined; }
+       bool allowSpellcheck() { return false; }
+       string const selectNextWordToSpellcheck(BufferView *, float &) const;
        ///
        int ascent(BufferView *, LyXFont const &) const;
        ///
@@ -104,12 +122,18 @@ public:
        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;
        ///
-       ERTStatus status() const { return status_; }
+       bool showInsetDialog(BufferView *) const;
        ///
-       void status(BufferView *, ERTStatus const st);
+       void getDrawFont(LyXFont &) const;
        ///
-       bool showInsetDialog(BufferView *) const;
+       bool forceDefaultParagraphs(Inset const *) const {
+               return true;
+       }
+       ///
+       int getMaxWidth(BufferView *, UpdatableInset const *) const;
 
 private:
        ///
@@ -117,12 +141,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;
 
        ///
-       ERTStatus status_;
+       mutable ERTStatus status_;
 };
 
 #endif