]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetNote.h
#7379 avoid the wrap spell check question when buffer is empty
[lyx.git] / src / insets / InsetNote.h
index dde3a48cb230008257bdd666b309888eabb746e7..04435a0b40358b1209e5de6ee5f068abe858b1ce 100644 (file)
@@ -63,29 +63,25 @@ private:
        docstring name() 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;
        ///
        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;
        ///
@@ -97,7 +93,7 @@ private:
        ///
        bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const;
        ///
-       void addToToc(DocIterator const &);
+       void addToToc(DocIterator const &) const;
        ///
        void doDispatch(Cursor & cur, FuncRequest & cmd);
        ///
@@ -105,7 +101,7 @@ private:
        /// used by the constructors
        void init();
        ///
-       docstring contextMenu(BufferView const & bv, int x, int y) const;
+       docstring contextMenuName() const;
        ///
        friend class InsetNoteParams;