X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetNote.h;h=c80d61b27df1e6e7edccf455b440690b176dbf7b;hb=06e2669b354561ebafcd69c24d0319d47ba1d279;hp=11fe68f7832a8ea841e3ec26b4f6ca0d9934524b;hpb=3582be1441db296f29b54649f743745843e499e2;p=lyx.git diff --git a/src/insets/InsetNote.h b/src/insets/InsetNote.h index 11fe68f783..c80d61b27d 100644 --- a/src/insets/InsetNote.h +++ b/src/insets/InsetNote.h @@ -9,16 +9,16 @@ * Full author contact details are available in file CREDITS. */ -#ifndef INSETNOTE_H -#define INSETNOTE_H +#ifndef INSET_NOTE_H +#define INSET_NOTE_H #include "InsetCollapsable.h" -#include "MailInset.h" namespace lyx { -class InsetNoteParams { +class InsetNoteParams +{ public: enum Type { Note, @@ -36,84 +36,83 @@ public: }; -/** The PostIt note inset, and other annotations +///////////////////////////////////////////////////////////////////////// +// +// InsetNote +// +///////////////////////////////////////////////////////////////////////// -*/ -class InsetNote : public InsetCollapsable { +/// The PostIt note inset, and other annotations +class InsetNote : public InsetCollapsable +{ public: /// - InsetNote(BufferParams const &, std::string const &); + InsetNote(Buffer *, std::string const &); /// ~InsetNote(); /// - virtual docstring const editMessage() const; + static std::string params2string(InsetNoteParams const &); + /// + static void string2params(std::string const &, InsetNoteParams &); + /// + InsetNoteParams const & params() const { return params_; } +private: /// InsetCode lyxCode() const { return NOTE_CODE; } /// - docstring name() const; + docstring layoutName() const; /// - virtual DisplayType display() const; + DisplayType display() const; + /** returns false if, when outputing LaTeX, font changes should + be closed before generating this inset. This is needed for + insets that may contain several paragraphs */ + bool inheritFont() const { return params_.type == InsetNoteParams::Note; } + /// Is the content of this inset part of the output document? + bool producesOutput() const + { return params_.type == InsetNoteParams::Greyedout; } /// - void write(Buffer const &, std::ostream &) const; + bool allowSpellCheck() const; /// - void read(Buffer const & buf, Lexer & lex); + FontInfo getFont() const; /// - void setButtonLabel(); + void write(std::ostream &) const; + /// + void read(Lexer & lex); /// show the note dialog bool showInsetDialog(BufferView * bv) const; /// - int latex(Buffer const &, odocstream &, OutputParams const &) const; + bool isMacroScope() const; /// - int plaintext(Buffer const &, odocstream &, OutputParams const &) const; + void latex(otexstream &, OutputParams const &) const; /// - int docbook(Buffer const &, odocstream &, OutputParams const &) const; + int plaintext(odocstringstream & ods, OutputParams const & op, + size_t max_length = INT_MAX) const; /// - void validate(LaTeXFeatures &) const; + int docbook(odocstream &, OutputParams const &) const; /// - InsetNoteParams const & params() const { return params_; } + docstring xhtml(XHTMLStream &, OutputParams const &) const; /// - bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const; - // Update the counters of this inset and of its contents - virtual void updateLabels(Buffer const &, ParIterator const &); -protected: - InsetNote(InsetNote const &); - /// - virtual void doDispatch(Cursor & cur, FuncRequest & cmd); -private: - friend class InsetNoteParams; - - virtual Inset * clone() const; - - /// used by the constructors - void init(); - /// - InsetNoteParams params_; -}; - - -class InsetNoteMailer : public MailInset { -public: + void validate(LaTeXFeatures &) const; /// - InsetNoteMailer(InsetNote & inset); + bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const; /// - virtual Inset & inset() const { return inset_; } + void addToToc(DocIterator const & di, bool output_active, + UpdateType utype) const; /// - virtual std::string const & name() const { return name_; } + void doDispatch(Cursor & cur, FuncRequest & cmd); /// - virtual std::string const inset2string(Buffer const &) const; + Inset * clone() const { return new InsetNote(*this); } + /// used by the constructors + void init(); /// - static std::string const params2string(InsetNoteParams const &); + std::string contextMenuName() const; /// - static void string2params(std::string const &, InsetNoteParams &); + friend class InsetNoteParams; -private: - /// - static std::string const name_; /// - InsetNote & inset_; + InsetNoteParams params_; }; - } // namespace lyx -#endif +#endif // INSET_NOTE_H