]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetnote.h
fix #832
[lyx.git] / src / insets / insetnote.h
index f4f103f18cd73d714bb400c1daa056e6d0d79ff3..1043300d92fd5cedc03d25d41a31fd55a7ee46be 100644 (file)
@@ -1,41 +1,51 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
+/**
+ * \file insetnote.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           Copyright 2001 The LyX Team.
+ * \author Angus Leeming
  *
- *======================================================
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef INSETNOTE_H
 #define INSETNOTE_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 #include "insetcollapsable.h"
 
 /** The PostIt note inset
-  
+
 */
 class InsetNote : public InsetCollapsable {
 public:
-       /// 
-       InsetNote();
-       /// constructor with initial contents
-       InsetNote(Buffer const *, string const & contents, bool collapsed);
        ///
-       virtual string const editMessage() const;
+       InsetNote(BufferParams const &);
+       ///
+       InsetNote(InsetNote const &, bool same_id = false);
+       ///
+       Inset * clone(Buffer const &, bool same_id = false) const;
+       ///
+       string const editMessage() const;
+       ///
+       Inset::Code lyxCode() const { return Inset::NOTE_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; }
+       ///
+       int linuxdoc(Buffer const *, std::ostream &) const
+               { return 0; }
        ///
-       virtual int latex(Buffer const *, std::ostream &, bool, bool) const
+       int docbook(Buffer const *, std::ostream &, bool) const
                { return 0; }
+       ///
+       int ascii(Buffer const *, std::ostream &, int) const
+               { return 0; }
+       ///
+       void validate(LaTeXFeatures &) const {}
 private:
        /// used by the constructors
        void init();