]> git.lyx.org Git - features.git/blobdiff - src/insets/InsetFootlike.h
Completion: handle undo in insets' insertCompletion methods
[features.git] / src / insets / InsetFootlike.h
index 75d9acf213c2892b71bdde45da70b88f5ea0ff27..e0a3fd31d075dfe07f4c4313b21a62fbe4fef6e5 100644 (file)
@@ -12,7 +12,7 @@
 #ifndef INSETFOOTLIKE_H
 #define INSETFOOTLIKE_H
 
-#include "InsetCollapsable.h"
+#include "InsetCollapsible.h"
 
 
 namespace lyx {
@@ -20,25 +20,21 @@ namespace lyx {
 // To have this class is probably a bit overkill... (Lgb)
 
 // The footnote inset
-class InsetFootlike : public InsetCollapsable {
+class InsetFootlike : public InsetCollapsible {
 public:
        ///
-       InsetFootlike(Buffer const &);
+       explicit InsetFootlike(Buffer *);
        ///
-       bool hasSettings() const { return false; }
+       bool hasSettings() const override { return false; }
 private:
        ///
-       void metrics(MetricsInfo &, Dimension &) const;
+       void write(std::ostream & os) const override;
        ///
-       void draw(PainterInfo & pi, int x, int y) const;
-       ///
-       void write(std::ostream & os) const;
-       ///
-       bool insetAllowed(InsetCode) const;
-       /** returns true if, when outputing LaTeX, font changes should
+       bool insetAllowed(InsetCode) const override;
+       /** returns false if, when outputting LaTeX, font changes should
            be closed before generating this inset. This is needed for
            insets that may contain several paragraphs */
-       bool noFontChange() const { return true; }
+       bool inheritFont() const override { return false; }
 };