]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetNote.h
Do not check again and again for non existing files
[lyx.git] / src / insets / InsetNote.h
index 65cc2ce2eeacc216b706b1a097e1bd133fdccf77..9df1a501a29c75ba12c7ebc3c8f13517f7f4d3c4 100644 (file)
@@ -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"
+#include "InsetCollapsible.h"
 
 
 namespace lyx {
 
-class InsetNoteParams {
+class InsetNoteParams
+{
 public:
        enum Type {
                Note,
@@ -36,87 +36,80 @@ public:
 };
 
 
-/** The PostIt note inset, and other annotations
+/////////////////////////////////////////////////////////////////////////
+//
+// InsetNote
+//
+/////////////////////////////////////////////////////////////////////////
 
-*/
-class InsetNote : public InsetCollapsable {
+/// The PostIt note inset, and other annotations
+class InsetNote : public InsetCollapsible
+{
 public:
        ///
-       InsetNote(BufferParams const &, std::string const &);
+       InsetNote(Buffer *, std::string const &);
        ///
        ~InsetNote();
        ///
-       docstring 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;
+       ///
+       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; }
        ///
-       virtual DisplayType display() const;
+       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;
        ///
-       void validate(LaTeXFeatures &) const;
+       docstring xhtml(XHTMLStream &, 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
-       void updateLabels(ParIterator const &);
        ///
-       void addToToc(ParConstIterator const &) const;
-protected:
-       InsetNote(InsetNote const &);
+       void doDispatch(Cursor & cur, FuncRequest & cmd);
        ///
-       virtual void doDispatch(Cursor & cur, FuncRequest & cmd);
-private:
-       friend class InsetNoteParams;
-       ///
-       Inset * clone() const;
+       Inset * clone() const { return new InsetNote(*this); }
        /// used by the constructors
        void init();
        ///
-       InsetNoteParams params_;
-};
-
-
-class InsetNoteMailer : public MailInset {
-public:
-       ///
-       InsetNoteMailer(InsetNote & inset);
-       ///
-       virtual Inset & inset() const { return inset_; }
-       ///
-       virtual std::string const & name() const { return name_; }
-       ///
-       virtual std::string const inset2string(Buffer const &) const;
+       std::string contextMenuName() const;
        ///
-       static std::string const params2string(InsetNoteParams 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