]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetFoot.cpp
Fix text frame drawing.
[lyx.git] / src / insets / InsetFoot.cpp
index c9c091ddeb490bb12776e0bcc4675c0e016f1f71..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 {
 
@@ -32,20 +36,18 @@ using std::ostream;
 InsetFoot::InsetFoot(BufferParams const & bp)
        : InsetFootlike(bp)
 {
-       setLabel(_("foot"));
+       setLayout(bp);
 }
 
 
 InsetFoot::InsetFoot(InsetFoot const & in)
        : InsetFootlike(in)
-{
-       setLabel(_("foot"));
-}
+{}
 
 
-auto_ptr<Inset> InsetFoot::doClone() const
+Inset * InsetFoot::clone() const
 {
-       return auto_ptr<Inset>(new InsetFoot(*this));
+       return new InsetFoot(*this);
 }
 
 
@@ -55,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
 {