]> git.lyx.org Git - lyx.git/blob - src/LyXFunc.cpp
Kornel's gcc compile fix.
[lyx.git] / src / LyXFunc.cpp
1 /**
2  * \file LyXFunc.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Alfredo Braunstein
7  * \author Lars Gullik Bjønnes
8  * \author Jean-Marc Lasgouttes
9  * \author Angus Leeming
10  * \author John Levon
11  * \author André Pönitz
12  * \author Allan Rae
13  * \author Dekel Tsur
14  * \author Martin Vermeer
15  * \author Jürgen Vigna
16  *
17  * Full author contact details are available in file CREDITS.
18  */
19
20 #include <config.h>
21
22 #include "LyXFunc.h"
23
24 #include "LayoutFile.h"
25 #include "BranchList.h"
26 #include "buffer_funcs.h"
27 #include "Buffer.h"
28 #include "BufferList.h"
29 #include "BufferParams.h"
30 #include "BufferView.h"
31 #include "CmdDef.h"
32 #include "Color.h"
33 #include "Converter.h"
34 #include "Cursor.h"
35 #include "CutAndPaste.h"
36 #include "DispatchResult.h"
37 #include "Encoding.h"
38 #include "ErrorList.h"
39 #include "Format.h"
40 #include "FuncRequest.h"
41 #include "FuncStatus.h"
42 #include "InsetIterator.h"
43 #include "KeyMap.h"
44 #include "Language.h"
45 #include "Lexer.h"
46 #include "LyXAction.h"
47 #include "lyxfind.h"
48 #include "LyX.h"
49 #include "LyXRC.h"
50 #include "LyXVC.h"
51 #include "Paragraph.h"
52 #include "ParagraphParameters.h"
53 #include "ParIterator.h"
54 #include "Row.h"
55 #include "Session.h"
56 #include "SpellChecker.h"
57
58 #include "frontends/alert.h"
59 #include "frontends/Application.h"
60 #include "frontends/KeySymbol.h"
61 #include "frontends/LyXView.h"
62 #include "frontends/Selection.h"
63
64 #include "support/debug.h"
65 #include "support/environment.h"
66 #include "support/FileName.h"
67 #include "support/filetools.h"
68 #include "support/gettext.h"
69 #include "support/lassert.h"
70 #include "support/lstrings.h"
71 #include "support/Package.h"
72 #include "support/convert.h"
73 #include "support/os.h"
74
75 #include <sstream>
76 #include <vector>
77
78 using namespace std;
79 using namespace lyx::support;
80
81 namespace lyx {
82
83 using frontend::LyXView;
84
85 namespace Alert = frontend::Alert;
86
87 LyXFunc::LyXFunc()
88 {
89 }
90
91
92 //FIXME: bookmark handling is a frontend issue. This code should be transferred
93 // to GuiView and be GuiView and be window dependent.
94 void LyXFunc::gotoBookmark(unsigned int idx, bool openFile, bool switchToBuffer)
95 {
96         LyXView * lv = theApp()->currentWindow();
97         LASSERT(lv, /**/);
98         if (!theSession().bookmarks().isValid(idx))
99                 return;
100         BookmarksSection::Bookmark const & bm = theSession().bookmarks().bookmark(idx);
101         LASSERT(!bm.filename.empty(), /**/);
102         string const file = bm.filename.absFilename();
103         // if the file is not opened, open it.
104         if (!theBufferList().exists(bm.filename)) {
105                 if (openFile)
106                         dispatch(FuncRequest(LFUN_FILE_OPEN, file));
107                 else
108                         return;
109         }
110         // open may fail, so we need to test it again
111         if (!theBufferList().exists(bm.filename))
112                 return;
113
114         // bm can be changed when saving
115         BookmarksSection::Bookmark tmp = bm;
116
117         // Special case idx == 0 used for back-from-back jump navigation
118         if (idx == 0)
119                 dispatch(FuncRequest(LFUN_BOOKMARK_SAVE, "0"));
120
121         // if the current buffer is not that one, switch to it.
122         if (!lv->documentBufferView()
123                 || lv->documentBufferView()->buffer().fileName() != tmp.filename) {
124                 if (!switchToBuffer)
125                         return;
126                 dispatch(FuncRequest(LFUN_BUFFER_SWITCH, file));
127         }
128
129         // moveToPosition try paragraph id first and then paragraph (pit, pos).
130         if (!lv->documentBufferView()->moveToPosition(
131                 tmp.bottom_pit, tmp.bottom_pos, tmp.top_id, tmp.top_pos))
132                 return;
133
134         // bm changed
135         if (idx == 0)
136                 return;
137
138         // Cursor jump succeeded!
139         Cursor const & cur = lv->documentBufferView()->cursor();
140         pit_type new_pit = cur.pit();
141         pos_type new_pos = cur.pos();
142         int new_id = cur.paragraph().id();
143
144         // if bottom_pit, bottom_pos or top_id has been changed, update bookmark
145         // see http://bugzilla.lyx.org/show_bug.cgi?id=3092
146         if (bm.bottom_pit != new_pit || bm.bottom_pos != new_pos 
147                 || bm.top_id != new_id) {
148                 const_cast<BookmarksSection::Bookmark &>(bm).updatePos(
149                         new_pit, new_pos, new_id);
150         }
151 }
152
153
154 FuncStatus LyXFunc::getStatus(FuncRequest const & cmd) const
155 {
156         //lyxerr << "LyXFunc::getStatus: cmd: " << cmd << endl;
157         FuncStatus flag;
158
159         if (cmd.action == LFUN_NOACTION) {
160                 flag.message(from_utf8(N_("Nothing to do")));
161                 flag.setEnabled(false);
162                 return flag;
163         }
164
165         if (cmd.action == LFUN_UNKNOWN_ACTION) {
166                 flag.unknown(true);
167                 flag.setEnabled(false);
168                 flag.message(from_utf8(N_("Unknown action")));
169                 return flag;
170         }
171
172         // I would really like to avoid having this switch and rather try to
173         // encode this in the function itself.
174         // -- And I'd rather let an inset decide which LFUNs it is willing
175         // to handle (Andre')
176         bool enable = true;
177         switch (cmd.action) {
178
179         // This could be used for the no-GUI version. The GUI version is handled in
180         // LyXView::getStatus(). See above.
181         /*
182         case LFUN_BUFFER_WRITE:
183         case LFUN_BUFFER_WRITE_AS: {
184                 Buffer * b = theBufferList().getBuffer(FileName(cmd.getArg(0)));
185                 enable = b && (b->isUnnamed() || !b->isClean());
186                 break;
187         }
188         */
189
190         case LFUN_BOOKMARK_GOTO: {
191                 const unsigned int num = convert<unsigned int>(to_utf8(cmd.argument()));
192                 enable = theSession().bookmarks().isValid(num);
193                 break;
194         }
195
196         case LFUN_BOOKMARK_CLEAR:
197                 enable = theSession().bookmarks().hasValid();
198                 break;
199
200         // this one is difficult to get right. As a half-baked
201         // solution, we consider only the first action of the sequence
202         case LFUN_COMMAND_SEQUENCE: {
203                 // argument contains ';'-terminated commands
204                 string const firstcmd = token(to_utf8(cmd.argument()), ';', 0);
205                 FuncRequest func(lyxaction.lookupFunc(firstcmd));
206                 func.origin = cmd.origin;
207                 flag = getStatus(func);
208                 break;
209         }
210
211         // we want to check if at least one of these is enabled
212         case LFUN_COMMAND_ALTERNATIVES: {
213                 // argument contains ';'-terminated commands
214                 string arg = to_utf8(cmd.argument());
215                 while (!arg.empty()) {
216                         string first;
217                         arg = split(arg, first, ';');
218                         FuncRequest func(lyxaction.lookupFunc(first));
219                         func.origin = cmd.origin;
220                         flag = getStatus(func);
221                         // if this one is enabled, the whole thing is
222                         if (flag.enabled())
223                                 break;
224                 }
225                 break;
226         }
227
228         case LFUN_CALL: {
229                 FuncRequest func;
230                 string name = to_utf8(cmd.argument());
231                 if (theTopLevelCmdDef().lock(name, func)) {
232                         func.origin = cmd.origin;
233                         flag = getStatus(func);
234                         theTopLevelCmdDef().release(name);
235                 } else {
236                         // catch recursion or unknown command
237                         // definition. all operations until the
238                         // recursion or unknown command definition
239                         // occurs are performed, so set the state to
240                         // enabled
241                         enable = true;
242                 }
243                 break;
244         }
245
246         case LFUN_CURSOR_FOLLOWS_SCROLLBAR_TOGGLE:
247         case LFUN_REPEAT:
248         case LFUN_PREFERENCES_SAVE:
249         case LFUN_BUFFER_SAVE_AS_DEFAULT:
250                 // these are handled in our dispatch()
251                 break;
252
253         default:
254                 if (!theApp()) {
255                         enable = false;
256                         break;
257                 }
258                 if (theApp()->getStatus(cmd, flag))
259                         break;
260
261                 // Does the view know something?
262                 LyXView * lv = theApp()->currentWindow();
263                 if (!lv) {
264                         enable = false;
265                         break;
266                 }
267                 if (lv->getStatus(cmd, flag))
268                         break;
269
270                 BufferView * bv = lv->currentBufferView();
271                 BufferView * doc_bv = lv->documentBufferView();
272                 // If we do not have a BufferView, then other functions are disabled
273                 if (!bv) {
274                         enable = false;
275                         break;
276                 }
277                 // try the BufferView
278                 bool decided = bv->getStatus(cmd, flag);
279                 if (!decided)
280                         // try the Buffer
281                         decided = bv->buffer().getStatus(cmd, flag);
282                 if (!decided && doc_bv)
283                         // try the Document Buffer
284                         decided = doc_bv->buffer().getStatus(cmd, flag);
285         }
286
287         if (!enable)
288                 flag.setEnabled(false);
289
290         // the default error message if we disable the command
291         if (!flag.enabled() && flag.message().empty())
292                 flag.message(from_utf8(N_("Command disabled")));
293
294         return flag;
295 }
296
297 /// send a post-dispatch status message
298 static docstring sendDispatchMessage(docstring const & msg, FuncRequest const & cmd)
299 {
300         const bool verbose = (cmd.origin == FuncRequest::MENU
301                               || cmd.origin == FuncRequest::TOOLBAR
302                               || cmd.origin == FuncRequest::COMMANDBUFFER);
303
304         if (cmd.action == LFUN_SELF_INSERT || !verbose) {
305                 LYXERR(Debug::ACTION, "dispatch msg is " << msg);
306                 return msg;
307         }
308
309         docstring dispatch_msg = msg;
310         if (!dispatch_msg.empty())
311                 dispatch_msg += ' ';
312
313         docstring comname = from_utf8(lyxaction.getActionName(cmd.action));
314
315         bool argsadded = false;
316
317         if (!cmd.argument().empty()) {
318                 if (cmd.action != LFUN_UNKNOWN_ACTION) {
319                         comname += ' ' + cmd.argument();
320                         argsadded = true;
321                 }
322         }
323         docstring const shortcuts = theTopLevelKeymap().
324                 printBindings(cmd, KeySequence::ForGui);
325
326         if (!shortcuts.empty())
327                 comname += ": " + shortcuts;
328         else if (!argsadded && !cmd.argument().empty())
329                 comname += ' ' + cmd.argument();
330
331         if (!comname.empty()) {
332                 comname = rtrim(comname);
333                 dispatch_msg += '(' + rtrim(comname) + ')';
334         }
335         LYXERR(Debug::ACTION, "verbose dispatch msg " << to_utf8(dispatch_msg));
336         return dispatch_msg;
337 }
338
339
340 void LyXFunc::dispatch(FuncRequest const & cmd)
341 {
342         string const argument = to_utf8(cmd.argument());
343         FuncCode const action = cmd.action;
344
345         LYXERR(Debug::ACTION, "\nLyXFunc::dispatch: cmd: " << cmd);
346         //lyxerr << "LyXFunc::dispatch: cmd: " << cmd << endl;
347
348         // we have not done anything wrong yet.
349         errorstat = false;
350         dispatch_buffer.erase();
351
352         // redraw the screen at the end (first of the two drawing steps).
353         //This is done unless explicitely requested otherwise
354         Update::flags updateFlags = Update::FitCursor;
355
356         LyXView * lv = theApp()->currentWindow();
357
358         FuncStatus const flag = getStatus(cmd);
359         if (!flag.enabled()) {
360                 // We cannot use this function here
361                 LYXERR(Debug::ACTION, "LyXFunc::dispatch: "
362                        << lyxaction.getActionName(action)
363                        << " [" << action << "] is disabled at this location");
364                 setErrorMessage(flag.message());
365                 if (lv)
366                         lv->restartCursor();
367         } else {
368                 switch (action) {
369
370                 case LFUN_CURSOR_FOLLOWS_SCROLLBAR_TOGGLE:
371                         lyxrc.cursor_follows_scrollbar = !lyxrc.cursor_follows_scrollbar;
372                         break;
373
374                 case LFUN_REPEAT: {
375                         // repeat command
376                         string countstr;
377                         string rest = split(argument, countstr, ' ');
378                         istringstream is(countstr);
379                         int count = 0;
380                         is >> count;
381                         //lyxerr << "repeat: count: " << count << " cmd: " << rest << endl;
382                         for (int i = 0; i < count; ++i)
383                                 dispatch(lyxaction.lookupFunc(rest));
384                         break;
385                 }
386
387                 case LFUN_COMMAND_SEQUENCE: {
388                         // argument contains ';'-terminated commands
389                         string arg = argument;
390                         // FIXME: this LFUN should also work without any view.
391                         Buffer * buffer = (lv && lv->documentBufferView())
392                                 ? &(lv->documentBufferView()->buffer()) : 0;
393                         buffer = &lv->currentBufferView()->buffer();
394                         if (buffer && !theBufferList().isLoaded(buffer))
395                                 buffer = 0;
396                         if (buffer)
397                                 buffer->undo().beginUndoGroup();
398                         while (!arg.empty()) {
399                                 string first;
400                                 arg = split(arg, first, ';');
401                                 FuncRequest func(lyxaction.lookupFunc(first));
402                                 func.origin = cmd.origin;
403                                 dispatch(func);
404                         }
405                         if (buffer)
406                                 buffer->undo().endUndoGroup();
407                         break;
408                 }
409
410                 case LFUN_COMMAND_ALTERNATIVES: {
411                         // argument contains ';'-terminated commands
412                         string arg = argument;
413                         while (!arg.empty()) {
414                                 string first;
415                                 arg = split(arg, first, ';');
416                                 FuncRequest func(lyxaction.lookupFunc(first));
417                                 func.origin = cmd.origin;
418                                 FuncStatus stat = getStatus(func);
419                                 if (stat.enabled()) {
420                                         dispatch(func);
421                                         break;
422                                 }
423                         }
424                         break;
425                 }
426
427                 case LFUN_CALL: {
428                         FuncRequest func;
429                         if (theTopLevelCmdDef().lock(argument, func)) {
430                                 func.origin = cmd.origin;
431                                 dispatch(func);
432                                 theTopLevelCmdDef().release(argument);
433                         } else {
434                                 if (func.action == LFUN_UNKNOWN_ACTION) {
435                                         // unknown command definition
436                                         lyxerr << "Warning: unknown command definition `"
437                                                    << argument << "'"
438                                                    << endl;
439                                 } else {
440                                         // recursion detected
441                                         lyxerr << "Warning: Recursion in the command definition `"
442                                                    << argument << "' detected"
443                                                    << endl;
444                                 }
445                         }
446                         break;
447                 }
448
449                 case LFUN_PREFERENCES_SAVE: {
450                         lyxrc.write(makeAbsPath("preferences",
451                                                 package().user_support().absFilename()),
452                                     false);
453                         break;
454                 }
455
456                 case LFUN_BUFFER_SAVE_AS_DEFAULT: {
457                         string const fname =
458                                 addName(addPath(package().user_support().absFilename(), "templates/"),
459                                         "defaults.lyx");
460                         Buffer defaults(fname);
461
462                         istringstream ss(argument);
463                         Lexer lex;
464                         lex.setStream(ss);
465                         int const unknown_tokens = defaults.readHeader(lex);
466
467                         if (unknown_tokens != 0) {
468                                 lyxerr << "Warning in LFUN_BUFFER_SAVE_AS_DEFAULT!\n"
469                                        << unknown_tokens << " unknown token"
470                                        << (unknown_tokens == 1 ? "" : "s")
471                                        << endl;
472                         }
473
474                         if (defaults.writeFile(FileName(defaults.absFileName())))
475                                 setMessage(bformat(_("Document defaults saved in %1$s"),
476                                                    makeDisplayPath(fname)));
477                         else
478                                 setErrorMessage(from_ascii(N_("Unable to save document defaults")));
479                         break;
480                 }
481
482                 case LFUN_BOOKMARK_GOTO:
483                         // go to bookmark, open unopened file and switch to buffer if necessary
484                         gotoBookmark(convert<unsigned int>(to_utf8(cmd.argument())), true, true);
485                         updateFlags = Update::FitCursor;
486                         break;
487
488                 case LFUN_BOOKMARK_CLEAR:
489                         theSession().bookmarks().clear();
490                         break;
491
492                 default:
493                         DispatchResult dr;
494
495                         LASSERT(theApp(), /**/);
496                         // Let the frontend dispatch its own actions.
497                         theApp()->dispatch(cmd, dr);
498                         if (dr.dispatched())
499                                 // Nothing more to do.
500                                 break;
501
502                         // Everything below is only for active window
503                         if (lv == 0)
504                                 break;
505
506                         // Let the current LyXView dispatch its own actions.
507                         if (lv->dispatch(cmd)) {
508                                 BufferView * bv = lv->currentBufferView();
509                                 if (bv)
510                                         updateFlags = bv->cursor().result().update();
511                                 break;
512                         }
513
514                         BufferView * bv = lv->currentBufferView();
515                         LASSERT(bv, /**/);
516
517                         // Let the current BufferView dispatch its own actions.
518                         if (bv->dispatch(cmd)) {
519                                 // The BufferView took care of its own updates if needed.
520                                 updateFlags = Update::None;
521                                 break;
522                         }
523
524                         BufferView * doc_bv = lv->documentBufferView();
525                         // Try with the document BufferView dispatch if any.
526                         if (doc_bv && doc_bv->dispatch(cmd)) {
527                                 updateFlags = Update::None;
528                                 break;
529                         }
530
531                         // OK, so try the current Buffer itself...
532                         bv->buffer().dispatch(cmd, dr);
533                         if (dr.dispatched()) {
534                                 updateFlags = dr.update();
535                                 break;
536                         }
537                         // and with the document Buffer.
538                         if (doc_bv) {
539                                 doc_bv->buffer().dispatch(cmd, dr);
540                                 if (dr.dispatched()) {
541                                         updateFlags = dr.update();
542                                         break;
543                                 }
544                         }
545
546                         // Is this a function that acts on inset at point?
547                         Inset * inset = bv->cursor().nextInset();
548                         if (lyxaction.funcHasFlag(action, LyXAction::AtPoint)
549                             && inset) {
550                                 bv->cursor().result().dispatched(true);
551                                 bv->cursor().result().update(Update::FitCursor | Update::Force);
552                                 FuncRequest tmpcmd = cmd;
553                                 inset->dispatch(bv->cursor(), tmpcmd);
554                                 if (bv->cursor().result().dispatched()) {
555                                         updateFlags = bv->cursor().result().update();
556                                         break;
557                                 }
558                         }
559
560                         // Let the current Cursor dispatch its own actions.
561                         Cursor old = bv->cursor();
562                         bv->cursor().getPos(cursorPosBeforeDispatchX_,
563                                                 cursorPosBeforeDispatchY_);
564                         bv->cursor().dispatch(cmd);
565
566                         // notify insets we just left
567                         if (bv->cursor() != old) {
568                                 old.fixIfBroken();
569                                 bool badcursor = notifyCursorLeavesOrEnters(old, bv->cursor());
570                                 if (badcursor)
571                                         bv->cursor().fixIfBroken();
572                         }
573
574                         // update completion. We do it here and not in
575                         // processKeySym to avoid another redraw just for a
576                         // changed inline completion
577                         if (cmd.origin == FuncRequest::KEYBOARD) {
578                                 if (cmd.action == LFUN_SELF_INSERT
579                                     || (cmd.action == LFUN_ERT_INSERT && bv->cursor().inMathed()))
580                                         lv->updateCompletion(bv->cursor(), true, true);
581                                 else if (cmd.action == LFUN_CHAR_DELETE_BACKWARD)
582                                         lv->updateCompletion(bv->cursor(), false, true);
583                                 else
584                                         lv->updateCompletion(bv->cursor(), false, false);
585                         }
586
587                         updateFlags = bv->cursor().result().update();
588                 }
589
590                 // if we executed a mutating lfun, mark the buffer as dirty
591                 Buffer * doc_buffer = (lv && lv->documentBufferView())
592                         ? &(lv->documentBufferView()->buffer()) : 0;
593                 if (doc_buffer && theBufferList().isLoaded(doc_buffer)
594                         && flag.enabled()
595                     && !lyxaction.funcHasFlag(action, LyXAction::NoBuffer)
596                     && !lyxaction.funcHasFlag(action, LyXAction::ReadOnly))
597                         doc_buffer->markDirty();                        
598
599                 if (lv && lv->currentBufferView()) {
600                         // BufferView::update() updates the ViewMetricsInfo and
601                         // also initializes the position cache for all insets in
602                         // (at least partially) visible top-level paragraphs.
603                         // We will redraw the screen only if needed.
604                         lv->currentBufferView()->processUpdateFlags(updateFlags);
605
606                         // Do we have a selection?
607                         theSelection().haveSelection(
608                                 lv->currentBufferView()->cursor().selection());
609                         
610                         // update gui
611                         lv->restartCursor();
612                 }
613         }
614         if (lv) {
615                 // Some messages may already be translated, so we cannot use _()
616                 lv->message(sendDispatchMessage(
617                         translateIfPossible(getMessage()), cmd));
618         }
619 }
620
621
622 // Each LyXView should have it's own message method. lyxview and
623 // the minibuffer would use the minibuffer, but lyxserver would
624 // send an ERROR signal to its client.  Alejandro 970603
625 // This function is bit problematic when it comes to NLS, to make the
626 // lyx servers client be language indepenent we must not translate
627 // strings sent to this func.
628 void LyXFunc::setErrorMessage(docstring const & m) const
629 {
630         dispatch_buffer = m;
631         errorstat = true;
632 }
633
634
635 void LyXFunc::setMessage(docstring const & m) const
636 {
637         dispatch_buffer = m;
638 }
639
640
641 } // namespace lyx