]> git.lyx.org Git - lyx.git/blob - src/insets/InsetArgument.cpp
Remove unused Counters::copy
[lyx.git] / src / insets / InsetArgument.cpp
1 /**
2  * \file InsetArgument.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Martin Vermeer
7  * \author Jürgen Spitzmüller
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "InsetArgument.h"
15
16 #include "Buffer.h"
17 #include "BufferParams.h"
18 #include "Cursor.h"
19 #include "FuncStatus.h"
20 #include "FuncRequest.h"
21 #include "InsetList.h"
22 #include "Language.h"
23 #include "Layout.h"
24 #include "Lexer.h"
25 #include "OutputParams.h"
26 #include "ParIterator.h"
27 #include "TexRow.h"
28 #include "texstream.h"
29 #include "TocBackend.h"
30 #include "xml.h"
31
32 #include "support/convert.h"
33 #include "support/debug.h"
34 #include "support/docstream.h"
35 #include "support/gettext.h"
36 #include "support/lstrings.h"
37
38 using namespace std;
39
40 namespace lyx {
41
42
43 InsetArgument::InsetArgument(Buffer * buf, string const & name)
44     : InsetCollapsible(buf), name_(name), labelstring_(docstring()),
45       font_(inherit_font), labelfont_(inherit_font), decoration_(string()),
46       pass_thru_context_(false), pass_thru_local_(false), pass_thru_(false),
47       free_spacing_(false), pass_thru_chars_(docstring()), is_toc_caption_(false),
48       newline_cmd_(string())
49 {}
50
51
52 void InsetArgument::write(ostream & os) const
53 {
54         os << "Argument " << name_ << "\n";
55         InsetCollapsible::write(os);
56 }
57
58
59 void InsetArgument::read(Lexer & lex)
60 {
61         lex >> name_;
62         InsetCollapsible::read(lex);
63 }
64
65
66 void InsetArgument::updateBuffer(ParIterator const & it, UpdateType utype, bool const deleted)
67 {
68         bool const insetlayout = !it.paragraph().layout().hasArgs();
69         Layout::LaTeXArgMap const args = insetlayout ?
70                 it.inset().getLayout().args() : it.paragraph().layout().args();
71         pass_thru_context_ = insetlayout ?
72                 it.inset().getLayout().isPassThru() : it.paragraph().layout().pass_thru;
73         // Record PassThru status in order to act on changes.
74         bool const former_pass_thru = pass_thru_;
75
76         // Handle pre 2.1 ArgInsets (lyx2lyx cannot classify them)
77         // "999" is the conventional name given to those by lyx2lyx
78         if (name_ == "999") {
79                 int const req = insetlayout ? it.inset().getLayout().requiredArgs()
80                                       : it.paragraph().layout().requiredArgs();
81                 int const opts = insetlayout ? it.inset().getLayout().optArgs()
82                                       : it.paragraph().layout().optArgs();
83                 int nr = 0;
84                 int ours = 0;
85                 InsetList::const_iterator parit = it.paragraph().insetList().begin();
86                 InsetList::const_iterator parend = it.paragraph().insetList().end();
87                 for (; parit != parend; ++parit) {
88                         if (parit->inset->lyxCode() == ARG_CODE) {
89                                 ++nr;
90                                 if (parit->inset == this)
91                                         ours = nr;
92                         }
93                 }
94                 bool done = false;
95                 int realopts = 0;
96                 if (nr > req) {
97                         // We have optional arguments
98                         realopts = nr - req;
99                         if (ours <= realopts) {
100                                 name_ = convert<string>(ours);
101                                 done = true;
102                         }
103                 }
104                 if (!done) {
105                         // This is a mandatory argument. We have to consider
106                         // non-given optional arguments for the numbering
107                         int offset = opts - realopts;
108                         ours += offset;
109                         name_ = convert<string>(ours);
110                 }
111         }
112         Layout::LaTeXArgMap::const_iterator const lait = args.find(name_);
113         caption_of_toc_ = string();
114         if (lait != args.end()) {
115                 docstring label = translateIfPossible((*lait).second.labelstring);
116                 docstring striplabel;
117                 support::rsplit(label, striplabel, '|');
118                 labelstring_ = striplabel.empty() ? label: striplabel;
119                 tooltip_ = translateIfPossible((*lait).second.tooltip);
120                 font_ = (*lait).second.font;
121                 labelfont_ = (*lait).second.labelfont;
122                 decoration_ = (*lait).second.decoration;
123                 pass_thru_chars_ = (*lait).second.pass_thru_chars;
124                 newline_cmd_ = (*lait).second.newlinecmd;
125                 free_spacing_ = (*lait).second.free_spacing;
126                 docbooktag_ = (*lait).second.docbooktag;
127                 docbooktagtype_ = (*lait).second.docbooktagtype;
128                 docbookattr_ = (*lait).second.docbookattr;
129                 pass_thru_local_ = false;
130                 if (lait->second.is_toc_caption) {
131                         is_toc_caption_ = true;
132                         // empty if AddToToc is not set
133                         caption_of_toc_ = insetlayout
134                                 ? it.inset().getLayout().tocType()
135                                 : it.paragraph().layout().tocType();
136                 }
137
138                 switch ((*lait).second.passthru) {
139                         case PT_INHERITED:
140                                 pass_thru_ = pass_thru_context_;
141                                 break;
142                         case PT_TRUE:
143                                 pass_thru_ = true;
144                                 pass_thru_local_ = true;
145                                 break;
146                         case PT_FALSE:
147                                 pass_thru_ = false;
148                                 break;
149                 }
150         } else {
151                 labelstring_ = _("Unknown Argument");
152                 tooltip_ = _("Argument not known in this Layout. Will be suppressed in the output.");
153         }
154
155         if (former_pass_thru != pass_thru_) {
156                 // PassThru status changed. We might need to update
157                 // the language of the contents
158                 Language const * l  = insetlayout
159                         ? it.inset().buffer().language()
160                         : it.buffer()->language();
161                 fixParagraphLanguage(l);
162         }
163
164         setButtonLabel();
165         InsetCollapsible::updateBuffer(it, utype, deleted);
166 }
167
168
169 void InsetArgument::setButtonLabel()
170 {
171         setLabel(labelstring_);
172 }
173
174
175 docstring InsetArgument::toolTip(BufferView const & bv, int, int) const
176 {
177         if (isOpen(bv))
178                 return tooltip_;
179         return toolTipText(tooltip_ + from_ascii(":\n"));
180 }
181
182
183 void InsetArgument::doDispatch(Cursor & cur, FuncRequest & cmd)
184 {
185         switch (cmd.action()) {
186
187         case LFUN_INSET_MODIFY: {
188                 string const first_arg = cmd.getArg(0);
189                 bool const change_type = first_arg == "changetype";
190                 if (!change_type) {
191                         // not for us
192                         // this will not be handled higher up
193                         cur.undispatched();
194                         return;
195                 }
196                 cur.recordUndoInset(this);
197                 name_ = cmd.getArg(1);
198                 cur.forceBufferUpdate();
199                 break;
200         }
201
202         case LFUN_PASTE:
203         case LFUN_CLIPBOARD_PASTE:
204         case LFUN_SELECTION_PASTE:
205         case LFUN_PRIMARY_SELECTION_PASTE:
206         case LFUN_SELF_INSERT:
207                 // With (only) inherited pass_thru, call Text::dispatch()
208                 // directly to avoid call for fixParagraphsFont() and/or
209                 // forcing to latex_language in InsetText::dispatch(),
210                 // since this does not play nicely with inherited pass_thru
211                 // (see #8471).
212                 if (pass_thru_ && !pass_thru_local_) {
213                         text().dispatch(cur, cmd);
214                         // For the paste operations, check if we have
215                         // non-latex_language, and if so, fix.
216                         if (cmd.action() != LFUN_SELF_INSERT)
217                                 fixParagraphLanguage(buffer().params().language);
218                 }
219                 else
220                         InsetCollapsible::doDispatch(cur, cmd);
221                 break;
222
223         default:
224                 InsetCollapsible::doDispatch(cur, cmd);
225                 break;
226         }
227 }
228
229
230 bool InsetArgument::getStatus(Cursor & cur, FuncRequest const & cmd,
231                 FuncStatus & flag) const
232 {
233         switch (cmd.action()) {
234
235         case LFUN_INSET_MODIFY: {
236                 string const first_arg = cmd.getArg(0);
237                 if (first_arg == "changetype") {
238                         string const type = cmd.getArg(1);
239                         flag.setOnOff(type == name_);
240                         if (type == name_) {
241                                 flag.setEnabled(true);
242                                 return true;
243                         }
244                         Layout::LaTeXArgMap args;
245                         bool const insetlayout = cur.paragraph().layout().latexargs().empty();
246                         if (insetlayout)
247                                 args = cur.inset().getLayout().latexargs();
248                         else
249                                 args = cur.paragraph().layout().latexargs();
250                         Layout::LaTeXArgMap::const_iterator const lait = args.find(type);
251                         if (lait != args.end()) {
252                                 flag.setEnabled(true);
253                                 for (auto const & table : cur.paragraph().insetList())
254                                         if (InsetArgument const * ins = table.inset->asInsetArgument())
255                                                 if (ins->name() == type) {
256                                                         // we have this already
257                                                         flag.setEnabled(false);
258                                                         return true;
259                                                 }
260                         } else
261                                 flag.setEnabled(false);
262                         return true;
263                 }
264                 return InsetCollapsible::getStatus(cur, cmd, flag);
265         }
266
267         default:
268                 return InsetCollapsible::getStatus(cur, cmd, flag);
269         }
270 }
271
272
273 string InsetArgument::contextMenuName() const
274 {
275         if (decoration() == InsetLayout::CONGLOMERATE)
276                 return "context-argument-conglomerate";
277         else
278                 return "context-argument";
279 }
280
281
282 FontInfo InsetArgument::getFont() const
283 {
284         if (font_ != inherit_font)
285                 return font_;
286         return InsetCollapsible::getFont();
287 }
288
289
290 FontInfo InsetArgument::getLabelfont() const
291 {
292         if (labelfont_ != inherit_font)
293                 return labelfont_;
294         return InsetCollapsible::getLabelfont();
295 }
296
297
298 ColorCode InsetArgument::labelColor() const {
299         if (labelfont_.color() != Color_inherit)
300                 return labelfont_.color();
301         return InsetCollapsible::labelColor();
302 }
303
304
305 InsetLayout::InsetDecoration InsetArgument::decoration() const
306 {
307         InsetLayout::InsetDecoration dec = getLayout().decoration();
308         if (!decoration_.empty())
309                 dec = translateDecoration(decoration_);
310         return dec == InsetLayout::DEFAULT ? InsetLayout::CLASSIC : dec;
311 }
312
313
314 void InsetArgument::docbook(XMLStream & xs, OutputParams const & rp) const {
315         if (docbooktag_ != from_ascii("NONE") && docbooktag_ != from_ascii("IGNORE")) {
316                 // TODO: implement docbooktagtype_.
317                 xs << xml::StartTag(docbooktag_, docbookattr_);
318                 InsetText::docbook(xs, rp);
319                 xs << xml::EndTag(docbooktag_);
320                 xs << xml::CR();
321         }
322 }
323
324
325 void InsetArgument::latexArgument(otexstream & os,
326                 OutputParams const & runparams_in, docstring const & ldelim,
327                 docstring const & rdelim, docstring const & presetarg) const
328 {
329         otexstringstream ots;
330         OutputParams runparams = runparams_in;
331         if (!pass_thru_chars_.empty())
332                 runparams.pass_thru_chars += pass_thru_chars_;
333         if (!newline_cmd_.empty())
334                 runparams.newlinecmd = newline_cmd_;
335         runparams.pass_thru = isPassThru();
336         InsetText::latex(ots, runparams);
337         TexString ts = ots.release();
338         bool const add_braces = !ldelim.empty() && ldelim != "{"
339                         && support::contains(ts.str, rdelim);
340         os << ldelim;
341         if (add_braces)
342                 os << '{';
343         os << presetarg;
344         if (!presetarg.empty() && !ts.str.empty())
345                 os << ", ";
346         os << move(ts);
347         if (add_braces)
348                 os << '}';
349         os << rdelim;
350 }
351
352
353 void InsetArgument::addToToc(DocIterator const & dit, bool output_active,
354                              UpdateType utype, TocBackend & backend) const
355 {
356         if (!caption_of_toc_.empty()) {
357                 docstring str;
358                 text().forOutliner(str, TOC_ENTRY_LENGTH);
359                 backend.builder(caption_of_toc_).argumentItem(str);
360         }
361         // Proceed with the rest of the inset.
362         InsetText::addToToc(dit, output_active, utype, backend);
363 }
364
365
366 void InsetArgument::fixParagraphLanguage(Language const * l)
367 {
368         Font font(inherit_font, l);
369         if (pass_thru_)
370                 font.setLanguage(latex_language);
371         paragraphs().front().resetFonts(font);
372 }
373
374
375 } // namespace lyx