]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetcaption.h
* BufferParams:
[lyx.git] / src / insets / insetcaption.h
index 310b0e0fd1958cb33ee45ed44e01253dd09615af..a3a307644574622d0e9bea78fa2ff86bd12804d9 100644 (file)
@@ -12,7 +12,6 @@
 #ifndef INSETCAPTION_H
 #define INSETCAPTION_H
 
-
 #include "insettext.h"
 #include "lyxtextclass.h"
 
@@ -26,6 +25,8 @@ public:
        ///
        InsetCaption(BufferParams const &);
        ///
+       virtual ~InsetCaption() {}
+       ///
        void write(Buffer const & buf, std::ostream & os) const;
        ///
        void read(Buffer const & buf, LyXLex & lex);
@@ -47,31 +48,52 @@ public:
        ///
        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, odocstream & 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;
+                     OutputParams const & runparams) const;
        ///
        int docbook(Buffer const & buf, odocstream & os,
-                   OutputParams const & runparams) const;
+                   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;
+
 private:
        ///
-       void setLabel(LCursor & cur) const;
+       void computeFullLabel() const;
        ///
        virtual std::auto_ptr<InsetBase> doClone() const;
        ///
-       mutable docstring label;
+       mutable docstring full_label_;
        ///
        mutable int labelwidth_;
        ///
-       mutable int counter_;
+       std::string type_;
+       ///
+       docstring custom_label_;
+       ///
+       int counter_;
        ///
        LyXTextClass const & textclass_;
 };