]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetCaption.h
tex2lyx/text.cpp: fix typos
[lyx.git] / src / insets / InsetCaption.h
index 2be6c68fbbe9a05f473bafa27df1f03a018c4829..dc28873fb109acd464d1789f6f7688a0f5ed2186 100644 (file)
@@ -24,10 +24,12 @@ public:
        InsetCaption(Buffer *);
        ///
        std::string const & type() const { return type_; }
+       ///
+       docstring layoutName() 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
@@ -36,8 +38,6 @@ private:
        ///
        void write(std::ostream & os) const;
        ///
-       void read(Lexer & lex);
-       ///
        DisplayType display() const { return AlignCenter; }
        ///
        bool neverIndent() const { return true; }
@@ -50,6 +50,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 +63,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 &);
+       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 +75,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.