]> git.lyx.org Git - lyx.git/blobdiff - src/lyxfunc.C
Remove the XOpenIM test as lyxlookup.C has been buried.
[lyx.git] / src / lyxfunc.C
index 8e08ed42c30c60d38681e1c027377bc76567818f..6491f8649ed98b8888d93e3ad29b28986e5489a2 100644 (file)
@@ -69,6 +69,8 @@
 #include "support/path.h"
 #include "support/lyxfunctional.h"
 
+#include "BoostFormat.h"
+
 #include <ctime>
 #include <clocale>
 #include <cstdlib>
@@ -100,11 +102,9 @@ extern void ShowLatexLog();
 LyXFunc::LyXFunc(LyXView * o)
        : owner(o),
        keyseq(toplevel_keymap.get(), toplevel_keymap.get()),
-       cancel_meta_seq(toplevel_keymap.get(), toplevel_keymap.get())
+       cancel_meta_seq(toplevel_keymap.get(), toplevel_keymap.get()),
+       meta_fake_bit(key_modifier::none)
 {
-       meta_fake_bit = key_modifier::none;
-       lyx_dead_action = LFUN_NOACTION;
-       lyx_calling_dead_action = LFUN_NOACTION;
 }
 
 
@@ -162,7 +162,7 @@ void LyXFunc::processKeySym(LyXKeySymPtr keysym,
                       << keysym->getSymbolName()
                       << endl;
        }
