]> 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 217b1f20252a1772ab9b98e9d6f6c47494c52a4a..e0a3fd31d075dfe07f4c4313b21a62fbe4fef6e5 100644 (file)
@@ -4,7 +4,7 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author Lars Gullik Bjønnes
+ * \author Lars Gullik Bjønnes
  *
  * Full author contact details are available in file CREDITS.
  */
@@ -12,7 +12,7 @@
 #ifndef INSETFOOTLIKE_H
 #define INSETFOOTLIKE_H
 
-#include "InsetCollapsable.h"
+#include "InsetCollapsible.h"
 
 
 namespace lyx {
@@ -20,26 +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(BufferParams const &);
+       explicit InsetFootlike(Buffer *);
        ///
-       InsetFootlike(InsetFootlike const &);
+       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 isMacroScope() const { return true; }
-       ///
-       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; }
 };