]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetcaption.h
* src/LyXAction.C: mark goto-clear-bookmark as working without buffer
[lyx.git] / src / insets / insetcaption.h
index 1b4feaee446918d3f269e26c527207b931fbac53..310b0e0fd1958cb33ee45ed44e01253dd09615af 100644 (file)
@@ -6,7 +6,7 @@
  *
  * \author Lars Gullik Bjønnes
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef INSETCAPTION_H
 
 
 #include "insettext.h"
+#include "lyxtextclass.h"
+
+
+namespace lyx {
 
 /** A caption inset
 */
@@ -22,37 +26,54 @@ public:
        ///
        InsetCaption(BufferParams const &);
        ///
-       void write(Buffer const * buf, std::ostream & os) const;
+       void write(Buffer const & buf, std::ostream & os) const;
+       ///
+       void read(Buffer const & buf, LyXLex & lex);
+       ///
+       virtual bool display() const;
+       ///
+       virtual bool neverIndent(Buffer const &) const { return true; }
+       ///
+       virtual InsetBase::Code lyxCode() const;
        ///
-       void read(Buffer const * buf, LyXLex & lex);
+       virtual docstring const editMessage() const;
        ///
-       virtual
-       bool display() const;
+       virtual void cursorPos(BufferView const & bv,
+               CursorSlice const & sl, bool boundary, int & x, int & y) const;
        ///
-       virtual
-       bool needFullRow() const;
+       bool descendable() const { return true; }
        ///
-       virtual
-       Inset::Code lyxCode() const;
+       virtual bool metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
-       virtual
-       string const editMessage() const;
+       virtual void draw(PainterInfo & pi, int x, int y) const;
        ///
-       virtual
-       void draw(BufferView * bv, LyXFont const & f,
-                         int baseline, float & x) const;
+       virtual void edit(LCursor & cur, bool left);
        ///
-       virtual
-       int latex(Buffer const * buf, std::ostream & os,
-                         bool fragile, bool free_spc) const;
+       virtual InsetBase * editXY(LCursor & cur, int x, int y);
        ///
-       virtual
-       int ascii(Buffer const * buf, std::ostream & os, int linelen) const;
+       virtual int latex(Buffer const & buf, odocstream & os,
+                         OutputParams const &) const;
        ///
-       virtual
-       int docbook(Buffer const * buf, std::ostream & os, bool mixcont) const;
-protected:
+       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; }
 private:
+       ///
+       void setLabel(LCursor & cur) const;
+       ///
+       virtual std::auto_ptr<InsetBase> doClone() const;
+       ///
+       mutable docstring label;
+       ///
+       mutable int labelwidth_;
+       ///
+       mutable int counter_;
+       ///
+       LyXTextClass const & textclass_;
 };
 
 
@@ -64,15 +85,12 @@ bool InsetCaption::display() const
 
 
 inline
-bool InsetCaption::needFullRow() const
+InsetBase::Code InsetCaption::lyxCode() const
 {
-       return true;
+       return CAPTION_CODE;
 }
 
 
-inline
-Inset::Code InsetCaption::lyxCode() const
-{
-       return CAPTION_CODE;
-}
+} // namespace lyx
+
 #endif