]> git.lyx.org Git - lyx.git/blob - src/insets/InsetCaption.h
Change string
[lyx.git] / src / insets / InsetCaption.h
1 // -*- C++ -*-
2 /**
3  * \file InsetCaption.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Lars Gullik Bjønnes
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef INSETCAPTION_H
13 #define INSETCAPTION_H
14
15 #include "InsetText.h"
16
17 namespace lyx {
18
19 /** A caption inset
20 */
21 class InsetCaption : public InsetText {
22 public:
23         ///
24         InsetCaption(Buffer const &);
25         ///
26         std::string const & type() const { return type_; }
27         /// return the mandatory argument (LaTeX format) only
28         int getArgument(odocstream & os, OutputParams const &) const;
29         /// return the optional argument(s) only
30         int getOptArg(odocstream & os, OutputParams const &) const;
31 private:
32         ///
33         void write(std::ostream & os) const;
34         ///
35         void read(Lexer & lex);
36         ///
37         DisplayType display() const { return AlignCenter; }
38         ///
39         bool neverIndent() const { return true; }
40         ///
41         InsetCode lyxCode() const { return CAPTION_CODE; }
42         ///
43         docstring editMessage() const;
44         ///
45         void cursorPos(BufferView const & bv,
46                 CursorSlice const & sl, bool boundary, int & x, int & y) const;
47         ///
48         bool descendable() const { return true; }
49         ///
50         void metrics(MetricsInfo & mi, Dimension & dim) const;
51         ///
52         void draw(PainterInfo & pi, int x, int y) const;
53         ///
54         void edit(Cursor & cur, bool front, EntryDirection entry_from);
55         ///
56         Inset * editXY(Cursor & cur, int x, int y);
57         ///
58         bool insetAllowed(InsetCode code) const;
59         ///
60         bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const;
61         // Update the counters of this inset and of its contents
62         void updateLabels(ParIterator const &);
63         ///
64         int latex(odocstream & os, OutputParams const &) const;
65         ///
66         int plaintext(odocstream & os, OutputParams const & runparams) const;
67         ///
68         int docbook(odocstream & os, OutputParams const & runparams) const;
69         ///
70         void setCustomLabel(docstring const & label);
71         ///
72         void addToToc(ParConstIterator const &) const;
73         /// 
74         virtual bool forceEmptyLayout(idx_type = 0) const { return true; }
75         /// Captions don't accept alignment, spacing, etc.
76         virtual bool allowParagraphCustomization(idx_type = 0) const { return false; }
77         ///
78         Inset * clone() const { return new InsetCaption(*this); }
79
80         ///
81         mutable docstring full_label_;
82         ///
83         mutable int labelwidth_;
84         ///
85         std::string type_;
86         ///
87         bool in_subfloat_;
88         ///
89         docstring custom_label_;
90 };
91
92
93 } // namespace lyx
94
95 #endif