]> git.lyx.org Git - lyx.git/blobdiff - src/LyXFunc.cpp
This is the first of a series of commits that will make InsetLayout a real class.
[lyx.git] / src / LyXFunc.cpp
index 386545b0c91349607d9f30fd1951e6170e3afc18..e136e363df7cf9eccb45b0333e5ec63c2a7d1a50 100644 (file)
@@ -18,7 +18,6 @@
  */
 
 #include <config.h>
-#include <vector>
 
 #include "LyXFunc.h"
 
 #include "Converter.h"
 #include "Cursor.h"
 #include "CutAndPaste.h"
-#include "support/debug.h"
 #include "DispatchResult.h"
 #include "Encoding.h"
 #include "ErrorList.h"
 #include "Format.h"
 #include "FuncRequest.h"
 #include "FuncStatus.h"
-#include "support/gettext.h"
 #include "InsetIterator.h"
 #include "Intl.h"
 #include "KeyMap.h"
@@ -58,7 +55,6 @@
 #include "Server.h"
 #include "Session.h"
 #include "TextClassList.h"
-#include "ToolbarBackend.h"
 
 #include "insets/InsetBox.h"
 #include "insets/InsetBranch.h"
 
 #include "frontends/alert.h"
 #include "frontends/Application.h"
-#include "frontends/FileDialog.h"
-#include "frontends/FontLoader.h"
 #include "frontends/KeySymbol.h"
 #include "frontends/LyXView.h"
 #include "frontends/Selection.h"
 
+#include "support/debug.h"
 #include "support/environment.h"
-#include "support/FileFilterList.h"
 #include "support/FileName.h"
 #include "support/filetools.h"
+#include "support/gettext.h"
 #include "support/lstrings.h"
 #include "support/Path.h"
 #include "support/Package.h"
@@ -94,6 +89,7 @@
 #include "support/os.h"
 
 #include <sstream>
+#include <vector>
 
 using namespace std;
 using namespace lyx::support;
@@ -104,79 +100,9 @@ using frontend::LyXView;
 
 namespace Alert = frontend::Alert;
 
-extern bool quitting;
-extern bool use_gui;
-
 namespace {
 
 
-bool import(LyXView * lv, FileName const & filename,
-                     string const & format, ErrorList & errorList)
-{
-       docstring const displaypath = makeDisplayPath(filename.absFilename());
-       lv->message(bformat(_("Importing %1$s..."), displaypath));
-
-       FileName const lyxfile(changeExtension(filename.absFilename(), ".lyx"));
-
-       string loader_format;
-       vector<string> loaders = theConverters().loaders();
-       if (find(loaders.begin(), loaders.end(), format) == loaders.end()) {
-               for (vector<string>::const_iterator it = loaders.begin();
-                    it != loaders.end(); ++it) {
-                       if (theConverters().isReachable(format, *it)) {
-                               string const tofile =
-                                       changeExtension(filename.absFilename(),
-                                               formats.extension(*it));
-                               if (!theConverters().convert(0, filename, FileName(tofile),
-                                                       filename, format, *it, errorList))
-                                       return false;
-                               loader_format = *it;
-                               break;
-                       }
-               }
-               if (loader_format.empty()) {
-                       frontend::Alert::error(_("Couldn't import file"),
-                                    bformat(_("No information for importing the format %1$s."),
-                                        formats.prettyName(format)));
-                       return false;
-               }
-       } else {
-               loader_format = format;
-       }
-
-
-       if (loader_format == "lyx") {
-               Buffer * buf = theLyXFunc().loadAndViewFile(lyxfile);
-               if (!buf) {
-                       // we are done
-                       lv->message(_("file not imported!"));
-                       return false;
-               }
-               updateLabels(*buf);
-               lv->setBuffer(buf);
-               buf->errors("Parse");
-       } else {
-               Buffer * const b = newFile(lyxfile.absFilename(), string(), true);
-               if (b)
-                       lv->setBuffer(b);
-               else
-                       return false;
-               bool as_paragraphs = loader_format == "textparagraph";
-               string filename2 = (loader_format == format) ? filename.absFilename()
-                       : changeExtension(filename.absFilename(),
-                                         formats.extension(loader_format));
-               lv->view()->insertPlaintextFile(FileName(filename2), as_paragraphs);
-               theLyXFunc().setLyXView(lv);
-               lyx::dispatch(FuncRequest(LFUN_MARK_OFF));
-       }
-
-       // we are done
-       lv->message(_("imported."));
-       return true;
-}
-
-
-
 // This function runs "configure" and then rereads lyx.defaults to
 // reconfigure the automatic settings.
 void reconfigure(LyXView & lv, string const & option)
@@ -440,9 +366,17 @@ void LyXFunc::processKeySym(KeySymbol const & keysym, KeyModifier state)
                        dispatch(FuncRequest(LFUN_SELF_INSERT, arg,
                                             FuncRequest::KEYBOARD));
                        LYXERR(Debug::KEY, "SelfInsert arg[`" << to_utf8(arg) << "']");
+                       lyx_view_->updateCompletion(true, true);
                }
        } else {
                dispatch(func);
+               if (func.action == LFUN_CHAR_DELETE_BACKWARD)
+                       // backspace is not a self-insertion. But it
+                       // still should not hide the completion popup.
+                       // FIXME: more clever way to detect those movements
+                       lyx_view_->updateCompletion(false, true);
+               else
+                       lyx_view_->updateCompletion(false, false);
        }
 
        lyx_view_->restartCursor();
