]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetmarginal.h
Don't remove cell selections after fontchange.
[lyx.git] / src / insets / insetmarginal.h
index d9698ff3c2855ac89b3d277bdaa5ce0df26c8870..10329a97127ffcede2b96d9332dcaa01a8f932df 100644 (file)
 #pragma interface
 #endif
 
-#include "insetcollapsable.h"
-
-class Painter;
+#include "insetfootlike.h"
 
 /** The marginal note inset
   
 */
-class InsetMarginal : public InsetCollapsable {
+class InsetMarginal : public InsetFootlike {
 public:
        ///
-       explicit
        InsetMarginal();
        ///
-       ~InsetMarginal() {}
-       ///
-       Inset * Clone() const;
-       ///
-       Inset::Code LyxCode() const { return Inset::MARGIN_CODE; }
-       ///
-       int Latex(Buffer const *, std::ostream &, bool fragile, bool fp) const;
+       InsetMarginal(InsetMarginal const &, bool same_id = false);
        ///
-       const char * EditMessage() const;
+       Inset * clone(Buffer const &, bool same_id = false) const;
        ///
-       bool InsertInset(BufferView *, Inset * inset);
+       Inset::Code lyxCode() const { return Inset::MARGIN_CODE; }
        ///
-       bool InsertInsetAllowed(Inset * inset) const;
+       int latex(Buffer const *, std::ostream &, bool fragile, bool fp) const;
        ///
-       LyXFont GetDrawFont(BufferView *, LyXParagraph * par, int pos) const;
+       string const editMessage() const;
 };
 
 #endif