X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetNote.h;h=e40b769854f24ca44c45c73a605a416ac2a01a86;hb=a6b07608d8e9de24383d3ebaec20b6b265ed9314;hp=70faf4c03df691be7fe3c2b8d8682684eaaba266;hpb=1f1951e210de0e10ccb244cb9f93b29dfade6b1c;p=lyx.git diff --git a/src/insets/InsetNote.h b/src/insets/InsetNote.h index 70faf4c03d..e40b769854 100644 --- a/src/insets/InsetNote.h +++ b/src/insets/InsetNote.h @@ -12,7 +12,7 @@ #ifndef INSET_NOTE_H #define INSET_NOTE_H -#include "InsetCollapsable.h" +#include "InsetCollapsible.h" namespace lyx { @@ -43,11 +43,11 @@ public: ///////////////////////////////////////////////////////////////////////// /// The PostIt note inset, and other annotations -class InsetNote : public InsetCollapsable +class InsetNote : public InsetCollapsible { public: /// - InsetNote(Buffer const &, std::string const &); + InsetNote(Buffer *, std::string const &); /// ~InsetNote(); /// @@ -57,53 +57,52 @@ public: /// InsetNoteParams const & params() const { return params_; } private: - /// - docstring editMessage() const; /// InsetCode lyxCode() const { return NOTE_CODE; } /// - docstring name() const; + docstring layoutName() 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; } + /// + bool allowSpellCheck() const; /// - bool noFontChange() const { return params_.type != InsetNoteParams::Note; } - /*! - * Is the content of this inset part of the output document? - * - * Note that Note insets are not considered part of the - * document, even in their 'greyed out' incarnation. - */ - bool producesOutput() const { return false; } + FontInfo getFont() const; /// void write(std::ostream &) const; /// void read(Lexer & lex); - /// - void setButtonLabel(); /// show the note dialog bool showInsetDialog(BufferView * bv) const; /// bool isMacroScope() const; /// - int latex(odocstream &, OutputParams const &) const; + void latex(otexstream &, OutputParams const &) const; /// - int plaintext(odocstream &, OutputParams const &) const; + int plaintext(odocstringstream & ods, OutputParams const & op, + size_t max_length = INT_MAX) const; /// int docbook(odocstream &, OutputParams const &) const; /// + docstring xhtml(XMLStream &, OutputParams const &) const; + /// void validate(LaTeXFeatures &) const; /// bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const; /// - void addToToc(DocIterator const &); - /// void doDispatch(Cursor & cur, FuncRequest & cmd); /// Inset * clone() const { return new InsetNote(*this); } /// used by the constructors void init(); /// - docstring contextMenu(BufferView const & bv, int x, int y) const; + std::string contextMenuName() const; /// friend class InsetNoteParams; @@ -111,14 +110,6 @@ private: InsetNoteParams params_; }; -class BufferView; - -/** - * Mutate all NoteInsets of "source" type to the "target" type in the document. - * Returns true when some inset was changed. - */ -bool mutateNotes(lyx::BufferView * view, std::string const & source, std::string const &target); - } // namespace lyx #endif // INSET_NOTE_H