]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetnote.h
use more specific smart_ptr headers
[lyx.git] / src / insets / insetnote.h
index 5ac501f8452edec4f91821c1c08526e5f599f528..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);
        ///
-       virtual Inset * clone(Buffer const &, bool) const;
+       Inset * clone(Buffer const &, bool same_id = false) const;
+       /// constructor with initial contents
+       InsetNote(Buffer const *, string const & contents, bool collapsed);
        ///
-       virtual string const editMessage() const;
+       string const editMessage() const;
        ///
-       virtual Inset::Code lyxCode() const { return Inset::IGNORE_CODE; }
+       Inset::Code lyxCode() const { return Inset::IGNORE_CODE; }
        ///
-       virtual void write(Buffer const *, std::ostream &) const;
+       void write(Buffer const *, std::ostream &) const;
        ///
-       virtual int latex(Buffer const *, std::ostream &, bool, bool) const
+       int latex(Buffer const *, std::ostream &, bool, bool) const
                { return 0; }
+       ///
+       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();
+
 };
 
 #endif