X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetert.h;h=77f81aef220a049bcaf6f5d780c4770c5c28c2d8;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=69a3a155fd37ba1016152d966824d3a8d66a4119;hpb=3c32875ece98043403b55e0ead0896bf893cabb5;p=lyx.git diff --git a/src/insets/insetert.h b/src/insets/insetert.h index 69a3a155fd..77f81aef22 100644 --- a/src/insets/insetert.h +++ b/src/insets/insetert.h @@ -1,128 +1,119 @@ // -*- 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 +#include "mailinset.h" + + +namespace lyx { /** 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: /// - enum ERTStatus { - Open, - Collapsed, - Inlined - }; + InsetERT(BufferParams const &, CollapseStatus status = Open); +#if 0 /// - InsetERT(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 *, 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 *); - /// - bool insetAllowed(Inset::Code) const { return false; } + InsetBase::Code lyxCode() const { return InsetBase::ERT_CODE; } /// - void setFont(BufferView *, LyXFont const &, - bool toggleall = false, bool selectall = false); + void write(Buffer const & buf, std::ostream & os) const; /// - void edit(BufferView *, int, int, unsigned int); + void read(Buffer const & buf, LyXLex & lex); /// - void edit(BufferView * bv, bool front = true); + virtual docstring const editMessage() const; /// - EDITABLE editable() const; + bool insetAllowed(InsetBase::Code code) const; /// - SigC::Signal0 hideDialog; + int latex(Buffer const &, odocstream &, + OutputParams const &) const; /// - void insetButtonRelease(BufferView * bv, int x, int y, int button); + int plaintext(Buffer const &, odocstream &, + OutputParams const & runparams) const; /// - int latex(Buffer const *, std::ostream &, bool fragile, - bool free_spc) const; + int docbook(Buffer const &, odocstream &, + OutputParams const & runparams) const; /// - int ascii(Buffer const *, - std::ostream &, int linelen = 0) const; + void validate(LaTeXFeatures &) const {} /// - int linuxdoc(Buffer const *, std::ostream &) const; + bool metrics(MetricsInfo &, Dimension &) const; /// - int docBook(Buffer const *, std::ostream &) const; + void draw(PainterInfo & pi, int x, int y) const; /// - UpdatableInset::RESULT localDispatch(BufferView *, kb_action, - string const &); - /// - bool checkInsertChar(LyXFont &); + bool showInsetDialog(BufferView *) const; /// - // this are needed here because of the label/inlined functionallity + void getDrawFont(LyXFont &) const; /// - bool needFullRow() const { return status_ == Open; } + 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 isOpen() const { return status_ == Open || status_ == Inlined; } + virtual void doDispatch(LCursor & cur, FuncRequest & cmd); /// - void open(BufferView *); + bool getStatus(LCursor & cur, FuncRequest const & cmd, FuncStatus &) const; +private: + virtual std::auto_ptr doClone() const; /// - void close(BufferView *) const; + void init(); /// - bool inlined() const { return status_ == Inlined; } + void setButtonLabel(); /// - int ascent(BufferView *, LyXFont const &) const; + bool allowSpellCheck() const { return false; } +}; + + +class InsetERTMailer : public MailInset { +public: /// - int descent(BufferView *, LyXFont const &) const; + InsetERTMailer(InsetERT & inset); /// - int width(BufferView *, LyXFont const &) const; + virtual InsetBase & inset() const { return inset_; } /// - void draw(BufferView *, const LyXFont &, int , float &, bool) const; + virtual std::string const & name() const { return name_; } /// - ERTStatus status() const { return status_; } + virtual std::string const inset2string(Buffer const &) const; /// - void status(BufferView *, ERTStatus const st) const; + static void string2params(std::string const &, + InsetCollapsable::CollapseStatus &); /// - bool showInsetDialog(BufferView *) const; - + static std::string const params2string(InsetCollapsable::CollapseStatus); private: /// - void init(); - /// - string const get_new_label() const; - /// - void setButtonLabel() const; + static std::string const name_; /// - void set_latex_font(BufferView *); - - /// - mutable ERTStatus status_; + InsetERT & inset_; }; + +} // namespace lyx + #endif