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