@@ -526,6 +460,16 @@ FuncStatus LyXFunc::getStatus(FuncRequest const & cmd) const
        case LFUN_INSET_APPLY:
        case LFUN_BUFFER_WRITE:
        case LFUN_BUFFER_WRITE_AS:
+       case LFUN_SPLIT_VIEW:
+       case LFUN_CLOSE_TAB_GROUP:
+               if (lyx_view_)
+                       return lyx_view_->getStatus(cmd);
+               enable = false;
+               break;
+
+       case LFUN_COMPLETION_POPUP:
+       case LFUN_COMPLETION_INLINE:
+       case LFUN_COMPLETION_COMPLETE:
                if (lyx_view_)
                        return lyx_view_->getStatus(cmd);
                enable = false;
@@ -662,7 +606,6 @@ FuncStatus LyXFunc::getStatus(FuncRequest const & cmd) const
        case LFUN_BUFFER_AUTO_SAVE:
        case LFUN_RECONFIGURE:
        case LFUN_HELP_OPEN:
-       case LFUN_FILE_NEW:
        case LFUN_FILE_OPEN:
        case LFUN_DROP_LAYOUTS_CHOICE:
        case LFUN_MENU_OPEN:
@@ -672,6 +615,7 @@ FuncStatus LyXFunc::getStatus(FuncRequest const & cmd) const
        case LFUN_DIALOG_HIDE:
        case LFUN_DIALOG_DISCONNECT_INSET:
        case LFUN_BUFFER_CHILD_OPEN:
+       case LFUN_UI_TOGGLE:
        case LFUN_TOGGLE_CURSOR_FOLLOWS_SCROLLBAR:
        case LFUN_KEYMAP_OFF:
        case LFUN_KEYMAP_PRIMARY:
@@ -1095,9 +1039,12 @@ void LyXFunc::dispatch(FuncRequest const & cmd)
                        break;
                }
 
+               // FIXME: There is need for a command-line import.
+               /*
                case LFUN_BUFFER_IMPORT:
                        doImport(argument);
                        break;
+               */
 
                case LFUN_BUFFER_AUTO_SAVE:
                        lyx_view_->buffer()->autoSave();
@@ -1124,7 +1071,7 @@ void LyXFunc::dispatch(FuncRequest const & cmd)
                        }
                        lyx_view_->message(bformat(_("Opening help file %1$s..."),
                                makeDisplayPath(fname.absFilename())));
