]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetFoot.cpp
Fix text frame drawing.
[lyx.git] / src / insets / InsetFoot.cpp
index 5bd2a9d044b9b3646b90028dce776f41d46418f5..11d4b6e144aa5a9e613cbe6501482779be5e0b80 100644 (file)
  */
 
 #include <config.h>
+#include "debug.h"
 
 #include "InsetFoot.h"
 
 #include "Buffer.h"
+#include "BufferParams.h"
+#include "Counters.h"
 #include "gettext.h"
 // the following is needed just to get the layout of the enclosing
 // paragraph. This seems a bit too much to me (JMarc)
 #include "OutputParams.h"
+#include "ParIterator.h"
 
 #include "support/std_ostream.h"
-
+#include "support/lstrings.h"
 
 namespace lyx {
 
@@ -41,9 +45,9 @@ InsetFoot::InsetFoot(InsetFoot const & in)
 {}
 
 
-auto_ptr<Inset> InsetFoot::doClone() const
+Inset * InsetFoot::clone() const
 {
-       return auto_ptr<Inset>(new InsetFoot(*this));
+       return new InsetFoot(*this);
 }
 
 
@@ -53,6 +57,24 @@ docstring const InsetFoot::editMessage() const
 }
 
 
+void InsetFoot::updateLabels(Buffer const & buf, ParIterator const & it)
+{
+       TextClass const & tclass = buf.params().getTextClass();
+       Counters & cnts = tclass.counters();
+       docstring const & foot = from_ascii("footnote");
+       Paragraph const & outer =  it.paragraph();
+       if (!outer.layout()->intitle && cnts.hasCounter(foot)) {
+               cnts.step(foot);
+               //FIXME: the counter should format itself.
+               setLabel(support::bformat(from_ascii("%1$s %2$s"), 
+                                         getLayout(buf.params()).labelstring, 
+                                         cnts.theCounter(foot)));
+       
+       }
+       InsetCollapsable::updateLabels(buf, it);
+}
+
+
 int InsetFoot::latex(Buffer const & buf, odocstream & os,
                     OutputParams const & runparams_in) const
 {