]> git.lyx.org Git - lyx.git/blob - src/insets/InsetCommand.cpp
Fix bug #6315: counters in insets that don't produce output have ghost values.
[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 "Cursor.h"
19 #include "DispatchResult.h"
20 #include "FuncRequest.h"
21 #include "FuncStatus.h"
22 #include "Lexer.h"
23 #include "MetricsInfo.h"
24
25 #include "insets/InsetBox.h"
26 #include "insets/InsetBranch.h"
27 #include "insets/InsetCommand.h"
28 #include "insets/InsetERT.h"
29 #include "insets/InsetExternal.h"
30 #include "insets/InsetFloat.h"
31 #include "insets/InsetGraphics.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(string const & name, docstring const & value)
103 {
104         p_[name] = value;
105 }
106
107
108 docstring const & InsetCommand::getParam(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                         cur.recordUndo();
150                         p_.setCmdName(cmd.getArg(1));
151                         cur.forceBufferUpdate();
152                         initView();
153                         break;
154                 }
155                 InsetCommandParams p(p_.code());
156                 InsetCommand::string2params(to_utf8(cmd.argument()), p);
157                 if (p.getCmdName().empty())
158                         cur.noScreenUpdate();
159                 else
160                         setParams(p);
161                 // FIXME We might also want to check here if this one is in the TOC.
162                 // But I think most of those are labeled.
163                 if (isLabeled())
164                         cur.forceBufferUpdate();
165                 break;
166         }
167
168         case LFUN_INSET_DIALOG_UPDATE: {
169                 string const name = to_utf8(cmd.argument());
170                 cur.bv().updateDialog(name, params2string(params()));
171                 break;
172         }
173
174         default:
175                 Inset::doDispatch(cur, cmd);
176                 break;
177         }
178
179 }
180
181
182 bool InsetCommand::getStatus(Cursor & cur, FuncRequest const & cmd,
183         FuncStatus & status) const
184 {
185         switch (cmd.action()) {
186         // suppress these
187         case LFUN_ERT_INSERT:
188                 status.setEnabled(false);
189                 return true;
190         
191         // we handle these
192         case LFUN_INSET_MODIFY:
193                 if (cmd.getArg(0) == "changetype") {
194                         string const newtype = cmd.getArg(1);
195                         status.setEnabled(p_.isCompatibleCommand(p_.code(), newtype));
196                         status.setOnOff(newtype == p_.getCmdName());
197                 } 
198                 status.setEnabled(true);
199                 return true;
200         
201         case LFUN_INSET_DIALOG_UPDATE:
202                 status.setEnabled(true);
203                 return true;
204         
205         default:
206                 return Inset::getStatus(cur, cmd, status);
207         }
208 }
209
210
211 docstring InsetCommand::contextMenu(BufferView const &, int, int) const
212 {
213         return from_ascii("context-") + from_ascii(insetName(p_.code()));
214 }
215
216
217 bool InsetCommand::showInsetDialog(BufferView * bv) const
218 {
219         if (p_.code() != NO_CODE)
220                 bv->showDialog(insetName(p_.code()), params2string(p_),
221                         const_cast<InsetCommand *>(this));
222         return true;
223 }
224
225
226 bool InsetCommand::string2params(string const & data,
227         InsetCommandParams & params)
228 {
229         params.clear();
230         if (data.empty())
231                 return false;
232         // This happens when inset-insert is called without argument except for the
233         // inset type; ex:
234         // "inset-insert toc"
235         string const name = insetName(params.code());
236         if (data == name)
237                 return true;
238         istringstream dstream(data);
239         Lexer lex;
240         lex.setStream(dstream);
241         lex.setContext("InsetCommand::string2params");
242         lex >> name.c_str(); // check for name
243         lex >> "CommandInset";
244         params.read(lex);
245         return true;
246 }
247
248
249 string InsetCommand::params2string(InsetCommandParams const & params)
250 {
251         ostringstream data;
252         data << insetName(params.code()) << ' ';
253         params.write(data);
254         data << "\\end_inset\n";
255         return data.str();
256 }
257
258
259 bool decodeInsetParam(string const & name, string & data,
260         Buffer const & buffer)
261 {
262         InsetCode const code = insetCode(name);
263         switch (code) {
264         case BIBITEM_CODE:
265         case BIBTEX_CODE:
266         case INDEX_CODE:
267         case LABEL_CODE:
268         case LINE_CODE:
269         case NOMENCL_CODE:
270         case NOMENCL_PRINT_CODE:
271         case REF_CODE:
272         case TOC_CODE:
273         case HYPERLINK_CODE: {
274                 InsetCommandParams p(code);
275                 data = InsetCommand::params2string(p);
276                 break;
277         }
278         case INCLUDE_CODE: {
279                 // data is the include type: one of "include",
280                 // "input", "verbatiminput" or "verbatiminput*"
281                 if (data.empty())
282                         // default type is requested
283                         data = "include";
284                 InsetCommandParams p(INCLUDE_CODE, data);
285                 data = InsetCommand::params2string(p);
286                 break;
287         }
288         case BOX_CODE: {
289                 // \c data == "Boxed" || "Frameless" etc
290                 InsetBoxParams p(data);
291                 data = InsetBox::params2string(p);
292                 break;
293         }
294         case BRANCH_CODE: {
295                 InsetBranchParams p;
296                 data = InsetBranch::params2string(p);
297                 break;
298         }
299         case CITE_CODE: {
300                 InsetCommandParams p(CITE_CODE);
301                 data = InsetCommand::params2string(p);
302                 break;
303         }
304         case ERT_CODE: {
305                 data = InsetERT::params2string(InsetCollapsable::Open);
306                 break;
307         }
308         case EXTERNAL_CODE: {
309                 InsetExternalParams p;
310                 data = InsetExternal::params2string(p, buffer);
311                 break;
312         }
313         case FLOAT_CODE:  {
314                 InsetFloatParams p;
315                 data = InsetFloat::params2string(p);
316                 break;
317         }
318         case LISTINGS_CODE: {
319                 InsetListingsParams p;
320                 data = InsetListings::params2string(p);
321                 break;
322         }
323         case GRAPHICS_CODE: {
324                 InsetGraphicsParams p;
325                 data = InsetGraphics::params2string(p, buffer);
326                 break;
327         }
328         case NOTE_CODE: {
329                 InsetNoteParams p;
330                 data = InsetNote::params2string(p);
331                 break;
332         }
333         case PHANTOM_CODE: {
334                 InsetPhantomParams p;
335                 data = InsetPhantom::params2string(p);
336                 break;
337         }
338         case SPACE_CODE: {
339                 InsetSpaceParams p;
340                 data = InsetSpace::params2string(p);
341                 break;
342         }
343         case VSPACE_CODE: {
344                 VSpace space;
345                 data = InsetVSpace::params2string(space);
346                 break;
347         }
348         case WRAP_CODE: {
349                 InsetWrapParams p;
350                 data = InsetWrap::params2string(p);
351                 break;
352         }
353         default:
354                 return false;
355         } // end switch(code)
356         return true;
357 }
358
359 } // namespace lyx