]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetCaption.h
#7379 avoid the wrap spell check question when buffer is empty
[lyx.git] / src / insets / InsetCaption.h
index 3686ec21951e569893e19a4cd83aa7779697bd95..03c100f3a4d770ad8d07243cfe270e706e10c67e 100644 (file)
@@ -24,10 +24,12 @@ public:
        InsetCaption(Buffer *);
        ///
        std::string const & type() const { return type_; }
+       ///
+       docstring name() const;
        /// return the mandatory argument (LaTeX format) only
-       int getArgument(odocstream & os, OutputParams const &) const;
+       void getArgument(otexstream & os, OutputParams const &) const;
        /// return the optional argument(s) only
-       int getOptArg(odocstream & os, OutputParams const &) const;
+       void getOptArg(otexstream & os, OutputParams const &) const;
        /// return the caption text
        int getCaptionAsPlaintext(odocstream & os, OutputParams const &) const;
        /// return the caption text as HTML
@@ -50,6 +52,8 @@ private:
        bool descendable(BufferView const &) const { return true; }
        ///
        void metrics(MetricsInfo & mi, Dimension & dim) const;
+       ///     
+       void drawBackground(PainterInfo & pi, int x, int y) const;
        ///
        void draw(PainterInfo & pi, int x, int y) const;
        ///
@@ -61,9 +65,9 @@ private:
        ///
        bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const;
        // Update the counters of this inset and of its contents
-       void updateLabels(ParIterator const &, bool);
+       void updateBuffer(ParIterator const &, UpdateType);
        ///
-       int latex(odocstream & os, OutputParams const &) const;
+       void latex(otexstream & os, OutputParams const &) const;
        ///
        int plaintext(odocstream & os, OutputParams const & runparams) const;
        ///
@@ -73,7 +77,7 @@ private:
        ///
        void setCustomLabel(docstring const & label);
        ///
-       void addToToc(DocIterator const &);
+       void addToToc(DocIterator const &) const;
        /// 
        virtual bool forcePlainLayout(idx_type = 0) const { return true; }
        /// Captions don't accept alignment, spacing, etc.