]> git.lyx.org Git - lyx.git/blob - src/insets/insetcaption.C
* src/insets/insetexternal.C
[lyx.git] / src / insets / insetcaption.C
1 /**
2  * \file insetcaption.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Lars Gullik Bjønnes
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "insetcaption.h"
14 #include "insetfloat.h"
15 #include "insetwrap.h"
16
17 #include "buffer.h"
18 #include "bufferparams.h"
19 #include "counters.h"
20 #include "cursor.h"
21 #include "BufferView.h"
22 #include "Floating.h"
23 #include "FloatList.h"
24 #include "funcrequest.h"
25 #include "FuncStatus.h"
26 #include "gettext.h"
27 #include "LColor.h"
28 #include "metricsinfo.h"
29 #include "output_latex.h"
30 #include "outputparams.h"
31 #include "paragraph.h"
32 #include "paragraph_funcs.h"
33 #include "TocBackend.h"
34
35 #include "frontends/FontMetrics.h"
36 #include "frontends/Painter.h"
37
38 #include "support/lstrings.h"
39 #include "support/convert.h"
40
41 #include <sstream>
42
43
44 using std::auto_ptr;
45 using std::endl;
46 using std::string;
47 using std::ostream;
48
49
50 namespace lyx {
51
52 using support::bformat;
53
54 InsetCaption::InsetCaption(BufferParams const & bp)
55         : InsetText(bp), textclass_(bp.getLyXTextClass())
56 {
57         setAutoBreakRows(true);
58         setDrawFrame(true);
59         setFrameColor(LColor::captionframe);
60 }
61
62
63 void InsetCaption::write(Buffer const & buf, ostream & os) const
64 {
65         os << "Caption\n";
66         text_.write(buf, os);
67 }
68
69
70 void InsetCaption::read(Buffer const & buf, LyXLex & lex)
71 {
72 #if 0
73         // We will enably this check again when the compability
74         // code is removed from Buffer::Read (Lgb)
75         string const token = lex.GetString();
76         if (token != "Caption") {
77                 lyxerr << "InsetCaption::Read: consistency check failed."
78                        << endl;
79         }
80 #endif
81         InsetText::read(buf, lex);
82 }
83
84
85 docstring const InsetCaption::editMessage() const
86 {
87         return _("Opened Caption Inset");
88 }
89
90
91 void InsetCaption::cursorPos(BufferView const & bv,
92                 CursorSlice const & sl, bool boundary, int & x, int & y) const
93 {
94         InsetText::cursorPos(bv, sl, boundary, x, y);
95         x += labelwidth_;
96 }
97
98
99 void InsetCaption::setCustomLabel(docstring const & label)
100 {
101         if (!support::isAscii(label) || label.empty())
102                 // This must be a user defined layout. We cannot translate
103                 // this, since gettext accepts only ascii keys.
104                 custom_label_ = label;
105         else
106                 custom_label_ = _(to_ascii(label));
107 }
108
109
110 void InsetCaption::addToToc(TocList & toclist, Buffer const & buf) const
111 {
112         if (type_.empty())
113                 return;
114
115         ParConstIterator pit = par_const_iterator_begin(*this);
116
117         Toc & toc = toclist[type_];
118         docstring const str = convert<docstring>(counter_)
119                 + ". " + pit->asString(buf, false);
120         toc.push_back(TocItem(pit, 0, str));
121 }
122
123
124 bool InsetCaption::metrics(MetricsInfo & mi, Dimension & dim) const
125 {
126         mi.base.textwidth -= 2 * TEXT_TO_INSET_OFFSET;
127         if (type_.empty())
128                 full_label_ = _("Senseless!!! ");
129         else {
130                 docstring const number = convert<docstring>(counter_);
131                 docstring label = custom_label_.empty()? _(type_): custom_label_;
132                 full_label_ = bformat(from_ascii("%1$s %2$s:"), label, number);
133         }
134         labelwidth_ = theFontMetrics(mi.base.font).width(full_label_);
135         dim.wid = labelwidth_;
136         Dimension textdim;
137         InsetText::metrics(mi, textdim);
138         // Correct for button width, and re-fit
139         mi.base.textwidth -= dim.wid;
140         InsetText::metrics(mi, textdim);
141         dim.des = std::max(dim.des - textdim.asc + dim.asc, textdim.des);
142         dim.asc = textdim.asc;
143         dim.wid += textdim.wid;
144         dim.asc += TEXT_TO_INSET_OFFSET;
145         dim.des += TEXT_TO_INSET_OFFSET;
146         dim.wid += 2 * TEXT_TO_INSET_OFFSET;
147         mi.base.textwidth += 2 * TEXT_TO_INSET_OFFSET;
148         bool const changed = dim_ != dim;
149         dim_ = dim;
150         return changed;
151 }
152
153
154 void InsetCaption::draw(PainterInfo & pi, int x, int y) const
155 {
156         // We must draw the label, we should get the label string
157         // from the enclosing float inset.
158         // The question is: Who should draw the label, the caption inset,
159         // the text inset or the paragraph?
160         // We should also draw the float number (Lgb)
161
162         // Answer: the text inset (in buffer_funcs.C: setCaption).
163
164         labelwidth_ = pi.pain.text(x, y, full_label_, pi.base.font);
165         InsetText::draw(pi, x + labelwidth_, y);
166         setPosCache(pi, x, y);
167 }
168
169
170 void InsetCaption::drawSelection(PainterInfo & pi, int x, int y) const
171 {
172         InsetText::drawSelection(pi, x + labelwidth_ , y);
173 }
174
175
176 void InsetCaption::edit(LCursor & cur, bool left)
177 {
178         cur.push(*this);
179         InsetText::edit(cur, left);
180 }
181
182
183 InsetBase * InsetCaption::editXY(LCursor & cur, int x, int y)
184 {
185         cur.push(*this);
186         return InsetText::editXY(cur, x, y);
187 }
188
189
190 bool InsetCaption::insetAllowed(InsetBase::Code code) const
191 {
192         switch (code) {
193         case FLOAT_CODE:
194         case TABULAR_CODE:
195         case WRAP_CODE:
196         case CAPTION_CODE:
197         case PAGEBREAK_CODE:
198                 return false;
199         default:
200                 return InsetText::insetAllowed(code);
201         }
202 }
203
204
205 bool InsetCaption::getStatus(LCursor & cur, FuncRequest const & cmd,
206         FuncStatus & status) const
207 {
208         switch (cmd.action) {
209
210         case LFUN_BREAK_PARAGRAPH:
211         case LFUN_BREAK_PARAGRAPH_KEEP_LAYOUT:
212         case LFUN_BREAK_PARAGRAPH_SKIP:
213                 status.enabled(false);
214                 return true;
215
216         case LFUN_OPTIONAL_INSERT:
217                 status.enabled(numberOfOptArgs(cur.paragraph()) == 0);
218                 return true;
219
220         default:
221                 return InsetText::getStatus(cur, cmd, status);
222         }
223 }
224
225
226 int InsetCaption::latex(Buffer const & buf, odocstream & os,
227                         OutputParams const & runparams_in) const
228 {
229         // This is a bit too simplistic to take advantage of
230         // caption options we must add more later. (Lgb)
231         // This code is currently only able to handle the simple
232         // \caption{...}, later we will make it take advantage
233         // of the one of the caption packages. (Lgb)
234         OutputParams runparams = runparams_in;
235         // FIXME: actually, it is moving only when there is no
236         // optional argument.
237         runparams.moving_arg = true;
238         os << "\\caption";
239         int l = latexOptArgInsets(buf, paragraphs()[0], os, runparams, 1);
240         os << '{';
241         l += InsetText::latex(buf, os, runparams);
242         os << "}\n";
243         return l + 1;
244 }
245
246
247 int InsetCaption::plaintext(Buffer const & buf, odocstream & os,
248                 OutputParams const & runparams) const
249 {
250         os << full_label_ << ' ';
251         return InsetText::plaintext(buf, os, runparams);
252 }
253
254
255 int InsetCaption::docbook(Buffer const & buf, odocstream & os,
256                           OutputParams const & runparams) const
257 {
258         int ret;
259         os << "<title>";
260         ret = InsetText::docbook(buf, os, runparams);
261         os << "</title>\n";
262         return ret;
263 }
264
265
266 auto_ptr<InsetBase> InsetCaption::doClone() const
267 {
268         return auto_ptr<InsetBase>(new InsetCaption(*this));
269 }
270
271
272 } // namespace lyx