]> git.lyx.org Git - lyx.git/blob - src/insets/insetcaption.C
small fix to changeset 17143
[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         // add some space to separate the label from the inset text
136         labelwidth_ += 2 * TEXT_TO_INSET_OFFSET;
137         dim.wid = labelwidth_;
138         Dimension textdim;
139         InsetText::metrics(mi, textdim);
140         // Correct for button width, and re-fit
141         mi.base.textwidth -= dim.wid;
142         InsetText::metrics(mi, textdim);
143         dim.des = std::max(dim.des - textdim.asc + dim.asc, textdim.des);
144         dim.asc = textdim.asc;
145         dim.wid += textdim.wid;
146         dim.asc += TEXT_TO_INSET_OFFSET;
147         dim.des += TEXT_TO_INSET_OFFSET;
148         dim.wid += TEXT_TO_INSET_OFFSET / 2;
149         mi.base.textwidth += 2 * TEXT_TO_INSET_OFFSET;
150         bool const changed = dim_ != dim;
151         dim_ = dim;
152         return changed;
153 }
154
155
156 void InsetCaption::draw(PainterInfo & pi, int x, int y) const
157 {
158         // We must draw the label, we should get the label string
159         // from the enclosing float inset.
160         // The question is: Who should draw the label, the caption inset,
161         // the text inset or the paragraph?
162         // We should also draw the float number (Lgb)
163
164         // Answer: the text inset (in buffer_funcs.C: setCaption).
165
166         labelwidth_ = pi.pain.text(x, y, full_label_, pi.base.font);
167         // add some space to separate the label from the inset text
168         labelwidth_ += 2 * TEXT_TO_INSET_OFFSET;
169         InsetText::draw(pi, x + labelwidth_, y);
170         setPosCache(pi, x, y);
171 }
172
173
174 void InsetCaption::drawSelection(PainterInfo & pi, int x, int y) const
175 {
176         InsetText::drawSelection(pi, x + labelwidth_, y);
177 }
178
179
180 void InsetCaption::edit(LCursor & cur, bool left)
181 {
182         cur.push(*this);
183         InsetText::edit(cur, left);
184 }
185
186
187 InsetBase * InsetCaption::editXY(LCursor & cur, int x, int y)
188 {
189         cur.push(*this);
190         return InsetText::editXY(cur, x, y);
191 }
192
193
194 bool InsetCaption::insetAllowed(InsetBase::Code code) const
195 {
196         switch (code) {
197         case FLOAT_CODE:
198         case TABULAR_CODE:
199         case WRAP_CODE:
200         case CAPTION_CODE:
201         case PAGEBREAK_CODE:
202                 return false;
203         default:
204                 return InsetText::insetAllowed(code);
205         }
206 }
207
208
209 bool InsetCaption::getStatus(LCursor & cur, FuncRequest const & cmd,
210         FuncStatus & status) const
211 {
212         switch (cmd.action) {
213
214         case LFUN_BREAK_PARAGRAPH:
215         case LFUN_BREAK_PARAGRAPH_KEEP_LAYOUT:
216         case LFUN_BREAK_PARAGRAPH_SKIP:
217                 status.enabled(false);
218                 return true;
219
220         case LFUN_OPTIONAL_INSERT:
221                 status.enabled(numberOfOptArgs(cur.paragraph()) == 0);
222                 return true;
223
224         default:
225                 return InsetText::getStatus(cur, cmd, status);
226         }
227 }
228
229
230 int InsetCaption::latex(Buffer const & buf, odocstream & os,
231                         OutputParams const & runparams_in) const
232 {
233         // This is a bit too simplistic to take advantage of
234         // caption options we must add more later. (Lgb)
235         // This code is currently only able to handle the simple
236         // \caption{...}, later we will make it take advantage
237         // of the one of the caption packages. (Lgb)
238         OutputParams runparams = runparams_in;
239         // FIXME: actually, it is moving only when there is no
240         // optional argument.
241         runparams.moving_arg = true;
242         os << "\\caption";
243         int l = latexOptArgInsets(buf, paragraphs()[0], os, runparams, 1);
244         os << '{';
245         l += InsetText::latex(buf, os, runparams);
246         os << "}\n";
247         return l + 1;
248 }
249
250
251 int InsetCaption::plaintext(Buffer const & buf, odocstream & os,
252                 OutputParams const & runparams) const
253 {
254         os << full_label_ << ' ';
255         return InsetText::plaintext(buf, os, runparams);
256 }
257
258
259 int InsetCaption::docbook(Buffer const & buf, odocstream & os,
260                           OutputParams const & runparams) const
261 {
262         int ret;
263         os << "<title>";
264         ret = InsetText::docbook(buf, os, runparams);
265         os << "</title>\n";
266         return ret;
267 }
268
269
270 auto_ptr<InsetBase> InsetCaption::doClone() const
271 {
272         return auto_ptr<InsetBase>(new InsetCaption(*this));
273 }
274
275
276 } // namespace lyx