-                       Buffer * buf = loadAndViewFile(fname, false);
+                       Buffer * buf = lyx_view_->loadDocument(fname, false);
                        if (buf) {
                                updateLabels(*buf);
                                lyx_view_->setBuffer(buf);
@@ -1180,25 +1127,6 @@ void LyXFunc::dispatch(FuncRequest const & cmd)
                        reloadBuffer();
                        break;
 
-               // --- buffers ----------------------------------------
-
-               case LFUN_FILE_NEW: {
-                       BOOST_ASSERT(lyx_view_);
-                       string name;
-                       string tmpname = split(argument, name, ':'); // Split filename
-                       Buffer * const b = newFile(name, tmpname);
-                       if (b)
-                               lyx_view_->setBuffer(b);
-                       updateFlags = Update::None;
-                       break;
-               }
-
-               case LFUN_FILE_OPEN:
-                       BOOST_ASSERT(lyx_view_);
-                       open(argument);
-                       updateFlags = Update::None;
-                       break;
-
                // --- lyxserver commands ----------------------------
                case LFUN_SERVER_GET_NAME:
                        BOOST_ASSERT(lyx_view_ && lyx_view_->buffer());
@@ -1232,7 +1160,7 @@ void LyXFunc::dispatch(FuncRequest const & cmd)
                                if (theBufferList().exists(s.absFilename()))
                                        buf = theBufferList().getBuffer(s.absFilename());
                                else {
-                                       buf = loadAndViewFile(s);
+                                       buf = lyx_view_->loadDocument(s);
                                        loaded = true;
                                }
                        }
