]> 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 99e5294647c622db48b6d249e1789dbd1eb0ff58..77f81aef220a049bcaf6f5d780c4770c5c28c2d8 100644 (file)
 // -*- 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 "mailinset.h"
+
 
-#include "insettext.h"
+namespace lyx {
 
-class Painter;
+/** A collapsable text inset for LaTeX insertions.
 
-/** A colapsable text inset
-  
   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 InsetText {
-public:
-    ///
-    InsetERT(Buffer *);
-    ///
-    //     InsetERT(InsetERT const &, Buffer *);
-    ///
-    ~InsetERT() {}
-    ///
-    InsetERT * Clone() const;
-    ///
-    //    void Read(LyXLex &);
-    ///
-    void Write(ostream &) const;
-    ///
-    int ascent(Painter &, LyXFont const &) const;
-    ///
-    int descent(Painter &, LyXFont const &) const;
-    ///
-    int width(Painter &, LyXFont const & f) const;
-    ///
-    void draw(Painter & pain, const LyXFont &, int , float &) const;
-    ///
-    //LString EditMessage() const;
-    ///
-    void InsetButtonRelease(BufferView *, int, int, int);
-    ///
-    void InsetButtonPress(BufferView *, int, int, int);
-    ///
-    void InsetMotionNotify(BufferView *, int, int, int);
-    ///
-    void Edit(BufferView *, int, int, unsigned int);
-    ///
-    void InsetUnlock(BufferView *);
-    ///
-    bool InsertInset(Inset *);
-    ///
-    void SetFont(LyXFont const &, bool toggleall);
 
+class Language;
+
+class InsetERT : public InsetCollapsable {
+public:
+       ///
+       InsetERT(BufferParams const &, CollapseStatus status = Open);
+#if 0
+       ///
+       InsetERT(BufferParams const &,
+                Language const *, std::string const & contents, CollapseStatus status);
+#endif
+       ///
+       ~InsetERT();
+       ///
+       InsetBase::Code lyxCode() const { return InsetBase::ERT_CODE; }
+       ///
+       void write(Buffer const & buf, std::ostream & os) const;
+       ///
+       void read(Buffer const & buf, LyXLex & lex);
+       ///
+       virtual docstring const editMessage() const;
+       ///
+       bool insetAllowed(InsetBase::Code code) const;
+       ///
+       int latex(Buffer const &, odocstream &,
+                 OutputParams const &) const;
+       ///
+       int plaintext(Buffer const &, odocstream &,
+                 OutputParams const & runparams) const;
+       ///
+       int docbook(Buffer const &, odocstream &,
+                   OutputParams const & runparams) const;
+       ///
+       void validate(LaTeXFeatures &) const {}
+       ///
+       bool metrics(MetricsInfo &, Dimension &) const;
+       ///
+       void draw(PainterInfo & pi, int x, int y) const;
+       ///
+       bool showInsetDialog(BufferView *) const;
+       ///
+       void getDrawFont(LyXFont &) const;
+       ///
+       bool forceDefaultParagraphs(idx_type) const { return true; }
+       /// should paragraph indendation be ommitted in any case?
+       bool neverIndent(Buffer const &) const { return true; }
 protected:
-    ///
-    int ascent_closed(Painter &, LyXFont const &) const;
-    ///
-    int descent_closed(Painter &, LyXFont const &) const;
-    ///
-    int width_closed(Painter &, LyXFont const & f) const;
-    ///
-    void draw_closed(Painter & pain, LyXFont const &, int , float &) const;
+       InsetERT(InsetERT const &);
+       ///
+       virtual void doDispatch(LCursor & cur, FuncRequest & cmd);
+       ///
+       bool getStatus(LCursor & cur, FuncRequest const & cmd, FuncStatus &) const;
+private:
+       virtual std::auto_ptr<InsetBase> doClone() const;
+       ///
+       void init();
+       ///
+       void setButtonLabel();
+       ///
+       bool allowSpellCheck() const { return false; }
+};
 
+
+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 &,
+               InsetCollapsable::CollapseStatus &);
+       ///
+       static std::string const params2string(InsetCollapsable::CollapseStatus);
 private:
        ///
-       bool closed;
+       static std::string const name_;
        ///
-       bool nomotion;
+       InsetERT & inset_;
 };
 
+
+} // namespace lyx
+
 #endif