]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfootlike.h
Final touch 'inset display()'; fix 'is a bit silly' bug
[lyx.git] / src / insets / insetfootlike.h
index d0a47a01070af09269b99235dd655540a01fefdc..c6489f53d399b392d87e7c1b3578451f2cefde47 100644 (file)
@@ -1,43 +1,37 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
+/**
+ * \file insetfootlike.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
+ * \author Lars Gullik Bjønnes
  *
- *           Copyright 1998 The LyX Team.
- *
- *======================================================
+ * Full author contact details are available in file CREDITS.
  */
-// The pristine updatable inset: Text
-
 
 #ifndef INSETFOOTLIKE_H
 #define INSETFOOTLIKE_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
-
 #include "insetcollapsable.h"
 
 // To have this class is probably a bit overkill... (Lgb)
 
-/** The footnote inset
-
-*/
+// The footnote inset
 class InsetFootlike : public InsetCollapsable {
 public:
        ///
        InsetFootlike(BufferParams const &);
        ///
-       InsetFootlike(InsetFootlike const &, bool same_id = false);
+       InsetFootlike(InsetFootlike const &);
+       ///
+       void metrics(MetricsInfo &, Dimension &) const;
        ///
-       void write(Buffer const * buf, std::ostream & os) const;
+       void write(Buffer const & buf, std::ostream & os) const;
        ///
-       bool insetAllowed(Inset::Code) const;
+       bool insetAllowed(InsetOld::Code) const;
        /** returns true if, when outputing LaTeX, font changes should
-            be closed before generating this inset. This is needed for
-            insets that may contain several paragraphs */
+           be closed before generating this inset. This is needed for
+           insets that may contain several paragraphs */
        bool noFontChange() const { return true; }
 };