]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetnote.h
move inset related stuff from src/graphics to src/inset/
[lyx.git] / src / insets / insetnote.h
index a23fbdb2191a29a2fc09719c23ae6cb9f4280b99..2c20a8e8996623a45000348f011b7e48a7ea7459 100644 (file)
@@ -1,7 +1,7 @@
 // -*- C++ -*-
 /* This file is part of
  * ======================================================
- * 
+ *
  *           LyX, The Document Processor
  *
  *           Copyright 2001 The LyX Team.
 #include "insetcollapsable.h"
 
 /** The PostIt note inset
-  
+
 */
 class InsetNote : public InsetCollapsable {
 public:
-       /// 
-       InsetNote();
+       ///
+       InsetNote(BufferParams const &);
+       ///
+       InsetNote(InsetNote const &, bool same_id = false);
+       ///
+       Inset * clone(Buffer const &, bool same_id = false) const;
        /// constructor with initial contents
        InsetNote(Buffer const *, string const & contents, bool collapsed);
        ///
-       virtual Inset * clone(Buffer const &, bool) const;
+       string const editMessage() const;
        ///
-       virtual string const editMessage() const;
+       Inset::Code lyxCode() const { return Inset::IGNORE_CODE; }
        ///
-       virtual Inset::Code lyxCode() const { return Inset::IGNORE_CODE; }
+       void write(Buffer const *, std::ostream &) const;
        ///
-       virtual void write(Buffer const *, std::ostream &) const;
+       int latex(Buffer const *, std::ostream &, bool, bool) const
+               { return 0; }
        ///
-       virtual int latex(Buffer const *, std::ostream &, bool, bool) const
+       int linuxdoc(Buffer const *, std::ostream &) const
                { return 0; }
+       ///
+       int docbook(Buffer const *, std::ostream &) const
+               { return 0; }
+       ///
+       int ascii(Buffer const *, std::ostream &, int) const
+               { return 0; }
+       ///
+       void validate(LaTeXFeatures &) const {}
 private:
        /// used by the constructors
        void init();