]> git.lyx.org Git - lyx.git/blob - src/insets/insetminipage.C
You won't believe I SOLVED the smart insettext-update, finally!
[lyx.git] / src / insets / insetminipage.C
1 /* This file is part of
2  * ======================================================
3  * 
4  *           LyX, The Document Processor
5  *       
6  *          Copyright 1998 The LyX Team.
7  *
8  *======================================================*/
9
10 #include <config.h>
11
12 #ifdef __GNUG__
13 #pragma implementation
14 #endif
15
16 #include "insetminipage.h"
17 #include "gettext.h"
18 #include "lyxfont.h"
19 #include "BufferView.h"
20 #include "Painter.h"
21 #include "lyxtext.h"
22 #include "insets/insettext.h"
23 #include "support/LOstream.h"
24 #include "debug.h"
25
26 using std::ostream;
27 using std::endl;
28
29
30 // Some information about Minipages in LaTeX:
31 // A minipage is a complete miniversion of a page and can contain
32 // its own footnotes, paragraphs, and array, tabular, and multicols
33 // environments. However it cannot contain floats or \marginpar's,
34 // but it can appear inside floats.
35 //
36 // The minipage environment is defined like this:
37 //
38 // \begin{minipage}[pos][height][inner-pos]{width} <text> \end{minipage}
39 //
40 // Where:
41 //     pos [opt] = is the vertical placement of the box with respect
42 //                 to the text baseline, [c], [t] and [b].
43 //     height [opt] = the height of the box
44 //     inner-pos [opt] = the position of the text within the box.
45 //                 It can be t, c, b or s, if unspecified the value
46 //                 of pos is used.
47 //     width = the width of the box
48 //
49 // In LyX we should try to support all these parameters, settable in a
50 // pop-up dialog.
51 // In this pop-up diallog it should also be possible to set all margin
52 // values that is usable in the minipage.
53 // With regard to different formats (like DocBook) I guess a minipage
54 // can be used there also. Perhaps not in the latex way, but we do not
55 // have to output "" for minipages.
56 // (Lgb)
57
58 InsetMinipage::InsetMinipage()
59         : InsetCollapsable()
60 {
61         setLabel(_("minipage"));
62         LyXFont font(LyXFont::ALL_SANE);
63         font.decSize();
64         font.decSize();
65         font.setColor(LColor::footnote);
66         setLabelFont(font);
67         setAutoCollapse(false);
68         setInsetName("Minipage");
69 }
70
71
72 void InsetMinipage::Write(Buffer const * buf, ostream & os) const 
73 {
74         os << getInsetName() << "\n";
75         InsetCollapsable::Write(buf, os);
76 }
77
78
79 Inset * InsetMinipage::Clone() const
80 {
81         InsetMinipage * result = new InsetMinipage;
82         result->inset->init(inset);
83         
84         result->collapsed = collapsed;
85         return result;
86 }
87
88
89 char const * InsetMinipage::EditMessage() const
90 {
91         return _("Opened Minipage Inset");
92 }
93
94
95 int InsetMinipage::Latex(Buffer const * buf,
96                          ostream & os, bool fragile, bool fp) const
97 {
98         os << "\\begin{minipage}{\\columnwidth}%\n";
99         
100         int i = inset->Latex(buf, os, fragile, fp);
101         os << "\\end{minipage}%\n";
102         
103         return i + 2;
104 }
105
106
107 bool InsetMinipage::InsertInsetAllowed(Inset * in) const
108 {
109         if ((in->LyxCode() == Inset::FLOAT_CODE) ||
110             (in->LyxCode() == Inset::MARGIN_CODE)) {
111                 return false;
112         }
113         return true;
114 }
115
116
117 #if 0
118 LyXFont InsetMinipage::GetDrawFont(BufferView * bv,
119                                    LyXParagraph * p, int pos) const
120 {
121         LyXFont fn = getLyXText(bv)->GetFont(bv->buffer(), p, pos);
122         fn.decSize().decSize();
123         return fn;
124 }
125 #endif