X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetNote.h;h=d6cc0a6510ec623e4903732b00ade77a1eaa1b64;hb=ed7d3a33abad4e1b5141b2ec626b542d1603782c;hp=4f9ecff3e5a98d56401c47f2ce29eb76f4ad5c28;hpb=e7f2bbe1eec4752ae2c88481bd77320186bbb8fb;p=lyx.git diff --git a/src/insets/InsetNote.h b/src/insets/InsetNote.h index 4f9ecff3e5..d6cc0a6510 100644 --- a/src/insets/InsetNote.h +++ b/src/insets/InsetNote.h @@ -60,34 +60,33 @@ private: /// InsetCode lyxCode() const { return NOTE_CODE; } /// - docstring name() const; + docstring layoutName() const; /// DisplayType display() 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; } + /** 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; /// + 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; /// @@ -97,15 +96,13 @@ private: /// 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 contextMenuName() const; + std::string contextMenuName() const; /// friend class InsetNoteParams;