]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetcaption.h
* BufferParams:
[lyx.git] / src / insets / insetcaption.h
index 8fd7a28972d85ab1178856588f680fd25e2d0aaf..a3a307644574622d0e9bea78fa2ff86bd12804d9 100644 (file)
 #ifndef INSETCAPTION_H
 #define INSETCAPTION_H
 
-
 #include "insettext.h"
 #include "lyxtextclass.h"
 
+
+namespace lyx {
+
 /** A caption inset
 */
 class InsetCaption : public InsetText {
@@ -23,45 +25,76 @@ 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 std::string const editMessage() const;
+       virtual docstring const editMessage() const;
+       ///
+       virtual void cursorPos(BufferView const & bv,
+               CursorSlice const & sl, bool boundary, int & x, int & y) const;
        ///
-       virtual void cursorPos 
-               (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;
+       ///
+       virtual bool getStatus(LCursor & cur, FuncRequest const & cmd, FuncStatus &) 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;
        ///
-       int plaintext(Buffer const & buf, std::ostream & os,
-                 OutputParams const & runparams) const;
+       void setCount(int c) { counter_ = c; }
        ///
-       int docbook(Buffer const & buf, std::ostream & os,
-                   OutputParams const & runparams) const;
+       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;
+
 private:
+       ///
+       void computeFullLabel() const;
        ///
        virtual std::auto_ptr<InsetBase> doClone() const;
        ///
-       mutable std::string label;
+       mutable docstring full_label_;
        ///
        mutable int labelwidth_;
        ///
+       std::string type_;
+       ///
+       docstring custom_label_;
+       ///
+       int counter_;
+       ///
        LyXTextClass const & textclass_;
 };
 
@@ -79,4 +112,7 @@ InsetBase::Code InsetCaption::lyxCode() const
        return CAPTION_CODE;
 }
 
+
+} // namespace lyx
+
 #endif