]> git.lyx.org Git - lyx.git/blob - src/insets/InsetWrap.cpp
Fix layout bug. Pasting text into a cell tried to set Standard layout, because
[lyx.git] / src / insets / InsetWrap.cpp
1 /**
2  * \file InsetWrap.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Dekel Tsur
7  * \author Uwe Stöhr
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "InsetWrap.h"
15 #include "InsetCaption.h"
16
17 #include "Buffer.h"
18 #include "BufferParams.h"
19 #include "BufferView.h"
20 #include "Counters.h"
21 #include "Cursor.h"
22 #include "DispatchResult.h"
23 #include "Floating.h"
24 #include "FloatList.h"
25 #include "FuncRequest.h"
26 #include "FuncStatus.h"
27 #include "InsetList.h"
28 #include "LaTeXFeatures.h"
29 #include "Lexer.h"
30 #include "TextClass.h"
31 #include "TocBackend.h"
32
33 #include "support/convert.h"
34 #include "support/debug.h"
35 #include "support/docstream.h"
36 #include "support/gettext.h"
37
38 #include "frontends/Application.h"
39
40 using namespace std;
41
42
43 namespace lyx {
44
45 InsetWrap::InsetWrap(Buffer const & buf, string const & type)
46         : InsetCollapsable(buf)
47 {
48         setLabel(_("wrap: ") + floatName(type, buf.params()));
49         params_.type = type;
50         params_.lines = 0;
51         params_.placement = "o";
52         params_.overhang = Length(0, Length::PCW);
53         params_.width = Length(50, Length::PCW);
54 }
55
56
57 InsetWrap::~InsetWrap()
58 {
59         hideDialogs("wrap", this);
60 }
61
62
63 docstring InsetWrap::name() const
64 {
65         return from_utf8(params_.type);
66 }
67
68
69 docstring InsetWrap::toolTip(BufferView const & bv, int x, int y) const
70 {
71         OutputParams rp(&buffer().params().encoding());
72         docstring default_tip = InsetCollapsable::toolTip(bv, x, y);
73         docstring caption_tip = getCaptionText(rp);
74         if (!isOpen() && !caption_tip.empty())
75                 return caption_tip + '\n' + default_tip;
76         return default_tip;
77 }
78
79
80 void InsetWrap::doDispatch(Cursor & cur, FuncRequest & cmd)
81 {
82         switch (cmd.action) {
83         case LFUN_INSET_MODIFY: {
84                 InsetWrapParams params;
85                 InsetWrap::string2params(to_utf8(cmd.argument()), params);
86                 params_.lines = params.lines;
87                 params_.placement = params.placement;
88                 params_.overhang = params.overhang;
89                 params_.width = params.width;
90                 break;
91         }
92
93         case LFUN_INSET_DIALOG_UPDATE:
94                 cur.bv().updateDialog("wrap", params2string(params()));
95                 break;
96
97         default:
98                 InsetCollapsable::doDispatch(cur, cmd);
99                 break;
100         }
101 }
102
103
104 bool InsetWrap::getStatus(Cursor & cur, FuncRequest const & cmd,
105                 FuncStatus & flag) const
106 {
107         switch (cmd.action) {
108         case LFUN_INSET_MODIFY:
109         case LFUN_INSET_DIALOG_UPDATE:
110                 flag.setEnabled(true);
111                 return true;
112
113         default:
114                 return InsetCollapsable::getStatus(cur, cmd, flag);
115         }
116 }
117
118
119 void InsetWrap::updateLabels(ParIterator const & it)
120 {
121         setLabel(_("wrap: ") + floatName(params_.type, buffer().params()));
122         Counters & cnts = buffer().params().documentClass().counters();
123         string const saveflt = cnts.current_float();
124
125         // Tell to captions what the current float is
126         cnts.current_float(params().type);
127
128         InsetCollapsable::updateLabels(it);
129
130         // reset afterwards
131         cnts.current_float(saveflt);
132 }
133
134
135 void InsetWrapParams::write(ostream & os) const
136 {
137         os << "Wrap " << type << '\n';
138         os << "lines " << lines << '\n';
139         os << "placement " << placement << '\n';
140         os << "overhang " << overhang.asString() << '\n';
141         os << "width \"" << width.asString() << "\"\n";
142 }
143
144
145 void InsetWrapParams::read(Lexer & lex)
146 {
147         lex.setContext("InsetWrapParams::read");
148         lex >> "lines" >> lines;
149         lex >> "placement" >> placement;
150         lex >> "overhang" >> overhang;
151         lex >> "width" >> width;
152 }
153
154
155 void InsetWrap::write(ostream & os) const
156 {
157         params_.write(os);
158         InsetCollapsable::write(os);
159 }
160
161
162 void InsetWrap::read(Lexer & lex)
163 {
164         params_.read(lex);
165         InsetCollapsable::read(lex);
166 }
167
168
169 void InsetWrap::validate(LaTeXFeatures & features) const
170 {
171         features.require("wrapfig");
172         InsetCollapsable::validate(features);
173 }
174
175
176 docstring InsetWrap::editMessage() const
177 {
178         return _("Opened Wrap Inset");
179 }
180
181
182 int InsetWrap::latex(odocstream & os, OutputParams const & runparams) const
183 {
184         os << "\\begin{wrap" << from_ascii(params_.type) << '}';
185         // no optional argument when lines are zero
186         if (params_.lines != 0)
187                 os << '[' << params_.lines << ']';
188         os << '{' << from_ascii(params_.placement) << '}';
189         Length over(params_.overhang);
190         // no optional argument when the value is zero
191         if (over.value() != 0)
192                 os << '[' << from_ascii(params_.overhang.asLatexString()) << ']';
193         os << '{' << from_ascii(params_.width.asLatexString()) << "}%\n";
194         int const i = InsetText::latex(os, runparams);
195         os << "\\end{wrap" << from_ascii(params_.type) << "}%\n";
196         return i + 2;
197 }
198
199
200 int InsetWrap::plaintext(odocstream & os, OutputParams const & runparams) const
201 {
202         os << '[' << buffer().B_("wrap") << ' '
203                 << floatName(params_.type, buffer().params()) << ":\n";
204         InsetText::plaintext(os, runparams);
205         os << "\n]";
206
207         return PLAINTEXT_NEWLINE + 1; // one char on a separate line
208 }
209
210
211 int InsetWrap::docbook(odocstream & os, OutputParams const & runparams) const
212 {
213         // FIXME UNICODE
214         os << '<' << from_ascii(params_.type) << '>';
215         int const i = InsetText::docbook(os, runparams);
216         os << "</" << from_ascii(params_.type) << '>';
217         return i;
218 }
219
220
221 bool InsetWrap::insetAllowed(InsetCode code) const
222 {
223         switch(code) {
224         case WRAP_CODE:
225         case FOOT_CODE:
226         case MARGIN_CODE:
227                 return false;
228         default:
229                 return InsetCollapsable::insetAllowed(code);
230         }
231 }
232
233
234 bool InsetWrap::showInsetDialog(BufferView * bv) const
235 {
236         if (!InsetText::showInsetDialog(bv))
237                 bv->showDialog("wrap", params2string(params()),
238                         const_cast<InsetWrap *>(this));
239         return true;
240 }
241
242
243 docstring InsetWrap::getCaptionText(OutputParams const & runparams) const
244 {
245         if (paragraphs().empty())
246                 return docstring();
247
248         ParagraphList::const_iterator pit = paragraphs().begin();
249         for (; pit != paragraphs().end(); ++pit) {
250                 InsetList::const_iterator it = pit->insetList().begin();
251                 for (; it != pit->insetList().end(); ++it) {
252                         Inset & inset = *it->inset;
253                         if (inset.lyxCode() == CAPTION_CODE) {
254                                 odocstringstream ods;
255                                 InsetCaption * ins =
256                                         static_cast<InsetCaption *>(it->inset);
257                                 ins->getCaptionText(ods, runparams);
258                                 return ods.str();
259                         }
260                 }
261         }
262         return docstring();
263 }
264
265
266 void InsetWrap::string2params(string const & in, InsetWrapParams & params)
267 {
268         params = InsetWrapParams();
269         istringstream data(in);
270         Lexer lex;
271         lex.setStream(data);
272         lex.setContext("InsetWrap::string2params");
273         lex >> "wrap";
274         lex >> "Wrap";  // Part of the inset proper, swallowed by Text::readInset
275         lex >> params.type; // We have to read the type here!
276         params.read(lex);
277 }
278
279
280 string InsetWrap::params2string(InsetWrapParams const & params)
281 {
282         ostringstream data;
283         data << "wrap" << ' ';
284         params.write(data);
285         return data.str();
286 }
287
288
289 } // namespace lyx