+
        // Do nothing if we have nothing (JMarc)
        if (!keysym->isOK()) {
                lyxerr[Debug::KEY] << "Empty kbd action (probably composing)"
@@ -171,6 +171,7 @@ void LyXFunc::processKeySym(LyXKeySymPtr keysym,
        }
 
        if (keysym->isModifier()) {
+               lyxerr[Debug::KEY] << "isModifier true" << endl;
                return;
        }
 
@@ -179,7 +180,7 @@ void LyXFunc::processKeySym(LyXKeySymPtr keysym,
        cancel_meta_seq.reset();
 
        int action = cancel_meta_seq.addkey(keysym, state);
-       lyxerr[Debug::KEY] << "action first set to [" << action << "]" << endl;
+       lyxerr[Debug::KEY] << "action first set to [" << action << ']' << endl;
 
        // When not cancel or meta-fake, do the normal lookup.
        // Note how the meta_fake Mod1 bit is OR-ed in and reset afterwards.
@@ -188,7 +189,7 @@ void LyXFunc::processKeySym(LyXKeySymPtr keysym,
                // remove Caps Lock and Mod2 as a modifiers
                action = keyseq.addkey(keysym, (state | meta_fake_bit));
                lyxerr[Debug::KEY] << "action now set to ["
-                       << action << "]" << endl;
+                       << action << ']' << endl;
        }
 
        // Dont remove this unless you know what you are doing.
@@ -202,7 +203,7 @@ void LyXFunc::processKeySym(LyXKeySymPtr keysym,
        if (lyxerr.debugging(Debug::KEY)) {
                lyxerr << "Key [action="
                       << action << "]["
-                      << keyseq.print() << "]"
+                      << keyseq.print() << ']'
                       << endl;
        }
 
@@ -214,16 +215,24 @@ void LyXFunc::processKeySym(LyXKeySymPtr keysym,
                owner->message(keyseq.print());
        }
 
-       if (action == LFUN_UNKNOWN_ACTION) {
-               // It is unknown, but what if we remove all
-               // the modifiers? (Lgb)
+       // Maybe user can only reach the key via holding down shift.
+       // Let's see. But only if shift is the only modifier
+       if (action == LFUN_UNKNOWN_ACTION && state == key_modifier::shift) {
+               lyxerr[Debug::KEY] << "Trying without shift" << endl;
                action = keyseq.addkey(keysym, key_modifier::none);
-
-               lyxerr[Debug::KEY] << "Removing modifiers...\n"
-                       << "Action now set to ["
-                       << action << "]" << endl;
-
-               if (action == LFUN_UNKNOWN_ACTION) {
+               lyxerr[Debug::KEY] << "Action now " << action << endl;
+       }
+       if (action == LFUN_UNKNOWN_ACTION) {
+               // Hmm, we didn't match any of the keysequences. See
+               // if it's normal insertable text not already covered
+               // by a binding
+               if (keysym->isText() && keyseq.length() == 1) {
+                       lyxerr[Debug::KEY] << "isText() is true, inserting." << endl;
+                       action = LFUN_SELFINSERT;
+               } else {
+                       lyxerr[Debug::KEY] << "Unknown, !isText() - giving up" << endl;
                        owner->message(_("Unknown function."));
                        return;
                }
@@ -233,6 +242,7 @@ void LyXFunc::processKeySym(LyXKeySymPtr keysym,
                char c = keysym->getISOEncoded();
                string argument;
 
+               // FIXME: why ...
                if (c != 0)
                        argument = c;
 
@@ -312,6 +322,13 @@ FuncStatus LyXFunc::getStatus(FuncRequest const & ev) const
                break;
        case LFUN_CUT:
        case LFUN_COPY:
+               if (tli && tli->lyxCode() == Inset::TABULAR_CODE) {
+                       InsetTabular * t(static_cast<InsetTabular*>(tli));
+                       if (t->hasSelection()) {
+                               disable = false;
+                               break;
+                       }
+               }
                disable = !mathcursor && !view()->getLyXText()->selection.set();
                break;
 #ifndef HAVE_LIBAIKSAURUS
@@ -494,7 +511,7 @@ FuncStatus LyXFunc::getStatus(FuncRequest const & ev) const
                code = Inset::FLOAT_CODE;
                break;
        case LFUN_INSET_WRAP:
-               code == Inset::WRAP_CODE;
+               code = Inset::WRAP_CODE;
                break;
        case LFUN_FLOAT_LIST:
                code = Inset::FLOAT_LIST_CODE;
@@ -667,9 +684,15 @@ void LyXFunc::dispatch(string const & s, bool verbose)
        int const action = lyxaction.LookupFunc(s);
 
        if (action == LFUN_UNKNOWN_ACTION) {
+#if USE_BOOST_FORMAT
+boost::format fmt(_("Unknown function (%1$s)"));
+fmt % s;
+owner->message(fmt.str());
+#else
                string const msg = string(_("Unknown function ("))
-                       + s + ")";
+                       + s + ')';
                owner->message(msg);
+#endif
                return;
        }
 
@@ -687,7 +710,7 @@ void LyXFunc::dispatch(int ac, bool verbose)
 void LyXFunc::dispatch(FuncRequest const & ev, bool verbose)
 {
        lyxerr[Debug::ACTION] << "LyXFunc::dispatch: action[" << ev.action
-                             <<"] arg[" << ev.argument << "]" << endl;
+                             <<"] arg[" << ev.argument << ']' << endl;
 
        // we have not done anything wrong yet.
        errorstat = false;
@@ -735,10 +758,10 @@ void LyXFunc::dispatch(FuncRequest const & ev, bool verbose)
                        }
                        // Undo/Redo is a bit tricky for insets.
                        if (action == LFUN_UNDO) {
-                               view()->menuUndo();
+                               view()->undo();
                                goto exit_with_message;
                        } else if (action == LFUN_REDO) {
-                               view()->menuRedo();
+                               view()->redo();
                                goto exit_with_message;
                        } else if (((result=inset->
                                     // Hand-over to inset's own dispatch:
@@ -941,12 +964,18 @@ void LyXFunc::dispatch(FuncRequest const & ev, bool verbose)
        case LFUN_MENUWRITE:
                if (!owner->buffer()->isUnnamed()) {
                        ostringstream s1;
-                       s1 << _("Saving document") << ' '
-                          << MakeDisplayPath(owner->buffer()->fileName() + "...");
-                       owner->message(s1.str().c_str());
+#if USE_BOOST_FORMAT
+                       s1 << boost::format(_("Saving document %1$s..."))
+                          % MakeDisplayPath(owner->buffer()->fileName());
+#else
+                       s1 << _("Saving document ")
+                          << MakeDisplayPath(owner->buffer()->fileName())
+                          << _("...");
+#endif
+                       owner->message(STRCONV(s1.str()));
                        MenuWrite(view(), owner->buffer());
                        s1 << _(" done.");
-                       owner->message(s1.str().c_str());
+                       owner->message(STRCONV(s1.str()));
                } else
                        WriteAs(view(), owner->buffer());
                break;
@@ -1024,11 +1053,11 @@ void LyXFunc::dispatch(FuncRequest const & ev, bool verbose)
                break;
 
        case LFUN_UNDO:
-               view()->menuUndo();
+               view()->undo();
                break;
 
        case LFUN_REDO:
-               view()->menuRedo();
+               view()->redo();
                break;
 
        case LFUN_MENUSEARCH:
@@ -1099,9 +1128,14 @@ void LyXFunc::dispatch(FuncRequest const & ev, bool verbose)
                        break;
                }
                ostringstream str;
-               str << _("Opening help file") << ' '
-                   << MakeDisplayPath(fname) << "...";
-               owner->message(str.str().c_str());
+#if USE_BOOST_FORMAT
+               str << boost::format(_("Opening help file %1$s..."))
+                   % MakeDisplayPath(fname);
+#else
+               str << _("Opening help file ")
+                   << MakeDisplayPath(fname) << _("...");
+#endif
+               owner->message(STRCONV(str.str()));
                view()->buffer(bufferlist.loadLyXFile(fname, false));
                owner->allowInput();
                break;
@@ -1265,7 +1299,7 @@ void LyXFunc::dispatch(FuncRequest const & ev, bool verbose)
                Paragraph * par = owner->buffer()->getParFromID(id);
                if (par == 0) {
                        lyxerr[Debug::INFO] << "No matching paragraph found! ["
-                                           << id << "]" << endl;
+                                           << id << ']' << endl;
                        break;
                } else {
                        lyxerr[Debug::INFO] << "Paragraph " << par->id()
@@ -1430,11 +1464,20 @@ void LyXFunc::dispatch(FuncRequest const & ev, bool verbose)
                         x11_name != lcolor.getX11Name(LColor::graphicsbg));
 
                if (!lcolor.setColor(lyx_name, x11_name)) {
-                       static string const err1 (N_("Set-color \""));
-                       static string const err2 (
-                               N_("\" failed - color is undefined "
-                                  "or may not be redefined"));
-                       setErrorMessage(_(err1) + lyx_name + _(err2));
+#if USE_BOOST_FORMAT
+                       setErrorMessage(
+                               boost::io::str(
+                                       boost::format(
+                                               _("Set-color \"%1$s\" failed "
+                                                 "- color is undefined or "
+                                                 "may not be redefined"))
+                                       % lyx_name));
+#else
+                       setErrorMessage(_("Set-color ") + lyx_name
+                                       + _(" failed - color is undefined"
+                                           " or may not be redefined"));
+#endif
+
                        break;
                }
 
@@ -1506,7 +1549,7 @@ void LyXFunc::sendDispatchMessage(string const & msg, FuncRequest const & ev, bo
 
        string dispatch_msg = msg;
        if (!dispatch_msg.empty())
-               dispatch_msg += " ";
+               dispatch_msg += ' ';
 
        string comname = lyxaction.getActionName(ev.action);
 
@@ -1520,7 +1563,7 @@ void LyXFunc::sendDispatchMessage(string const & msg, FuncRequest const & ev, bo
                if (pseudoaction == LFUN_UNKNOWN_ACTION) {
                        pseudoaction = ev.action;
                } else {
-                       comname += " " + ev.argument;
+                       comname += ' ' + ev.argument;
                        argsadded = true;
                }
        }
@@ -1530,12 +1573,12 @@ void LyXFunc::sendDispatchMessage(string const & msg, FuncRequest const & ev, bo
        if (!shortcuts.empty()) {
                comname += ": " + shortcuts;
        } else if (!argsadded && !ev.argument.empty()) {
-               comname += " " + ev.argument;
+               comname += ' ' + ev.argument;
        }
 
        if (!comname.empty()) {
                comname = rtrim(comname);
-               dispatch_msg += "(" + comname + ')';
+               dispatch_msg += '(' + comname + ')';
        }
 
        lyxerr[Debug::ACTION] << "verbose dispatch msg " << dispatch_msg << endl;
@@ -1589,7 +1632,7 @@ void LyXFunc::menuNew(string const & name, bool fromTemplate)
                                  string(lyxrc.template_path)));
 
                FileDialog::Result result =
-                       fileDlg.Select(lyxrc.template_path,
+                       fileDlg.open(lyxrc.template_path,
                                       _("*.lyx|LyX Documents (*.lyx)"));
 
                if (result.first == FileDialog::Later)
@@ -1628,7 +1671,7 @@ void LyXFunc::open(string const & fname)
                                  string(AddPath(system_lyxdir, "examples"))));
 
                FileDialog::Result result =
-                       fileDlg.Select(initpath,
+                       fileDlg.open(initpath,
                                       "*.lyx|LyX Documents (*.lyx)");
 
                if (result.first == FileDialog::Later)
@@ -1668,21 +1711,32 @@ void LyXFunc::open(string const & fname)
        }
 
        ostringstream str;
-       str << _("Opening document") << ' ' << disp_fn << "...";
+#if USE_BOOST_FORMAT
+       str << boost::format(_("Opening document %1$s...")) % disp_fn;
+#else
+       str << _("Opening document ") << disp_fn << _("...");
+#endif
 
-       owner->message(str.str().c_str());
+       owner->message(STRCONV(str.str()));
 
        Buffer * openbuf = bufferlist.loadLyXFile(filename);
+       ostringstream str2;
        if (openbuf) {
                view()->buffer(openbuf);
-               ostringstream str;
-               str << _("Document") << ' ' << disp_fn << ' ' << _("opened.");
-               owner->message(str.str().c_str());
+#if USE_BOOST_FORMAT
+               str2 << boost::format(_("Document %1$s opened.")) % disp_fn;
+#else
+               str2 << _("Document ") << disp_fn << _(" opened.");
+#endif
        } else {
-               ostringstream str;
-               str << _("Could not open document") << ' ' << disp_fn;
-               owner->message(str.str().c_str());
+#if USE_BOOST_FORMAT
+               str2 << boost::format(_("Could not open document %1$s"))
+                       % disp_fn;
+#else
+               str2 << _("Could not open document ") << disp_fn;
+#endif
        }
+       owner->message(STRCONV(str2.str()));
 }
 
 
@@ -1705,8 +1759,14 @@ void LyXFunc::doImport(string const & argument)
                                initpath = trypath;
                }
 
+#if USE_BOOST_FORMAT
+               boost::format fmt(_("Select %1$s file to import"));
+               fmt % formats.prettyName(format);
+               string const text = fmt.str();
+#else
                string const text = _("Select ") + formats.prettyName(format)
-                       + _(" file to import");
+                       + _(" file to import");;
+#endif
 
                FileDialog fileDlg(owner, text,
                        LFUN_IMPORT,
@@ -1717,9 +1777,9 @@ void LyXFunc::doImport(string const & argument)
 
                string const extension = "*." + formats.extension(format)
                        + "| " + formats.prettyName(format)
-                       + " (*." + formats.extension(format) + ")";
+                       + " (*." + formats.extension(format) + ')';
 
-               FileDialog::Result result = fileDlg.Select(initpath,
+               FileDialog::Result result = fileDlg.open(initpath,
                                                           extension);
 
                if (result.first == FileDialog::Later)