]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetCaptionable.h
Improve handling of top and bottom margin
[lyx.git] / src / insets / InsetCaptionable.h
index 005c371ea2b99448cad45ee437b636ff0f3a3260..3190c9a01c6441cfb69a90d6fb37608acdcbc4ce 100644 (file)
 #ifndef INSET_CAPTIONABLE_H
 #define INSET_CAPTIONABLE_H
 
-#include "InsetCollapsable.h"
+#include "InsetCollapsible.h"
 
 
 namespace lyx {
 
-class InsetCaptionable : public InsetCollapsable
+class InsetCaptionable : public InsetCollapsible
 {
 public:
        InsetCaptionable(Buffer * buffer, std::string const & type = "senseless")
-               : InsetCollapsable(buffer), caption_type_(type) {}
+               : InsetCollapsible(buffer), caption_type_(type) {}
        ///
        std::string const & captionType() const { return caption_type_; }
        ///
@@ -38,6 +38,8 @@ protected:
        ///
        docstring getCaptionHTML(OutputParams const &) const;
        ///
+       docstring getCaptionDocBook(OutputParams const &) const;
+       ///
        virtual void setCaptionType(std::string const & type);
        /// are our captions subcaptions?
        virtual bool hasSubCaptions(ParIterator const &) const { return false; }
@@ -45,7 +47,7 @@ protected:
        void addToToc(DocIterator const & di, bool output_active,
                                  UpdateType utype, TocBackend & backend) const;
        /// Update the counters of this inset and of its contents
-       void updateBuffer(ParIterator const &, UpdateType);
+       void updateBuffer(ParIterator const &, UpdateType, bool const deleted = false);
        ///
        bool insetAllowed(InsetCode) const;
 private: