]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetert.h
* src/LyXAction.C: mark goto-clear-bookmark as working without buffer
[lyx.git] / src / insets / insetert.h
index a03d9877b93da56cf5afdb06922360409974cbb1..77f81aef220a049bcaf6f5d780c4770c5c28c2d8 100644 (file)
@@ -7,16 +7,17 @@
  * \author Jürgen Vigna
  * \author Lars Gullik Bjønnes
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef INSETERT_H
 #define INSETERT_H
 
-
 #include "insetcollapsable.h"
+#include "mailinset.h"
+
 
-#include <boost/signals/signal0.hpp>
+namespace lyx {
 
 /** A collapsable text inset for LaTeX insertions.
 
@@ -32,127 +33,87 @@ class Language;
 class InsetERT : public InsetCollapsable {
 public:
        ///
-       enum ERTStatus {
-               Open,
-               Collapsed,
-               Inlined
-       };
-       ///
-       InsetERT(BufferParams const &, bool collapsed = false);
-       ///
-       InsetERT(InsetERT const &, bool same_id = false);
-       ///
-       Inset * clone(Buffer const &, bool same_id = false) const;
+       InsetERT(BufferParams const &, CollapseStatus status = Open);
+#if 0
        ///
        InsetERT(BufferParams const &,
-                Language const *, string const & contents, bool collapsed);
+                Language const *, std::string const & contents, CollapseStatus status);
+#endif
        ///
        ~InsetERT();
        ///
-       Inset::Code lyxCode() const { return Inset::ERT_CODE; }
-       ///
-       void read(Buffer const * buf, LyXLex & lex);
-       ///
-       void write(Buffer const * buf, std::ostream & os) const;
-       ///
-       string const editMessage() const;
-       ///
-       bool insertInset(BufferView *, Inset *);
+       InsetBase::Code lyxCode() const { return InsetBase::ERT_CODE; }
        ///
-       bool insetAllowed(Inset::Code) const { return false; }
+       void write(Buffer const & buf, std::ostream & os) const;
        ///
-       void setFont(BufferView *, LyXFont const &,
-                            bool toggleall = false, bool selectall = false);
+       void read(Buffer const & buf, LyXLex & lex);
        ///
-       void edit(BufferView *, int, int, mouse_button::state);
+       virtual docstring const editMessage() const;
        ///
-       void edit(BufferView * bv, bool front = true);
+       bool insetAllowed(InsetBase::Code code) const;
        ///
-       EDITABLE editable() const;
+       int latex(Buffer const &, odocstream &,
+                 OutputParams const &) const;
        ///
-       boost::signal0<void> hideDialog;
+       int plaintext(Buffer const &, odocstream &,
+                 OutputParams const & runparams) const;
        ///
-       int latex(Buffer const *, std::ostream &, bool fragile,
-                 bool free_spc) const;
-       ///
-       int ascii(Buffer const *,
-                         std::ostream &, int linelen = 0) const;
-       ///
-       int linuxdoc(Buffer const *, std::ostream &) const;
-       ///
-       int docbook(Buffer const *, std::ostream &, bool mixcont) const;
+       int docbook(Buffer const &, odocstream &,
+                   OutputParams const & runparams) const;
        ///
        void validate(LaTeXFeatures &) const {}
        ///
-       RESULT localDispatch(FuncRequest const &);
+       bool metrics(MetricsInfo &, Dimension &) const;
        ///
-       bool checkInsertChar(LyXFont &);
+       void draw(PainterInfo & pi, int x, int y) const;
        ///
-       // this are needed here because of the label/inlined functionallity
+       bool showInsetDialog(BufferView *) const;
        ///
-       bool needFullRow() const { return status_ == Open; }
+       void getDrawFont(LyXFont &) const;
        ///
-       bool isOpen() const { return status_ == Open || status_ == Inlined; }
+       bool forceDefaultParagraphs(idx_type) const { return true; }
+       /// should paragraph indendation be ommitted in any case?
+       bool neverIndent(Buffer const &) const { return true; }
+protected:
+       InsetERT(InsetERT const &);
        ///
-       bool inlined() const { return status_ == Inlined; }
+       virtual void doDispatch(LCursor & cur, FuncRequest & cmd);
        ///
-       ERTStatus status() const { return status_; }
+       bool getStatus(LCursor & cur, FuncRequest const & cmd, FuncStatus &) const;
+private:
+       virtual std::auto_ptr<InsetBase> doClone() const;
        ///
-       void open(BufferView *);
+       void init();
        ///
-       void close(BufferView *) const;
+       void setButtonLabel();
        ///
-       bool allowSpellcheck() const { return false; }
+       bool allowSpellCheck() const { return false; }
+};
 
-       WordLangTuple 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;
-       ///
-       void getDrawFont(LyXFont &) const;
-       ///
-       bool forceDefaultParagraphs(Inset const *) const {
-               return true;
-       }
-       ///
-       int getMaxWidth(BufferView *, UpdatableInset const *) const;
-       ///
-       void update(BufferView *, LyXFont const &, bool =false);
 
-private:
-       ///
-       void lfunMousePress(FuncRequest const &);
+class InsetERTMailer : public MailInset {
+public:
        ///
-       // 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!
+       InsetERTMailer(InsetERT & inset);
        ///
-       bool lfunMouseRelease(FuncRequest const &);
+       virtual InsetBase & inset() const { return inset_; }
        ///
-       void lfunMouseMotion(FuncRequest const &);
+       virtual std::string const & name() const { return name_; }
        ///
-       void init();
+       virtual std::string const inset2string(Buffer const &) const;
        ///
-       string const get_new_label() const;
+       static void string2params(std::string const &,
+               InsetCollapsable::CollapseStatus &);
        ///
-       void setButtonLabel() const;
+       static std::string const params2string(InsetCollapsable::CollapseStatus);
+private:
        ///
-       void set_latex_font(BufferView *);
-       /// update status on button
-       void updateStatus(BufferView *, bool = false) const;
-
+       static std::string const name_;
        ///
-       mutable ERTStatus status_;
+       InsetERT & inset_;
 };
 
+
+} // namespace lyx
+
 #endif