@@ -1386,7 +1314,7 @@ void LyXFunc::dispatch(FuncRequest const & cmd)
                        } else {
                                setMessage(bformat(_("Opening child document %1$s..."),
                                        makeDisplayPath(filename.absFilename())));
-                               child = loadAndViewFile(filename, true);
+                               child = lyx_view_->loadDocument(filename, false);
                                parsed = true;
                        }
                        if (child) {
@@ -1659,6 +1587,7 @@ void LyXFunc::dispatch(FuncRequest const & cmd)
                        TextClassPtr oldClass = buffer->params().getTextClassPtr();
                        view()->cursor().recordUndoFullDocument();
                        buffer->params().clearLayoutModules();
+                       buffer->params().makeTextClass();
                        updateLayout(oldClass, buffer);
                        updateFlags = Update::Force | Update::FitCursor;
                        break;
@@ -1670,6 +1599,7 @@ void LyXFunc::dispatch(FuncRequest const & cmd)
                        TextClassPtr oldClass = buffer->params().getTextClassPtr();
                        view()->cursor().recordUndoFullDocument();
                        buffer->params().addLayoutModule(argument);
+                       buffer->params().makeTextClass();
                        updateLayout(oldClass, buffer);
                        updateFlags = Update::Force | Update::FitCursor;
                        break;
@@ -1698,6 +1628,7 @@ void LyXFunc::dispatch(FuncRequest const & cmd)
                        TextClassPtr oldClass = buffer->params().getTextClassPtr();
                        view()->cursor().recordUndoFullDocument();
                        buffer->params().setBaseClass(new_class);
+                       buffer->params().makeTextClass();
                        updateLayout(oldClass, buffer);
                        updateFlags = Update::Force | Update::FitCursor;
                        break;
@@ -1710,6 +1641,7 @@ void LyXFunc::dispatch(FuncRequest const & cmd)
                        textclass_type const tc = buffer->params().getBaseClass();
                        textclasslist.reset(tc);
                        buffer->params().setBaseClass(tc);
+                       buffer->params().makeTextClass();
                        updateLayout(oldClass, buffer);
                        updateFlags = Update::Force | Update::FitCursor;
                        break;
@@ -1859,192 +1791,6 @@ void LyXFunc::sendDispatchMessage(docstring const & msg, FuncRequest const & cmd
 }
 
 
-Buffer * LyXFunc::loadAndViewFile(FileName const & filename, bool tolastfiles)
-{
-       lyx_view_->setBusy(true);
-
-       Buffer * newBuffer = checkAndLoadLyXFile(filename);
-
-       if (!newBuffer) {
-               lyx_view_->message(_("Document not loaded."));
-               lyx_view_->setBusy(false);
-               return 0;
-       }
-
-       lyx_view_->setBuffer(newBuffer);
-
-       // scroll to the position when the file was last closed
-       if (lyxrc.use_lastfilepos) {
-               LastFilePosSection::FilePos filepos =
-                       LyX::ref().session().lastFilePos().load(filename);
-               lyx_view_->view()->moveToPosition(filepos.pit, filepos.pos, 0, 0);
-       }
-
-       if (tolastfiles)
-               LyX::ref().session().lastFiles().add(filename);
-
-       lyx_view_->setBusy(false);
-       return newBuffer;
-}
-
-
-void LyXFunc::open(string const & fname)
-{
-       string initpath = lyxrc.document_path;
-
-       if (lyx_view_->buffer()) {
-               string const trypath = lyx_view_->buffer()->filePath();
-               // If directory is writeable, use this as default.
-               if (FileName(trypath).isDirWritable())
-                       initpath = trypath;
-       }
-
-       string filename;
-
-       if (fname.empty()) {
-               FileDialog dlg(_("Select document to open"), LFUN_FILE_OPEN);
-               dlg.setButton1(_("Documents|#o#O"), from_utf8(lyxrc.document_path));
-               dlg.setButton2(_("Examples|#E#e"),
-                               from_utf8(addPath(package().system_support().absFilename(), "examples")));
-
-               FileDialog::Result result =
-                       dlg.open(from_utf8(initpath),
-                                    FileFilterList(_("LyX Documents (*.lyx)")),
-                                    docstring());
-
-               if (result.first == FileDialog::Later)
-                       return;
-
-               filename = to_utf8(result.second);
-
-               // check selected filename
-               if (filename.empty()) {
-                       lyx_view_->message(_("Canceled."));
-                       return;
-               }
-       } else
-               filename = fname;
-
-       // get absolute path of file and add ".lyx" to the filename if
-       // necessary
-       FileName const fullname = fileSearch(string(), filename, "lyx");
-       if (!fullname.empty())
-               filename = fullname.absFilename();
-
-       // if the file doesn't exist, let the user create one
-       if (!fullname.exists()) {
-               // the user specifically chose this name. Believe him.
-               Buffer * const b = newFile(filename, string(), true);
-               if (b)
-                       lyx_view_->setBuffer(b);
-               return;
-       }
-
-       docstring const disp_fn = makeDisplayPath(filename);
-       lyx_view_->message(bformat(_("Opening document %1$s..."), disp_fn));
-
-       docstring str2;
-       Buffer * buf = loadAndViewFile(fullname);
-       if (buf) {
-               updateLabels(*buf);
-               lyx_view_->setBuffer(buf);
-               buf->errors("Parse");
-               str2 = bformat(_("Document %1$s opened."), disp_fn);
-       } else {
-               str2 = bformat(_("Could not open document %1$s"), disp_fn);
-       }
-       lyx_view_->message(str2);
-}
-
-
-void LyXFunc::doImport(string const & argument)
-{
-       string format;
-       string filename = split(argument, format, ' ');
-
-       LYXERR(Debug::INFO, "LyXFunc::doImport: " << format
-                           << " file: " << filename);
-
-       // need user interaction
-       if (filename.empty()) {
-               string initpath = lyxrc.document_path;
-
-               if (lyx_view_->buffer()) {
-                       string const trypath = lyx_view_->buffer()->filePath();
-                       // If directory is writeable, use this as default.
-                       if (FileName(trypath).isDirWritable())
-                               initpath = trypath;
-               }
-
-               docstring const text = bformat(_("Select %1$s file to import"),
-                       formats.prettyName(format));
-
-               FileDialog dlg(text, LFUN_BUFFER_IMPORT);
-               dlg.setButton1(_("Documents|#o#O"), from_utf8(lyxrc.document_path));
-               dlg.setButton2(_("Examples|#E#e"),
-                       from_utf8(addPath(package().system_support().absFilename(), "examples")));
-
-               docstring filter = formats.prettyName(format);
-               filter += " (*.";
-               // FIXME UNICODE
-               filter += from_utf8(formats.extension(format));
-               filter += ')';
-
-               FileDialog::Result result =
-                       dlg.open(from_utf8(initpath),
-                                    FileFilterList(filter),
-                                    docstring());
-
-               if (result.first == FileDialog::Later)
-                       return;
-
-               filename = to_utf8(result.second);
-
-               // check selected filename
-               if (filename.empty())
-                       lyx_view_->message(_("Canceled."));
-       }
-
-       if (filename.empty())
-               return;
-
-       // get absolute path of file
-       FileName const fullname(makeAbsPath(filename));
-
-       FileName const lyxfile(changeExtension(fullname.absFilename(), ".lyx"));
-
-       // Check if the document already is open
-       Buffer * buf = theBufferList().getBuffer(lyxfile.absFilename());
-       if (use_gui && buf) {
-               lyx_view_->setBuffer(buf);
-               if (!lyx_view_->closeBuffer()) {
-                       lyx_view_->message(_("Canceled."));
-                       return;
-               }
-       }
-
-       // if the file exists already, and we didn't do
-       // -i lyx thefile.lyx, warn
-       if (lyxfile.exists() && fullname != lyxfile) {
-               docstring const file = makeDisplayPath(lyxfile.absFilename(), 30);
-
-               docstring text = bformat(_("The document %1$s already exists.\n\n"
-                                                    "Do you want to overwrite that document?"), file);
-               int const ret = Alert::prompt(_("Overwrite document?"),
-                       text, 0, 1, _("&Overwrite"), _("&Cancel"));
-
-               if (ret == 1) {
-                       lyx_view_->message(_("Canceled."));
-                       return;
-               }
-       }
-
-       ErrorList errorList;
-       import(lyx_view_, fullname, format, errorList);
-       // FIXME (Abdel 12/08/06): Is there a need to display the error list here?
-}
-
-
 void LyXFunc::closeBuffer()
 {
        // goto bookmark to update bookmark pit.
@@ -2061,7 +1807,7 @@ void LyXFunc::reloadBuffer()
        // The user has already confirmed that the changes, if any, should
        // be discarded. So we just release the Buffer and don't call closeBuffer();
        theBufferList().release(lyx_view_->buffer());
-       Buffer * buf = loadAndViewFile(filename);
+       Buffer * buf = lyx_view_->loadDocument(filename);
        docstring const disp_fn = makeDisplayPath(filename.absFilename());
        docstring str;
        if (buf) {
@@ -2167,6 +1913,14 @@ void actOnUpdatedPrefs(LyXRC const & lyxrc_orig, LyXRC const & lyxrc_new)
        case LyXRC::RC_BIBTEX_COMMAND:
        case LyXRC::RC_BINDFILE:
        case LyXRC::RC_CHECKLASTFILES:
+       case LyXRC::RC_COMPLETION_INLINE_DELAY:
+       case LyXRC::RC_COMPLETION_INLINE_MATH:
+       case LyXRC::RC_COMPLETION_INLINE_TEXT:
+       case LyXRC::RC_COMPLETION_INLINE_DOTS:
+       case LyXRC::RC_COMPLETION_POPUP_DELAY:
+       case LyXRC::RC_COMPLETION_POPUP_MATH:
+       case LyXRC::RC_COMPLETION_POPUP_TEXT:
+       case LyXRC::RC_COMPLETION_POPUP_AFTER_COMPLETE:
        case LyXRC::RC_USELASTFILEPOS:
        case LyXRC::RC_LOADSESSION:
        case LyXRC::RC_CHKTEX_COMMAND:
@@ -2206,8 +1960,10 @@ void actOnUpdatedPrefs(LyXRC const & lyxrc_orig, LyXRC const & lyxrc_new)
        case LyXRC::RC_LANGUAGE_GLOBAL_OPTIONS:
        case LyXRC::RC_LANGUAGE_PACKAGE:
        case LyXRC::RC_LANGUAGE_USE_BABEL:
+       case LyXRC::RC_MACRO_EDIT_STYLE:
        case LyXRC::RC_MAKE_BACKUP:
        case LyXRC::RC_MARK_FOREIGN_LANGUAGE:
+       case LyXRC::RC_MOUSE_WHEEL_SPEED:
        case LyXRC::RC_NUMLASTFILES:
        case LyXRC::RC_PATH_PREFIX:
                if (lyxrc_orig.path_prefix != lyxrc_new.path_prefix) {
@@ -2272,6 +2028,12 @@ void actOnUpdatedPrefs(LyXRC const & lyxrc_orig, LyXRC const & lyxrc_new)
        case LyXRC::RC_USE_SPELL_LIB:
        case LyXRC::RC_VIEWDVI_PAPEROPTION:
        case LyXRC::RC_SORT_LAYOUTS:
+       case LyXRC::RC_FULL_SCREEN_LIMIT:
+       case LyXRC::RC_FULL_SCREEN_SCROLLBAR:
+       case LyXRC::RC_FULL_SCREEN_TABBAR:
+       case LyXRC::RC_FULL_SCREEN_TOOLBARS:
+       case LyXRC::RC_FULL_SCREEN_WIDTH:
+       case LyXRC::RC_VISUAL_CURSOR:
        case LyXRC::RC_VIEWER:
        case LyXRC::RC_LAST:
                break;