X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetert.h;h=77f81aef220a049bcaf6f5d780c4770c5c28c2d8;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=89f211c137d6842a4c80231fe3a7a39c6111aaeb;hpb=46e5fe4a67e6645e0cb6a74c47c6036efc6625de;p=lyx.git diff --git a/src/insets/insetert.h b/src/insets/insetert.h index 89f211c137..77f81aef22 100644 --- a/src/insets/insetert.h +++ b/src/insets/insetert.h @@ -7,14 +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" + + +namespace lyx { /** A collapsable text inset for LaTeX insertions. @@ -30,126 +33,64 @@ class Language; class InsetERT : public InsetCollapsable { public: /// - enum ERTStatus { - Open, - Collapsed, - Inlined - }; - /// - InsetERT(BufferParams const &, bool collapsed = false); - /// - InsetERT(InsetERT const &); - /// - //InsetERT(InsetERT const &, bool same_id); - /// - Inset * clone(Buffer const &) const; - /// - //Inset * clone(Buffer const &, bool same_id) 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 code) const { return code == Inset::NEWLINE_CODE; } + 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); /// - EDITABLE editable() const; + virtual docstring const editMessage() const; /// - int latex(Buffer const *, std::ostream &, - LatexRunParams const &) const; + bool insetAllowed(InsetBase::Code code) const; /// - int ascii(Buffer const *, - std::ostream &, int linelen = 0) const; + int latex(Buffer const &, odocstream &, + OutputParams const &) const; /// - int linuxdoc(Buffer const *, std::ostream &) const; + int plaintext(Buffer const &, odocstream &, + OutputParams const & runparams) 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 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; } + bool metrics(MetricsInfo &, Dimension &) const; /// - ERTStatus status() const { return status_; } - /// - void open(BufferView *); - /// - void close(BufferView *) const; - /// - bool allowSpellcheck() const { return false; } - - WordLangTuple const - selectNextWordToSpellcheck(BufferView *, float &) const; - /// - void dimension(BufferView *, LyXFont const &, Dimension &) const; - /// - void draw(BufferView *, const LyXFont &, int , float &) const; - /// set the status of the inset - void status(BufferView *, ERTStatus const st) const; + void draw(PainterInfo & pi, int x, int y) const; /// bool showInsetDialog(BufferView *) const; /// void getDrawFont(LyXFont &) const; /// - bool forceDefaultParagraphs(Inset const *) const { - return true; - } + 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 &); /// - int getMaxWidth(BufferView *, UpdatableInset const *) const; + virtual void doDispatch(LCursor & cur, FuncRequest & cmd); /// - void update(BufferView *, bool =false); - + bool getStatus(LCursor & cur, FuncRequest const & cmd, FuncStatus &) const; 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 &); + virtual std::auto_ptr doClone() const; /// void init(); /// - string const get_new_label() const; - /// - void setButtonLabel() const; - /// - void set_latex_font(BufferView *); - /// update status on button - void updateStatus(BufferView *, bool = false) const; - + void setButtonLabel(); /// - mutable ERTStatus status_; + bool allowSpellCheck() const { return false; } }; -#include "mailinset.h" - class InsetERTMailer : public MailInset { public: /// @@ -157,18 +98,22 @@ public: /// virtual InsetBase & inset() const { return inset_; } /// - virtual string const & name() const { return name_; } + virtual std::string const & name() const { return name_; } /// - virtual string const inset2string() const; + virtual std::string const inset2string(Buffer const &) const; /// - static void string2params(string const &, InsetERT::ERTStatus &); + static void string2params(std::string const &, + InsetCollapsable::CollapseStatus &); /// - static string const params2string(InsetERT::ERTStatus); + static std::string const params2string(InsetCollapsable::CollapseStatus); private: /// - static string const name_; + static std::string const name_; /// InsetERT & inset_; }; + +} // namespace lyx + #endif