]> git.lyx.org Git - lyx.git/blob - src/insets/insetminipage.C
Rename ascii to plaintext and LatexRunParams to OutputParams.
[lyx.git] / src / insets / insetminipage.C
1 /**
2  * \file insetminipage.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Jürgen Vigna
7  * \author Lars Gullik Bjønnes
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "insetminipage.h"
15
16 #include "BufferView.h"
17 #include "debug.h"
18 #include "dispatchresult.h"
19 #include "funcrequest.h"
20 #include "gettext.h"
21 #include "LColor.h"
22 #include "lyxlex.h"
23 #include "metricsinfo.h"
24 #include "paragraph.h"
25
26 #include "support/std_sstream.h"
27
28
29 using std::string;
30 using std::endl;
31 using std::auto_ptr;
32 using std::istringstream;
33 using std::ostream;
34 using std::ostringstream;
35
36
37 // Some information about Minipages in LaTeX:
38 // A minipage is a complete miniversion of a page and can contain
39 // its own footnotes, paragraphs, and array, tabular, and multicols
40 // environments. However it cannot contain floats or \marginpar's,
41 // but it can appear inside floats.
42 //
43 // The minipage environment is defined like this:
44 //
45 // \begin{minipage}[pos][height][inner-pos]{width} <text> \end{minipage}
46 //
47 // Where:
48 //     pos [opt] = is the vertical placement of the box with respect
49 //                 to the text baseline, [c], [t] and [b].
50 //     height [opt] = the height of the box
51 //     inner-pos [opt] = the position of the text within the box.
52 //                 It can be t, c, b or s, if unspecified the value
53 //                 of pos is used.
54 //     width = the width of the box
55 //
56 // In LyX we should try to support all these parameters, settable in a
57 // pop-up dialog.
58 // In this pop-up diallog it should also be possible to set all margin
59 // values that is usable in the minipage.
60 // With regard to different formats (like DocBook) I guess a minipage
61 // can be used there also. Perhaps not in the latex way, but we do not
62 // have to output "" for minipages.
63 // (Lgb)
64
65 InsetMinipage::InsetMinipage(BufferParams const & bp)
66         : InsetCollapsable(bp)
67 {
68         setLabel(_("minipage"));
69         LyXFont font(LyXFont::ALL_SANE);
70         font.decSize();
71         font.decSize();
72         font.setColor(LColor::collapsable);
73         setLabelFont(font);
74 #if 0
75         setAutoCollapse(false);
76 #endif
77         inset.setFrameColor(LColor::blue);
78         setInsetName("Minipage");
79 }
80
81
82 InsetMinipage::InsetMinipage(InsetMinipage const & in)
83         : InsetCollapsable(in), params_(in.params_)
84 {}
85
86
87 auto_ptr<InsetBase> InsetMinipage::clone() const
88 {
89         return auto_ptr<InsetBase>(new InsetMinipage(*this));
90 }
91
92
93 InsetMinipage::~InsetMinipage()
94 {
95         InsetMinipageMailer(*this).hideDialog();
96 }
97
98
99 DispatchResult
100 InsetMinipage::priv_dispatch(FuncRequest const & cmd,
101                              idx_type & idx, pos_type & pos)
102 {
103         switch (cmd.action) {
104         case LFUN_INSET_MODIFY: {
105                 InsetMinipage::Params params;
106                 InsetMinipageMailer::string2params(cmd.argument, params);
107
108                 params_.pos   = params.pos;
109                 params_.width = params.width;
110
111                 /* FIXME: I refuse to believe we have to live
112                  * with ugliness like this ... */
113                 inset.getLyXText(cmd.view())->fullRebreak();
114                 cmd.view()->updateInset(this);
115                 return DispatchResult(true, true);
116         }
117
118         case LFUN_INSET_DIALOG_UPDATE:
119                 InsetMinipageMailer(*this).updateDialog(cmd.view());
120                 return DispatchResult(true, true);
121
122         default:
123                 return InsetCollapsable::priv_dispatch(cmd, idx, pos);
124         }
125 }
126
127
128 void InsetMinipage::Params::write(ostream & os) const
129 {
130         os << "Minipage" << '\n'
131            << "position " << pos << '\n'
132            << "inner_position " << inner_pos << '\n'
133            << "height \"" << height.asString() << "\"\n"
134            << "width \"" << width.asString() << "\"\n";
135 }
136
137
138 void InsetMinipage::Params::read(LyXLex & lex)
139 {
140         if (lex.isOK()) {
141                 lex.next();
142                 string const token = lex.getString();
143                 if (token == "position") {
144                         lex.next();
145                         pos = static_cast<Position>(lex.getInteger());
146                 } else {
147                         lyxerr << "InsetMinipage::Read: Missing 'position'-tag!"
148                                    << endl;
149                         // take countermeasures
150                         lex.pushToken(token);
151                 }
152         }
153         if (lex.isOK()) {
154                 lex.next();
155                 string const token = lex.getString();
156                 if (token == "inner_position") {
157                         lex.next();
158                         inner_pos = static_cast<InnerPosition>(lex.getInteger());
159                 } else {
160                         lyxerr << "InsetMinipage::Read: Missing 'inner_position'-tag!"
161                                    << endl;
162                         // take countermeasures
163                         lex.pushToken(token);
164                 }
165         }
166         if (lex.isOK()) {
167                 lex.next();
168                 string const token = lex.getString();
169                 if (token == "height") {
170                         lex.next();
171                         height = LyXLength(lex.getString());
172                 } else {
173                         lyxerr << "InsetMinipage::Read: Missing 'height'-tag!"
174                                    << endl;
175                         // take countermeasures
176                         lex.pushToken(token);
177                 }
178         }
179         if (lex.isOK()) {
180                 lex.next();
181                 string const token = lex.getString();
182                 if (token == "width") {
183                         lex.next();
184                         width = LyXLength(lex.getString());
185                 } else {
186                         lyxerr << "InsetMinipage::Read: Missing 'width'-tag!"
187                                    << endl;
188                         // take countermeasures
189                         lex.pushToken(token);
190                 }
191         }
192 }
193
194
195 void InsetMinipage::write(Buffer const & buf, ostream & os) const
196 {
197         params_.write(os);
198         InsetCollapsable::write(buf, os);
199 }
200
201
202 void InsetMinipage::read(Buffer const & buf, LyXLex & lex)
203 {
204         params_.read(lex);
205         InsetCollapsable::read(buf, lex);
206 }
207
208
209 void InsetMinipage::metrics(MetricsInfo & mi, Dimension & dim) const
210 {
211         if (isOpen()) {
212                 Dimension d;
213                 MetricsInfo m = mi;
214                 m.base.textwidth = params_.width.inPixels(mi.base.textwidth);
215                 InsetCollapsable::metrics(m, d);
216                 switch (params_.pos) {
217                 case top:
218                         dim.asc = d.asc;
219                         dim.des = d.des;
220                         break;
221                 case center:
222                         dim.asc = d.ascent() + d.descent() / 2;
223                         dim.des = dim.asc;
224                         break;
225                 case bottom:
226                         dim.asc = d.des;
227                         dim.des = d.asc;
228                         break;
229                 }
230                 dim.wid = d.wid;
231         } else
232                 dimension_collapsed(dim);
233
234         dim_ = dim;
235 }
236
237
238 string const InsetMinipage::editMessage() const
239 {
240         return _("Opened Minipage Inset");
241 }
242
243
244 int InsetMinipage::latex(Buffer const & buf, ostream & os,
245                          OutputParams const & runparams) const
246 {
247         string s_pos;
248         switch (params_.pos) {
249         case top:
250                 s_pos += 't';
251                 break;
252         case center:
253                 s_pos += 'c';
254                 break;
255         case bottom:
256                 s_pos += 'b';
257                 break;
258         }
259         os << "\\begin{minipage}[" << s_pos << "]{"
260            << params_.width.asLatexString() << "}%\n";
261
262         int i = inset.latex(buf, os, runparams);
263
264         os << "\\end{minipage}%\n";
265         return i + 2;
266 }
267
268
269 bool InsetMinipage::insetAllowed(InsetOld::Code code) const
270 {
271         if (code == InsetOld::FLOAT_CODE || code == InsetOld::MARGIN_CODE)
272                 return false;
273
274         return InsetCollapsable::insetAllowed(code);
275 }
276
277
278 bool InsetMinipage::showInsetDialog(BufferView * bv) const
279 {
280         if (!inset.showInsetDialog(bv)) {
281                 InsetMinipage * tmp = const_cast<InsetMinipage *>(this);
282                 InsetMinipageMailer mailer(*tmp);
283                 mailer.showDialog(bv);
284         }
285
286         return true;
287 }
288
289
290 int InsetMinipage::latexTextWidth(BufferView * bv) const
291 {
292         return params_.width.inPixels(InsetCollapsable::latexTextWidth(bv));
293 }
294
295
296 InsetMinipage::Params::Params()
297         : pos(center),
298           inner_pos(inner_center),
299           width(100, LyXLength::PCW)
300 {}
301
302
303 string const InsetMinipageMailer:: name_("minipage");
304
305 InsetMinipageMailer::InsetMinipageMailer(InsetMinipage & inset)
306         : inset_(inset)
307 {}
308
309
310 string const InsetMinipageMailer::inset2string(Buffer const &) const
311 {
312         return params2string(inset_.params());
313 }
314
315
316 void InsetMinipageMailer::string2params(string const & in,
317                                         InsetMinipage::Params & params)
318 {
319         params = InsetMinipage::Params();
320
321         if (in.empty())
322                 return;
323
324         istringstream data(in);
325         LyXLex lex(0, 0);
326         lex.setStream(data);
327
328         if (lex.isOK()) {
329                 lex.next();
330                 string const token = lex.getString();
331                 if (token != "minipage")
332                         return;
333         }
334
335         // This is part of the inset proper that is usually swallowed
336         // by Buffer::readInset
337         if (lex.isOK()) {
338                 lex.next();
339                 string const token = lex.getString();
340                 if (token != "Minipage")
341                         return;
342         }
343
344         if (lex.isOK()) {
345                 params.read(lex);
346         }
347 }
348
349
350 string const
351 InsetMinipageMailer::params2string(InsetMinipage::Params const & params)
352 {
353         ostringstream data;
354         data << name_ << ' ';
355         params.write(data);
356         return data.str();
357 }