]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetFoot.h
Move isMultiCell() to Cursor, and use it.
[lyx.git] / src / insets / InsetFoot.h
index 6514d133630c24ff1f6b4a689e45854932774754..64e6249711b37544549f017b6cb20cc83003a75e 100644 (file)
@@ -21,10 +21,12 @@ namespace lyx {
 /** The footnote inset
 
 */
-class InsetFoot : public InsetFootlike {
+class InsetFoot : public InsetFootlike
+{
 public:
        ///
        InsetFoot(Buffer const &);
+private:
        ///
        InsetCode lyxCode() const { return FOOT_CODE; }
        ///
@@ -40,12 +42,13 @@ public:
        /// Update the counters of this inset and of its contents
        void updateLabels(ParIterator const &);
        ///
-       void addToToc(ParConstIterator const &) const;
-
-protected:
-       InsetFoot(InsetFoot const &);
-private:
+       void addToToc(DocIterator const &);
+       ///
+       docstring toolTip(BufferView const & bv, int x, int y) const;
+       ///
        Inset * clone() const { return new InsetFoot(*this); }
+       ///
+       docstring custom_label_;
 };