]> git.lyx.org Git - lyx.git/blob - src/insets/InsetCommand.cpp
InsetTabular.cpp: fix #6585 also for wrapped floats - thanks Vincent
[lyx.git] / src / insets / InsetCommand.cpp
1 /**
2  * \file InsetCommand.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Angus Leeming
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 "InsetCommand.h"
15
16 #include "Buffer.h"
17 #include "BufferView.h"
18 #include "DispatchResult.h"
19 #include "FuncRequest.h"
20 #include "FuncStatus.h"
21 #include "Lexer.h"
22 #include "MetricsInfo.h"
23
24 #include "insets/InsetBox.h"
25 #include "insets/InsetBranch.h"
26 #include "insets/InsetCommand.h"
27 #include "insets/InsetERT.h"
28 #include "insets/InsetExternal.h"
29 #include "insets/InsetFloat.h"
30 #include "insets/InsetGraphics.h"
31 #include "insets/InsetInclude.h"
32 #include "insets/InsetLine.h"
33 #include "insets/InsetListings.h"
34 #include "insets/InsetNote.h"
35 #include "insets/InsetPhantom.h"
36 #include "insets/InsetSpace.h"
37 #include "insets/InsetTabular.h"
38 #include "insets/InsetVSpace.h"
39 #include "insets/InsetWrap.h"
40
41 #include "support/debug.h"
42 #include "support/gettext.h"
43
44 #include "frontends/Application.h"
45
46 #include <sstream>
47
48 using namespace std;
49
50
51 namespace lyx {
52
53 // FIXME Would it now be possible to use the InsetCode in 
54 // place of the mailer name and recover that information?
55 InsetCommand::InsetCommand(Buffer * buf, InsetCommandParams const & p)
56         : Inset(buf), p_(p)
57 {}
58
59
60 // The sole purpose of this copy constructor is to make sure
61 // that the mouse_hover_ map is not copied and remains empty.
62 InsetCommand::InsetCommand(InsetCommand const & rhs)
63         : Inset(rhs), p_(rhs.p_)
64 {}
65
66
67 InsetCommand::~InsetCommand()
68 {
69         if (p_.code() != NO_CODE)
70                 hideDialogs(insetName(p_.code()), this);
71
72         map<BufferView const *, bool>::iterator it = mouse_hover_.begin();
73         map<BufferView const *, bool>::iterator end = mouse_hover_.end();
74         for (; it != end; ++it)
75                 if (it->second)
76                         it->first->clearLastInset(this);
77 }
78
79
80 void InsetCommand::metrics(MetricsInfo & mi, Dimension & dim) const
81 {
82         button_.update(screenLabel(), editable() || hasSettings());
83         button_.metrics(mi, dim);
84 }
85
86
87 bool InsetCommand::setMouseHover(BufferView const * bv, bool mouse_hover)
88         const
89 {
90         mouse_hover_[bv] = mouse_hover;
91         return true;
92 }
93
94
95 void InsetCommand::draw(PainterInfo & pi, int x, int y) const
96 {
97         button_.setRenderState(mouse_hover_[pi.base.bv]);
98         button_.draw(pi, x, y);
99 }
100
101
102 void InsetCommand::setParam(std::string const & name, docstring const & value)
103 {
104         p_[name] = value;
105 }
106
107
108 docstring const & InsetCommand::getParam(std::string const & name) const
109 {
110         return p_[name];
111 }
112
113
114 void InsetCommand::setParams(InsetCommandParams const & p)
115 {
116         p_ = p;
117         initView();
118 }
119
120
121 int InsetCommand::latex(odocstream & os, OutputParams const & runparams_in) const
122 {
123         OutputParams runparams = runparams_in;
124         os << getCommand(runparams);
125         return 0;
126 }
127
128
129 int InsetCommand::plaintext(odocstream & os, OutputParams const &) const
130 {
131         docstring const str = "[" + buffer().B_("LaTeX Command: ")
132                 + from_utf8(getCmdName()) + "]";
133         os << str;
134         return str.size();
135 }
136
137
138 int InsetCommand::docbook(odocstream &, OutputParams const &) const
139 {
140         return 0;
141 }
142
143
144 void InsetCommand::doDispatch(Cursor & cur, FuncRequest & cmd)
145 {
146         switch (cmd.action()) {
147         case LFUN_INSET_MODIFY: {
148                 if (cmd.getArg(0) == "changetype") {
149                         p_.setCmdName(cmd.getArg(1));
150                         initView();
151                         break;
152                 }
153                 InsetCommandParams p(p_.code());
154                 InsetCommand::string2params(to_utf8(cmd.argument()), p);
155                 if (p.getCmdName().empty())
156                         cur.noScreenUpdate();
157                 else
158                         setParams(p);
159                 // FIXME We might also want to check here if this one is in the TOC.
160                 // But I think most of those are labeled.
161                 if (isLabeled())
162                         cur.forceBufferUpdate();
163                 break;
164         }
165
166         case LFUN_INSET_DIALOG_UPDATE: {
167                 string const name = to_utf8(cmd.argument());
168                 cur.bv().updateDialog(name, params2string(params()));
169                 break;
170         }
171
172         default:
173                 Inset::doDispatch(cur, cmd);
174                 break;
175         }
176
177 }
178
179
180 bool InsetCommand::getStatus(Cursor & cur, FuncRequest const & cmd,
181         FuncStatus & status) const
182 {
183         switch (cmd.action()) {
184         // suppress these
185         case LFUN_ERT_INSERT:
186                 status.setEnabled(false);
187                 return true;
188         
189         // we handle these
190         case LFUN_INSET_MODIFY:
191                 if (cmd.getArg(0) == "changetype") {
192                         string const newtype = cmd.getArg(1);
193                         status.setEnabled(p_.isCompatibleCommand(p_.code(), newtype));
194                         status.setOnOff(newtype == p_.getCmdName());
195                 } 
196                 status.setEnabled(true);
197                 return true;
198         
199         case LFUN_INSET_DIALOG_UPDATE:
200                 status.setEnabled(true);
201                 return true;
202         
203         default:
204                 return Inset::getStatus(cur, cmd, status);
205         }
206 }
207
208
209 docstring InsetCommand::contextMenu(BufferView const &, int, int) const
210 {
211         return from_ascii("context-") + from_ascii(insetName(p_.code()));
212 }
213
214
215 bool InsetCommand::showInsetDialog(BufferView * bv) const
216 {
217         if (p_.code() != NO_CODE)
218                 bv->showDialog(insetName(p_.code()), params2string(p_),
219                         const_cast<InsetCommand *>(this));
220         return true;
221 }
222
223
224 bool InsetCommand::string2params(string const & data,
225         InsetCommandParams & params)
226 {
227         params.clear();
228         if (data.empty())
229                 return false;
230         // This happens when inset-insert is called without argument except for the
231         // inset type; ex:
232         // "inset-insert toc"
233         string const name = insetName(params.code());
234         if (data == name)
235                 return true;
236         istringstream dstream(data);
237         Lexer lex;
238         lex.setStream(dstream);
239         lex.setContext("InsetCommand::string2params");
240         lex >> name.c_str(); // check for name
241         lex >> "CommandInset";
242         params.read(lex);
243         return true;
244 }
245
246
247 string InsetCommand::params2string(InsetCommandParams const & params)
248 {
249         ostringstream data;
250         data << insetName(params.code()) << ' ';
251         params.write(data);
252         data << "\\end_inset\n";
253         return data.str();
254 }
255
256
257 bool decodeInsetParam(string const & name, string & data,
258         Buffer const & buffer)
259 {
260         InsetCode const code = insetCode(name);
261         switch (code) {
262         case BIBITEM_CODE:
263         case BIBTEX_CODE:
264         case INDEX_CODE:
265         case LABEL_CODE:
266         case LINE_CODE:
267         case NOMENCL_CODE:
268         case NOMENCL_PRINT_CODE:
269         case REF_CODE:
270         case TOC_CODE:
271         case HYPERLINK_CODE: {
272                 InsetCommandParams p(code);
273                 data = InsetCommand::params2string(p);
274                 break;
275         }
276         case INCLUDE_CODE: {
277                 // data is the include type: one of "include",
278                 // "input", "verbatiminput" or "verbatiminput*"
279                 if (data.empty())
280                         // default type is requested
281                         data = "include";
282                 InsetCommandParams p(INCLUDE_CODE, data);
283                 data = InsetCommand::params2string(p);
284                 break;
285         }
286         case BOX_CODE: {
287                 // \c data == "Boxed" || "Frameless" etc
288                 InsetBoxParams p(data);
289                 data = InsetBox::params2string(p);
290                 break;
291         }
292         case BRANCH_CODE: {
293                 InsetBranchParams p;
294                 data = InsetBranch::params2string(p);
295                 break;
296         }
297         case CITE_CODE: {
298                 InsetCommandParams p(CITE_CODE);
299                 data = InsetCommand::params2string(p);
300                 break;
301         }
302         case ERT_CODE: {
303                 data = InsetERT::params2string(InsetCollapsable::Open);
304                 break;
305         }
306         case EXTERNAL_CODE: {
307                 InsetExternalParams p;
308                 data = InsetExternal::params2string(p, buffer);
309                 break;
310         }
311         case FLOAT_CODE:  {
312                 InsetFloatParams p;
313                 data = InsetFloat::params2string(p);
314                 break;
315         }
316         case LISTINGS_CODE: {
317                 InsetListingsParams p;
318                 data = InsetListings::params2string(p);
319                 break;
320         }
321         case GRAPHICS_CODE: {
322                 InsetGraphicsParams p;
323                 data = InsetGraphics::params2string(p, buffer);
324                 break;
325         }
326         case NOTE_CODE: {
327                 InsetNoteParams p;
328                 data = InsetNote::params2string(p);
329                 break;
330         }
331         case PHANTOM_CODE: {
332                 InsetPhantomParams p;
333                 data = InsetPhantom::params2string(p);
334                 break;
335         }
336         case SPACE_CODE: {
337                 InsetSpaceParams p;
338                 data = InsetSpace::params2string(p);
339                 break;
340         }
341         case VSPACE_CODE: {
342                 VSpace space;
343                 data = InsetVSpace::params2string(space);
344                 break;
345         }
346         case WRAP_CODE: {
347                 InsetWrapParams p;
348                 data = InsetWrap::params2string(p);
349                 break;
350         }
351         default:
352                 return false;
353         } // end switch(code)
354         return true;
355 }
356
357 } // namespace lyx