]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetNote.h
Add LFUN_NOTES_MUTATE for global change of note insets type.
[lyx.git] / src / insets / InsetNote.h
index e585701993253a727b550c6288d986489af96339..70faf4c03df691be7fe3c2b8d8682684eaaba266 100644 (file)
@@ -9,23 +9,21 @@
  * 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,
                Comment,
-               Greyedout,
-               Framed,
-               Shaded
+               Greyedout
        };
        /// \c type defaults to Note
        InsetNoteParams();
@@ -38,84 +36,89 @@ 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 const &, std::string const &);
        ///
        ~InsetNote();
        ///
-       virtual docstring const editMessage() const;
+       static std::string params2string(InsetNoteParams const &);
        ///
-       Inset::Code lyxCode() const { return Inset::NOTE_CODE; }
+       static void string2params(std::string const &, InsetNoteParams &);
+       ///
+       InsetNoteParams const & params() const { return params_; }
+private:
+       ///
+       docstring editMessage() const;
+       ///
+       InsetCode lyxCode() const { return NOTE_CODE; }
        ///
        docstring name() const;
-       /// framed and shaded notes are displayed
-       virtual DisplayType display() const;
        ///
-       void write(Buffer const &, std::ostream &) 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; }
        ///
-       void read(Buffer const & buf, Lexer & lex);
+       void write(std::ostream &) const;
+       ///
+       void read(Lexer & lex);
        ///
        void setButtonLabel();
        /// 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;
+       int latex(odocstream &, OutputParams const &) const;
        ///
-       int docbook(Buffer const &, odocstream &, OutputParams const &) const;
+       int plaintext(odocstream &, OutputParams const &) const;
        ///
-       void validate(LaTeXFeatures &) const;
+       int docbook(odocstream &, OutputParams const &) const;
        ///
-       InsetNoteParams const & params() const { return params_; }
+       void validate(LaTeXFeatures &) 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 std::auto_ptr<Inset> doClone() const;
-
-       /// used by the constructors
-       void init();
        ///
-       InsetNoteParams params_;
-};
-
-
-class InsetNoteMailer : public MailInset {
-public:
-       ///
-       InsetNoteMailer(InsetNote & inset);
+       void addToToc(DocIterator const &);
        ///
-       virtual Inset & inset() const { return inset_; }
+       void doDispatch(Cursor & cur, FuncRequest & cmd);
        ///
-       virtual std::string const & name() const { return name_; }
-       ///
-       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 &);
+       docstring contextMenu(BufferView const & bv, int x, int y) const;
        ///
-       static void string2params(std::string const &, InsetNoteParams &);
+       friend class InsetNoteParams;
 
-private:
-       ///
-       static std::string const name_;
        ///
-       InsetNote & inset_;
+       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
+#endif // INSET_NOTE_H