]> git.lyx.org Git - lyx.git/blob - src/insets/InsetCaption.cpp
f741289801e583f9a413af9aa51dfc119e7949b1
[lyx.git] / src / insets / InsetCaption.cpp
1 /**
2  * \file InsetCaption.cpp
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 "BufferView.h"
20 #include "Counters.h"
21 #include "Cursor.h"
22 #include "Dimension.h"
23 #include "Floating.h"
24 #include "FloatList.h"
25 #include "FuncRequest.h"
26 #include "FuncStatus.h"
27 #include "support/gettext.h"
28 #include "InsetList.h"
29 #include "MetricsInfo.h"
30 #include "output_latex.h"
31 #include "OutputParams.h"
32 #include "Paragraph.h"
33 #include "paragraph_funcs.h"
34 #include "TextClass.h"
35 #include "TocBackend.h"
36
37 #include "frontends/FontMetrics.h"
38 #include "frontends/Painter.h"
39
40 #include "support/lstrings.h"
41
42 #include <sstream>
43
44 using namespace std;
45 using namespace lyx::support;
46
47 namespace lyx {
48
49
50 InsetCaption::InsetCaption(InsetCaption const & ic)
51         : InsetText(ic), textclass_(ic.textclass_)
52 {
53         setAutoBreakRows(true);
54         setDrawFrame(true);
55         setFrameColor(Color_captionframe);
56 }
57
58 InsetCaption::InsetCaption(BufferParams const & bp)
59         : InsetText(bp), textclass_(bp.getTextClass())
60 {
61         setAutoBreakRows(true);
62         setDrawFrame(true);
63         setFrameColor(Color_captionframe);
64 }
65
66
67 void InsetCaption::write(Buffer const & buf, ostream & os) const
68 {
69         os << "Caption\n";
70         text_.write(buf, os);
71 }
72
73
74 void InsetCaption::read(Buffer const & buf, Lexer & lex)
75 {
76 #if 0
77         // We will enably this check again when the compability
78         // code is removed from Buffer::Read (Lgb)
79         string const token = lex.GetString();
80         if (token != "Caption") {
81                 lyxerr << "InsetCaption::Read: consistency check failed."
82                        << endl;
83         }
84 #endif
85         InsetText::read(buf, lex);
86 }
87
88
89 docstring const InsetCaption::editMessage() const
90 {
91         return _("Opened Caption Inset");
92 }
93
94
95 void InsetCaption::cursorPos(BufferView const & bv,
96                 CursorSlice const & sl, bool boundary, int & x, int & y) const
97 {
98         InsetText::cursorPos(bv, sl, boundary, x, y);
99         x += labelwidth_;
100 }
101
102
103 void InsetCaption::setCustomLabel(docstring const & label)
104 {
105         if (!isAscii(label) || label.empty())
106                 // This must be a user defined layout. We cannot translate
107                 // this, since gettext accepts only ascii keys.
108                 custom_label_ = label;
109         else
110                 custom_label_ = _(to_ascii(label));
111 }
112
113
114 void InsetCaption::addToToc(TocList & toclist, Buffer const & buf, ParConstIterator const &) const
115 {
116         if (type_.empty())
117                 return;
118
119         ParConstIterator pit = par_const_iterator_begin(*this);
120
121         Toc & toc = toclist[type_];
122         docstring const str = full_label_ + ". " + pit->asString(buf, false);
123         toc.push_back(TocItem(pit, 0, str));
124 }
125
126
127 void InsetCaption::metrics(MetricsInfo & mi, Dimension & dim) const
128 {
129         FontInfo tmpfont = mi.base.font;
130         mi.base.font = mi.base.bv->buffer().params().getFont().fontInfo();
131         labelwidth_ = theFontMetrics(mi.base.font).width(full_label_);
132         // add some space to separate the label from the inset text
133         labelwidth_ += 2 * TEXT_TO_INSET_OFFSET;
134         dim.wid = labelwidth_;
135         Dimension textdim;
136         // Correct for button and label width
137         mi.base.textwidth -= dim.wid;
138         InsetText::metrics(mi, textdim);
139         mi.base.font = tmpfont;
140         mi.base.textwidth += dim.wid;
141         dim.des = max(dim.des - textdim.asc + dim.asc, textdim.des);
142         dim.asc = textdim.asc;
143         dim.wid += textdim.wid;
144 }
145
146
147 void InsetCaption::draw(PainterInfo & pi, int x, int y) const
148 {
149         // We must draw the label, we should get the label string
150         // from the enclosing float inset.
151         // The question is: Who should draw the label, the caption inset,
152         // the text inset or the paragraph?
153         // We should also draw the float number (Lgb)
154
155         // Answer: the text inset (in buffer_funcs.cpp: setCaption).
156
157         FontInfo tmpfont = pi.base.font;
158         pi.base.font = pi.base.bv->buffer().params().getFont().fontInfo();
159         pi.pain.text(x, y, full_label_, pi.base.font);
160         InsetText::draw(pi, x + labelwidth_, y);
161         pi.base.font = tmpfont;
162 }
163
164
165 void InsetCaption::edit(Cursor & cur, bool left)
166 {
167         cur.push(*this);
168         InsetText::edit(cur, left);
169 }
170
171
172 Inset * InsetCaption::editXY(Cursor & cur, int x, int y)
173 {
174         cur.push(*this);
175         return InsetText::editXY(cur, x, y);
176 }
177
178
179 bool InsetCaption::insetAllowed(InsetCode code) const
180 {
181         switch (code) {
182         case FLOAT_CODE:
183         case TABULAR_CODE:
184         case WRAP_CODE:
185         case CAPTION_CODE:
186         case NEWPAGE_CODE:
187                 return false;
188         default:
189                 return InsetText::insetAllowed(code);
190         }
191 }
192
193
194 bool InsetCaption::getStatus(Cursor & cur, FuncRequest const & cmd,
195         FuncStatus & status) const
196 {
197         switch (cmd.action) {
198
199         case LFUN_BREAK_PARAGRAPH:
200         case LFUN_BREAK_PARAGRAPH_SKIP:
201                 status.enabled(false);
202                 return true;
203
204         case LFUN_OPTIONAL_INSERT:
205                 status.enabled(cur.paragraph().insetList().find(OPTARG_CODE) == -1);
206                 return true;
207
208         default:
209                 return InsetText::getStatus(cur, cmd, status);
210         }
211 }
212
213
214 int InsetCaption::latex(Buffer const & buf, odocstream & os,
215                         OutputParams const & runparams_in) const
216 {
217         // This is a bit too simplistic to take advantage of
218         // caption options we must add more later. (Lgb)
219         // This code is currently only able to handle the simple
220         // \caption{...}, later we will make it take advantage
221         // of the one of the caption packages. (Lgb)
222         OutputParams runparams = runparams_in;
223         // FIXME: actually, it is moving only when there is no
224         // optional argument.
225         runparams.moving_arg = true;
226         os << "\\caption";
227         int l = latexOptArgInsets(buf, paragraphs()[0], os, runparams, 1);
228         os << '{';
229         l += InsetText::latex(buf, os, runparams);
230         os << "}\n";
231         runparams_in.encoding = runparams.encoding;
232         return l + 1;
233 }
234
235
236 int InsetCaption::plaintext(Buffer const & buf, odocstream & os,
237                             OutputParams const & runparams) const
238 {
239         os << '[' << full_label_ << "\n";
240         InsetText::plaintext(buf, os, runparams);
241         os << "\n]";
242
243         return PLAINTEXT_NEWLINE + 1; // one char on a separate line
244 }
245
246
247 int InsetCaption::docbook(Buffer const & buf, odocstream & os,
248                           OutputParams const & runparams) const
249 {
250         int ret;
251         os << "<title>";
252         ret = InsetText::docbook(buf, os, runparams);
253         os << "</title>\n";
254         return ret;
255 }
256
257
258 int InsetCaption::getArgument(Buffer const & buf, odocstream & os,
259                         OutputParams const & runparams) const
260 {
261         return InsetText::latex(buf, os, runparams);
262 }
263
264
265 int InsetCaption::getOptArg(Buffer const & buf, odocstream & os,
266                         OutputParams const & runparams) const
267 {
268         return latexOptArgInsets(buf, paragraphs()[0], os, runparams, 1);
269 }
270
271
272 void InsetCaption::updateLabels(Buffer const & buf, ParIterator const & it)
273 {
274         TextClass const & tclass = buf.params().getTextClass();
275         Counters & cnts = tclass.counters();
276         string const & type = cnts.current_float();
277         if (type.empty())
278                 full_label_ = buf.B_("Senseless!!! ");
279         else {
280                 // FIXME: life would be _much_ simpler if listings was
281                 // listed in Floating.
282                 docstring name;
283                 if (type == "listing")
284                         name = buf.B_("Listing");
285                 else
286                         name = buf.B_(tclass.floats().getType(type).name());
287                 if (cnts.hasCounter(from_utf8(type))) {
288                         cnts.step(from_utf8(type));
289                         full_label_ = bformat(from_ascii("%1$s %2$s:"), 
290                                               name, 
291                                               cnts.theCounter(from_utf8(type)));
292                 } else
293                         full_label_ = bformat(from_ascii("%1$s #:"), name);     
294         }
295
296         // Do the real work now.
297         InsetText::updateLabels(buf, it);
298 }
299
300
301 Inset * InsetCaption::clone() const
302 {
303         return new InsetCaption(*this);
304 }
305
306
307 } // namespace lyx