]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetcaption.h
* In the process of fixing the math background color bug, this commit transfer backgr...
[lyx.git] / src / insets / insetcaption.h
index 3b57d832c80f986b1746dbe4de34effd3842bcc8..45adb74e8789a3c5d4ea64d5428f5b46be3774c9 100644 (file)
 #ifndef INSETCAPTION_H
 #define INSETCAPTION_H
 
-
 #include "insettext.h"
 #include "lyxtextclass.h"
 
+
+namespace lyx {
+
 /** A caption inset
 */
 class InsetCaption : public InsetText {
@@ -23,52 +25,77 @@ public:
        ///
        InsetCaption(BufferParams const &);
        ///
+       virtual ~InsetCaption() {}
+       ///
        void write(Buffer const & buf, std::ostream & os) const;
        ///
        void read(Buffer const & buf, LyXLex & lex);
        ///
        virtual bool display() const;
        ///
-       virtual bool neverIndent() const { return true; }
+       virtual bool neverIndent(Buffer const &) const { return true; }
        ///
        virtual InsetBase::Code lyxCode() const;
        ///
-       virtual lyx::docstring const editMessage() const;
+       virtual docstring const editMessage() const;
        ///
-       virtual void cursorPos
-               (CursorSlice const & sl, bool boundary, int & x, int & y) const;
+       virtual void cursorPos(BufferView const & bv,
+               CursorSlice const & sl, bool boundary, int & x, int & y) const;
        ///
        bool descendable() const { return true; }
        ///
-       virtual void metrics(MetricsInfo & mi, Dimension & dim) const;
+       virtual bool metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
        virtual void draw(PainterInfo & pi, int x, int y) const;
        ///
+       void drawSelection(PainterInfo & pi, int x, int y) const;
+       ///
        virtual void edit(LCursor & cur, bool left);
        ///
        virtual InsetBase * editXY(LCursor & cur, int x, int y);
        ///
-       virtual int latex(Buffer const & buf, std::ostream & os,
-                         OutputParams const &) const;
+       bool insetAllowed(InsetBase::Code code) const;
        ///
-       int plaintext(Buffer const & buf, lyx::odocstream & os,
-                 OutputParams const & runparams) const;
+       virtual bool getStatus(LCursor & cur, FuncRequest const & cmd, FuncStatus &) const;
        ///
-       int docbook(Buffer const & buf, std::ostream & os,
-                   OutputParams const & runparams) const;
+       virtual bool wide() const { return false; }
+       ///
+       int latex(Buffer const & buf, odocstream & os,
+                 OutputParams const &) const;
+       ///
+       int plaintext(Buffer const & buf, odocstream & os,
+                     OutputParams const & runparams) const;
+       ///
+       int docbook(Buffer const & buf, odocstream & os,
+                   OutputParams const & runparams) const;
        ///
        void setCount(int c) { counter_ = c; }
+       ///
+       std::string const & type() const { return type_; }
+       ///
+       void setType(std::string const & type) { type_ = type; }
+       ///
+       void setCustomLabel(docstring const & label);
+       ///
+       void addToToc(TocList &, Buffer const &) const;
+       /// Captions don't accept alignment, spacing, etc.
+       bool forceDefaultParagraphs(idx_type) const { return true; }
+
 private:
        ///
-       void setLabel(LCursor & cur) const;
+       void computeFullLabel() const;
        ///
        virtual std::auto_ptr<InsetBase> doClone() const;
        ///
-       mutable std::string label;
+       mutable docstring full_label_;
        ///
        mutable int labelwidth_;
        ///
-       mutable int counter_;
+       std::string type_;
+       ///
+       docstring custom_label_;
+       ///
+       int counter_;
        ///
        LyXTextClass const & textclass_;
 };
@@ -87,4 +114,7 @@ InsetBase::Code InsetCaption::lyxCode() const
        return CAPTION_CODE;
 }
 
+
+} // namespace lyx
+
 #endif