]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetert.h
the dispatch patch
[lyx.git] / src / insets / insetert.h
index 7d24a6f13962554dbd09352608051282130f2d43..c886156c69bcce15ca08d827aedbd974642c7375 100644 (file)
@@ -1,34 +1,32 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
+/**
+ * \file insetert.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           Copyright 1998 The LyX Team.
+ * \author Jürgen Vigna
+ * \author Lars Gullik Bjønnes
  *
- *======================================================
+ * Full author contact details are available in file CREDITS.
  */
-// The pristine updatable inset: Text
-
 
 #ifndef INSETERT_H
 #define INSETERT_H
 
-#ifdef __GNUG__
-#pragma interface
-#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.
 
   Note that collapsed_ encompasses both the inline and collapsed button
-  versions of this inset. 
+  versions of this inset.
 */
+
+class Language;
+
 class InsetERT : public InsetCollapsable {
 public:
        ///
@@ -38,65 +36,49 @@ public:
                Inlined
        };
        ///
-       InsetERT(bool collapsed=false);
+       InsetERT(BufferParams const &, bool collapsed = false);
        ///
-       InsetERT(InsetERT const &, bool same_id = false);
+       InsetERT(InsetERT const &);
        ///
-       Inset * clone(Buffer const &, bool same_id = false) const;
+       virtual std::auto_ptr<InsetBase> clone() const;
        ///
-       InsetERT(string const & contents, bool collapsed);
+       InsetERT(BufferParams const &,
+                Language const *, std::string const & contents, bool collapsed);
        ///
        ~InsetERT();
        ///
-       Inset::Code lyxCode() const { return Inset::ERT_CODE; }
+       InsetOld::Code lyxCode() const { return InsetOld::ERT_CODE; }
        ///
-       void read(Buffer const * buf, LyXLex & lex);
+       void read(Buffer const & buf, LyXLex & lex);
        ///
-       void write(Buffer const * buf, std::ostream & os) const;
+       void write(Buffer const & buf, std::ostream & os) const;
        ///
-       string const editMessage() const;
+       std::string const editMessage() const;
        ///
-       bool insertInset(BufferView *, Inset *);
+       bool insertInset(BufferView *, InsetOld *);
        ///
-       bool insetAllowed(Inset::Code) const { return false; }
+       bool insetAllowed(InsetOld::Code code) const { return code == InsetOld::NEWLINE_CODE; }
        ///
        void setFont(BufferView *, LyXFont const &,
-                            bool toggleall = false, bool selectall = false);
-       ///
-       void edit(BufferView *, int, int, unsigned int);
-       ///
-       void edit(BufferView * bv, bool front = true);
+                            bool toggleall = false, bool selectall = false);
        ///
        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 &,
+                 LatexRunParams const &) const;
        ///
-       int latex(Buffer const *, std::ostream &, bool fragile,
-                 bool free_spc) const;
+       int ascii(Buffer const &,
+                         std::ostream &, int linelen = 0) const;
        ///
-       int ascii(Buffer const *,
-                         std::ostream &, int linelen = 0) const;
+       int linuxdoc(Buffer const &, std::ostream &) const;
        ///
-       int linuxdoc(Buffer const *, std::ostream &) const;
-       ///
-       int docbook(Buffer const *, std::ostream &) const;
+       int docbook(Buffer const &, std::ostream &, bool mixcont) 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; }
+       // these are needed here because of the label/inlined functionallity
        ///
        bool isOpen() const { return status_ == Open || status_ == Inlined; }
        ///
@@ -108,26 +90,44 @@ public:
        ///
        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;
+       bool allowSpellcheck() const { return false; }
+
+       WordLangTuple const
+       selectNextWordToSpellcheck(BufferView *, float &) const;
        ///
-       int width(BufferView *, LyXFont const &) const;
+       void metrics(MetricsInfo &, Dimension &) const;
        ///
-       void draw(BufferView *, const LyXFont &, int , float &, bool) const;
+       void draw(PainterInfo & pi, int x, int y) const;
        /// set the status of the inset
        void status(BufferView *, ERTStatus const st) const;
        ///
        bool showInsetDialog(BufferView *) const;
-
+       ///
+       void getDrawFont(LyXFont &) const;
+       ///
+       bool forceDefaultParagraphs(InsetOld const *) const {
+               return true;
+       }
+protected:
+       ///
+       virtual
+       dispatch_result
+       priv_dispatch(FuncRequest const &, idx_type &, pos_type &);
 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();
        ///
-       string const get_new_label() const;
+       std::string const get_new_label() const;
        ///
        void setButtonLabel() const;
        ///
@@ -139,4 +139,28 @@ private:
        mutable ERTStatus status_;
 };
 
+
+#include "mailinset.h"
+
+class InsetERTMailer : public MailInset {
+public:
+       ///
+       InsetERTMailer(InsetERT & inset);
+       ///
+       virtual InsetBase & inset() const { return inset_; }
+       ///
+       virtual std::string const & name() const { return name_; }
+       ///
+       virtual std::string const inset2string(Buffer const &) const;
+       ///
+       static void string2params(std::string const &, InsetERT::ERTStatus &);
+       ///
+       static std::string const params2string(InsetERT::ERTStatus);
+private:
+       ///
+       static std::string const name_;
+       ///
+       InsetERT & inset_;
+};
+
 #endif