]> git.lyx.org Git - features.git/blobdiff - src/lyxfunc.C
clear()->erase() ; lots of using directives for cxx
[features.git] / src / lyxfunc.C
index f6c3a19ac212eff85942de09afcf1992924082a2..f287f9b2ace11d30c79434613838f027c288132f 100644 (file)
@@ -50,10 +50,10 @@ using std::istringstream;
 #include "insets/insetinclude.h"
 #include "insets/insetbib.h"
 #include "insets/insettext.h"
-//#include "insets/insetnumber.h"
 #include "insets/insetert.h"
 #include "insets/insetgraphics.h"
 #include "insets/insetfoot.h"
+#include "insets/insettabular.h"
 #include "mathed/formulamacro.h"
 #include "toolbar.h"
 #include "spellchecker.h" // RVDK_PATCH_5
@@ -164,12 +164,12 @@ void LyXFunc::moveCursorUpdate(bool selecting)
        if (selecting || owner->view()->text->mark_set) {
                owner->view()->text->SetSelection();
                owner->view()->toggleToggle();
-               owner->view()->update(0);
-       } else {
-               owner->view()->update(-2); // this IS necessary
+               //owner->view()->update(0);
+               //} else {
+               //owner->view()->update(-2); // this IS necessary
                // (Matthias) 
        }
-
+       owner->view()->update(0);
        owner->view()->showCursor();
        
        /* ---> Everytime the cursor is moved, show the current font state. */
@@ -457,7 +457,7 @@ string LyXFunc::Dispatch(int ac,
         
         // we have not done anything wrong yet.
         errorstat = false;
-       dispatch_buffer.clear();
+       dispatch_buffer.erase();
        
        // if action is a pseudo-action, we need the real action
        if (lyxaction.isPseudoAction(ac)) {
@@ -481,7 +481,7 @@ string LyXFunc::Dispatch(int ac,
        if (getStatus(action) & Disabled)
                goto exit_with_message;
 
-       commandshortcut.clear();
+       commandshortcut.erase();
        
        if (lyxrc.display_shortcuts && show_sc) {
                if (action != LFUN_SELFINSERT) {
@@ -533,6 +533,7 @@ string LyXFunc::Dispatch(int ac,
        // the math inset [asierra060396]
        if (owner->view()->available() &&
            owner->view()->the_locking_inset) {
+               UpdatableInset::RESULT result;
                if (action > 1
                    || (action == LFUN_UNKNOWN_ACTION
                        && keyseq.length >= -1)) {
@@ -574,10 +575,11 @@ string LyXFunc::Dispatch(int ac,
                                if (inset)
                                        inset->Edit(owner->view(),slx,sly,0); 
                                return string();
-                       } else if (owner->view()->the_locking_inset->
+                       } else if (((result=owner->view()->the_locking_inset->
                                   LocalDispatch(owner->view(), action,
-                                                argument) ==
-                                  UpdatableInset::DISPATCHED)
+                                                argument)) ==
+                                  UpdatableInset::DISPATCHED) ||
+                                  (result == UpdatableInset::DISPATCHED_NOUPDATE))
                                return string();
                        else {
                                setMessage(N_("Text mode"));
@@ -605,6 +607,12 @@ string LyXFunc::Dispatch(int ac,
                                                        Set(CurrentState(owner->view()));
                                        }
                                        return string();
+                               case LFUN_DOWN:
+                                       owner->view()->text->CursorDown();
+                                       moveCursorUpdate(false);
+                                       owner->getMiniBuffer()->
+                                               Set(CurrentState(owner->view()));
+                                       return string();
                                default:
                                        break;
                                }
@@ -736,7 +744,7 @@ string LyXFunc::Dispatch(int ac,
                                            MakeDisplayPath(owner->buffer()->fileName()),
                                            "...");
                MenuWrite(owner->buffer());
-               //owner->getMiniBuffer()->
+               //owner->getMiniBuffer()-> {
                //      Set(_("Document saved as"),
                //          MakeDisplayPath(owner->buffer()->fileName()));
                //} else {
@@ -789,30 +797,8 @@ string LyXFunc::Dispatch(int ac,
                break;
 
        case LFUN_IMPORT:
-       {
-               //needs argument as string
-               string imtyp = argument;
-               
-               // latex
-               if (imtyp == "latex") {
-                       doImportLaTeX(false);
-               }
-               // ascii
-               else if (imtyp == "ascii") {
-                       doImportASCII(false);
-               } else if (imtyp == "asciiparagraph") {
-                       doImportASCII(true);
-                       // noweb
-               } else if (imtyp == "noweb") {
-                       doImportLaTeX(true);
-               } else if (imtyp == "linuxdoc") {
-                       doImportLinuxDoc();
-               } else {
-                       setErrorMessage(string(N_("Unknown import type: "))
-                                       + imtyp);
-               }
+               doImport(argument);
                break;
-       }
                
        case LFUN_QUIT:
                QuitLyX();
@@ -940,7 +926,7 @@ string LyXFunc::Dispatch(int ac,
                if (owner->view()->removeAutoInsets()) {
                        owner->view()->redraw();
                        owner->view()->fitCursor();
-                       owner->view()->updateScrollbar();
+                       //owner->view()->updateScrollbar();
                }
                break;
                
@@ -986,6 +972,8 @@ string LyXFunc::Dispatch(int ac,
                
        case LFUN_FREE:
                Free(owner->view());
+               owner->view()->setState();
+               owner->getMiniBuffer()->Set(CurrentState(owner->view()));
                break;
                
        case LFUN_TEX:
@@ -1117,9 +1105,8 @@ string LyXFunc::Dispatch(int ac,
 
                // Pretend we got the name instead.
                Dispatch(int(LFUN_LAYOUT), 
-                        textclasslist.NameOfLayout(owner->view()->
-                                                   text->bparams->
-                                                   textclass,
+                        textclasslist.NameOfLayout(owner->view()
+                                                   ->buffer()->params.textclass,
                                                    sel).c_str());
                return string();
        }
@@ -1132,7 +1119,7 @@ string LyXFunc::Dispatch(int ac,
                // Derive layout number from given argument (string)
                // and current buffer's textclass (number). */    
                LyXTextClassList::ClassList::size_type tclass =
-                       owner->view()->text->bparams->textclass;
+                       owner->view()->buffer()->params.textclass;
                pair <bool, LyXTextClass::size_type> layout = 
                        textclasslist.NumberOfLayout(tclass, argument);
 
@@ -1669,19 +1656,14 @@ string LyXFunc::Dispatch(int ac,
 
                // --- text changing commands ------------------------
        case LFUN_BREAKLINE:
-#if 1
                owner->view()->beforeChange();
                owner->view()->text->InsertChar(LyXParagraph::META_NEWLINE);
-               owner->view()->smallUpdate(1);
+               owner->view()->update(1);
                SetUpdateTimer(0.01);
                moveCursorUpdate(false);
-#else
-               owner->view()->newline();
-#endif
                break;
                
        case LFUN_PROTECTEDSPACE:
-#if 1
        {
                LyXLayout const & style =
                        textclasslist.Style(owner->view()->buffer()->params.textclass,
@@ -1695,15 +1677,7 @@ string LyXFunc::Dispatch(int ac,
                }
                moveCursorUpdate(false);
        }
-#else
-               owner->view()->beforeChange();
-               owner->view()->text->
-                       InsertChar(LyXParagraph::META_PROTECTED_SEPARATOR);
-               owner->view()->smallUpdate(1);
-               SetUpdateTimer();
-                moveCursorUpdate(false);
-#endif
-               break;
+       break;
                
        case LFUN_SETMARK:
                if(owner->view()->text->mark_set) {
@@ -1726,7 +1700,7 @@ string LyXFunc::Dispatch(int ac,
                        owner->view()->text->Delete();
                        owner->view()->text->sel_cursor = 
                                owner->view()->text->cursor;
-                       owner->view()->smallUpdate(1);
+                       owner->view()->update(1);
                        // It is possible to make it a lot faster still
                        // just comment out the lone below...
                        owner->view()->showCursor();
@@ -1769,13 +1743,13 @@ string LyXFunc::Dispatch(int ac,
                                        owner->view()->text->Delete();
                                        owner->view()->text->sel_cursor = 
                                                owner->view()->text->cursor;
-                                       owner->view()->smallUpdate(1);
+                                       owner->view()->update(1);
                                }
                        } else {
                                owner->view()->text->Delete();
                                owner->view()->text->sel_cursor = 
                                        owner->view()->text->cursor;
-                               owner->view()->smallUpdate(1);
+                               owner->view()->update(1);
                        }
                } else {
                        owner->view()->cut();
@@ -1843,7 +1817,7 @@ string LyXFunc::Dispatch(int ac,
                                owner->view()->text->Backspace();
                                owner->view()->text->sel_cursor = 
                                        owner->view()->text->cursor;
-                               owner->view()->smallUpdate(1);
+                               owner->view()->update(1);
                                // It is possible to make it a lot faster still
                                // just comment out the lone below...
                                owner->view()->showCursor();
@@ -1881,7 +1855,7 @@ string LyXFunc::Dispatch(int ac,
                                owner->view()->text->Backspace();
                                owner->view()->text->sel_cursor 
                                        = cursor;
-                               owner->view()->smallUpdate (1);
+                               owner->view()->update(1);
                        }
                } else
                        owner->view()->cut();
@@ -1893,7 +1867,7 @@ string LyXFunc::Dispatch(int ac,
        {
                owner->view()->beforeChange();
                owner->view()->text->BreakParagraph(0);
-               owner->view()->smallUpdate(1);
+               owner->view()->update(1);
                SetUpdateTimer(0.01);
                owner->view()->text->sel_cursor = 
                        owner->view()->text->cursor;
@@ -1906,7 +1880,7 @@ string LyXFunc::Dispatch(int ac,
        {
                owner->view()->beforeChange();
                owner->view()->text->BreakParagraph(1);
-               owner->view()->smallUpdate(1);
+               owner->view()->update(1);
                SetUpdateTimer(0.01);
                owner->view()->text->sel_cursor = 
                        owner->view()->text->cursor;
@@ -1939,7 +1913,7 @@ string LyXFunc::Dispatch(int ac,
                }
                else {
                        owner->view()->text->BreakParagraph(0);
-                       owner->view()->smallUpdate(1);
+                       owner->view()->update(1);
                }
                SetUpdateTimer(0.01);
                owner->view()->text->sel_cursor = cursor;
@@ -1999,7 +1973,7 @@ string LyXFunc::Dispatch(int ac,
        case LFUN_QUOTE:
                owner->view()->beforeChange();
                owner->view()->text->InsertChar('\"');  // This " matches the single quote in the code
-               owner->view()->smallUpdate(1);
+               owner->view()->update(1);
                SetUpdateTimer();
                 moveCursorUpdate(false);
                break;
@@ -2024,15 +1998,6 @@ string LyXFunc::Dispatch(int ac,
                new_inset->Edit(owner->view(), 0, 0, 0);
        }
        break;
-#if 0
-       case LFUN_INSET_NUMBER:
-       {
-               InsetNumber * new_inset = new InsetNumber(owner->buffer());
-               owner->view()->insertInset(new_inset);
-               new_inset->Edit(owner->view(), 0, 0, 0);
-       }
-       break;
-#endif
        case LFUN_INSET_ERT:
        {
                InsetERT * new_inset = new InsetERT(owner->buffer());
@@ -2049,6 +2014,17 @@ string LyXFunc::Dispatch(int ac,
        }
        break;
 
+       case LFUN_INSET_TABULAR:
+       {
+               int r = 2, c = 2;
+               if (!argument.empty())
+                       sscanf(argument.c_str(),"%d%d",&r,&c);
+               InsetTabular * new_inset = new InsetTabular(owner->buffer(),r,c);
+               owner->view()->insertInset(new_inset);
+               new_inset->Edit(owner->view(), 0, 0, 0);
+       }
+       break;
+
        // --- lyxserver commands ----------------------------
 
        case LFUN_CHARATCURSOR:
@@ -2176,12 +2152,10 @@ string LyXFunc::Dispatch(int ac,
        case LFUN_CIRCLE:
        case LFUN_OGONEK:
        {
-               char c;
+               char c = 0;
                
                if (keyseq.length == -1 && keyseq.getiso() != 0) 
                        c = keyseq.getiso();
-               else
-                       c = 0;
                
                owner->getIntl()->getTrans()->
                        deadkey(c, get_accent(action).accent, 
@@ -2193,7 +2167,8 @@ string LyXFunc::Dispatch(int ac,
                keyseq.length = 0;
                
                // copied verbatim from do_accent_char
-               owner->view()->smallUpdate(1);
+               owner->view()->update(1);
+
                SetUpdateTimer();
                owner->view()->text->sel_cursor = 
                        owner->view()->text->cursor;
@@ -2547,7 +2522,7 @@ string LyXFunc::Dispatch(int ac,
                        owner->view()->text->InsertChar(argument[i]);
                        // This needs to be in the loop, or else we
                        // won't break lines correctly. (Asger)
-                       owner->view()->smallUpdate(1);
+                       owner->view()->update(1);
                }
                SetUpdateTimer();
                owner->view()->text->sel_cursor = 
@@ -2585,7 +2560,7 @@ string LyXFunc::Dispatch(int ac,
                datetmp_len = (int) strftime(datetmp, 32, arg.c_str(), now_tm);
                for (int i = 0; i < datetmp_len; i++) {
                        owner->view()->text->InsertChar(datetmp[i]);
-                       owner->view()->smallUpdate(1);
+                       owner->view()->update(1);
                }
                SetUpdateTimer();
                owner->view()->text->sel_cursor = owner->view()->text->cursor;
@@ -2630,20 +2605,6 @@ string LyXFunc::Dispatch(int ac,
                        }
                        
                        owner->view()->beforeChange();
-
-#if 0
-                       if (isdigit(argument[0]) &&
-                           (lyxrc.number_inset == "true" ||
-                            (lyxrc.number_inset == "rtl" &&
-                             owner->view()->text->real_current_font.isVisibleRightToLeft() 
-                             ))) {
-                               UpdatableInset * tmpinset = new InsetNumber(owner->buffer());
-                               owner->view()->open_new_inset(tmpinset);
-                               tmpinset->LocalDispatch(owner->view(), action,
-                                                       argument);
-                               return string();
-                       }
-#endif
                        
                        for (string::size_type i = 0;
                             i < argument.length(); ++i) {
@@ -2653,8 +2614,8 @@ string LyXFunc::Dispatch(int ac,
                                } else
                                        owner->getIntl()->getTrans()->TranslateAndInsert(argument[i], owner->view()->text);
                        }
-                       
-                       owner->view()->smallUpdate(1);
+
+                       owner->view()->update(1);
                        SetUpdateTimer();
 
                        owner->view()->text->sel_cursor = 
@@ -2840,53 +2801,66 @@ void LyXFunc::MenuOpen()
        }
 }
 
+// returns filename if file must be imported,
+// empty string if either file not found or already loaded
+// checks for running without gui are missing.
 
-void LyXFunc::doImportASCII(bool linorpar)
+void LyXFunc::doImportHelper(
+       string const & file,          // filename (possibly empty)
+       string const & text,          // info when asking for filename
+       string const & pattern,       // filetype
+       bool func(BufferView *, string const &)     // the real import function
+)
 {
-       string initpath = lyxrc.document_path;
-       LyXFileDlg fileDlg;
-  
-       if (owner->view()->available()) {
-               string trypath = owner->buffer()->filepath;
-               // If directory is writeable, use this as default.
-               if (IsDirWriteable(trypath) == 1)
-                       initpath = trypath;
-       }
+       string filename = file;
 
-       // launches dialog
-       ProhibitInput(owner->view());
-       fileDlg.SetButton(0, _("Documents"), lyxrc.document_path);
-       fileDlg.SetButton(1, _("Examples"), 
-                         AddPath(system_lyxdir, "examples"));
-       string filename = fileDlg.Select(_("Select ASCII file to Import"),
-                                        initpath, "*.txt");
-       AllowInput(owner->view());
+       if (filename.empty()) { // need user interaction
+               string initpath = lyxrc.document_path;
+               LyXFileDlg fileDlg;
+               
+               if (owner->view()->available()) {
+                       string trypath = owner->buffer()->filepath;
+                       // If directory is writeable, use this as default.
+                       if (IsDirWriteable(trypath) == 1)
+                               initpath = trypath;
+               }
+
+               // launches dialog
+               ProhibitInput(owner->view());
+               fileDlg.SetButton(0, _("Documents"), lyxrc.document_path);
+               fileDlg.SetButton(1, _("Examples"), 
+                                       AddPath(system_lyxdir, "examples"));
+               filename = fileDlg.Select(text, initpath, pattern);
+               AllowInput(owner->view());
  
-       // check selected filename
-       if (filename.empty()) {
-               owner->getMiniBuffer()->Set(_("Canceled."));
-               return;
+               // check selected filename
+               if (filename.empty()) 
+                       owner->getMiniBuffer()->Set(_("Canceled."));
        }
 
+       // still no filename? abort
+       if (filename.empty()) 
+               return;
+
        // get absolute path of file
        filename = MakeAbsPath(filename);
 
-       string s = ChangeExtension(filename, ".lyx", false);
+       string lyxfile = ChangeExtension(filename, ".lyx", false);
 
        // Check if the document already is open
-       if (bufferlist.exists(s)) {
+       if (bufferlist.exists(lyxfile)) {
                switch(AskConfirmation(_("Document is already open:"), 
-                                      MakeDisplayPath(s, 50),
+                                      MakeDisplayPath(lyxfile, 50),
                                       _("Do you want to close that document now?\n"
                                         "('No' will just switch to the open version)")))
                        {
                        case 1: // Yes: close the document
-                               if (!bufferlist.close(bufferlist.getBuffer(s)))
+                               if (!bufferlist.close(bufferlist.getBuffer(lyxfile)))
                                // If close is canceled, we cancel here too.
                                        return;
                                break;
                        case 2: // No: switch to the open document
-                               owner->view()->buffer(bufferlist.getBuffer(s));
+                               owner->view()->buffer(bufferlist.getBuffer(lyxfile));
                                return;
                        case 3: // Cancel: Do nothing
                                owner->getMiniBuffer()->Set(_("Canceled."));
@@ -2895,193 +2869,66 @@ void LyXFunc::doImportASCII(bool linorpar)
        }
 
        // Check if a LyX document by the same root exists in filesystem
-       FileInfo f(s, true);
+       FileInfo f(lyxfile, true);
        if (f.exist() && !AskQuestion(_("A document by the name"), 
-                                     MakeDisplayPath(s),
+                                     MakeDisplayPath(lyxfile),
                                      _("already exists. Overwrite?"))) {
                owner->getMiniBuffer()->Set(_("Canceled."));
                return;
        }
+       // filename should be valid now
 
-       owner->view()->buffer(bufferlist.newFile(s, string()));
-       owner->getMiniBuffer()->Set(_("Importing ASCII file"),
-                                   MakeDisplayPath(filename), "...");
-       // Insert ASCII file
-       InsertAsciiFile(owner->view(), filename, linorpar);
-       owner->getMiniBuffer()->Set(_("ASCII file "),
-                                   MakeDisplayPath(filename),
-                                   _("imported."));
-}
-
+       // notify user of import ahead
+       string displaypath = MakeDisplayPath(filename);
+       owner->view()->buffer(bufferlist.newFile(lyxfile, string()));
+       owner->getMiniBuffer()->Set(_("Importing"), displaypath, "...");
 
-void LyXFunc::doImportLaTeX(bool isnoweb)
-{
-       string initpath = lyxrc.document_path;
-       LyXFileDlg fileDlg;
-  
-       if (owner->view()->available()) {
-               string trypath = owner->buffer()->filepath;
-               // If directory is writeable, use this as default.
-               if (IsDirWriteable(trypath) == 1)
-                       initpath = trypath;
-       }
+       // call real importer
+       bool result = func(owner->view(), filename);
 
-       // launches dialog
-       ProhibitInput(owner->view());
-       fileDlg.SetButton(0, _("Documents"), lyxrc.document_path);
-       fileDlg.SetButton(1, _("Examples"), 
-                         AddPath(system_lyxdir, "examples"));
-       string filename;
-       if (isnoweb) {
-               filename = fileDlg.Select(_("Select Noweb file to Import"),
-                                         initpath, "*.nw");
-       } else {
-               filename = fileDlg.Select(_("Select LaTeX file to Import"),
-                                         initpath, "*.tex");
-       }
-       
-       AllowInput(owner->view());
-       // check selected filename
-       if (filename.empty()) {
-               owner->getMiniBuffer()->Set(_("Canceled."));
-               return;
-       }
-
-       // get absolute path of file
-       filename = MakeAbsPath(filename);
-
-       // Check if the document already is open
-       string LyXfilename = ChangeExtension(filename, ".lyx", false);
-       if (bufferlist.exists(LyXfilename)){
-               switch(AskConfirmation(_("Document is already open:"), 
-                                      MakeDisplayPath(LyXfilename, 50),
-                                      _("Do you want to close that document now?\n"
-                                        "('No' will just switch to the open version)")))
-                       {
-                       case 1: // Yes: close the document
-                               if (!bufferlist.close(bufferlist.getBuffer(LyXfilename)))
-                               // If close is canceled, we cancel here too.
-                                       return;
-                               break;
-                       case 2: // No: switch to the open document
-                               owner->view()->buffer(
-                                       bufferlist.getBuffer(LyXfilename));
-                               return;
-                       case 3: // Cancel: Do nothing
-                               owner->getMiniBuffer()->Set(_("Canceled."));
-                               return;
-                       }
-       }
-
-       // Check if a LyX document by the same root exists in filesystem
-       FileInfo f(LyXfilename, true);
-       if (f.exist() && !AskQuestion(_("A document by the name"), 
-                                     MakeDisplayPath(LyXfilename),
-                                     _("already exists. Overwrite?"))) {
-               owner->getMiniBuffer()->Set(_("Canceled."));
-               return;
-       }
-
-       // loads document
-       Buffer * openbuf;
-       if (!isnoweb) {
-               owner->getMiniBuffer()->Set(_("Importing LaTeX file"),
-                                           MakeDisplayPath(filename), "...");
-               ImportLaTeX myImport(filename);
-               openbuf = myImport.run();
-       } else {
-               owner->getMiniBuffer()->Set(_("Importing Noweb file"),
-                                           MakeDisplayPath(filename), "...");
-               ImportNoweb myImport(filename);
-               openbuf = myImport.run();
-       }
-       if (openbuf) {
-               owner->view()->buffer(openbuf);
-               owner->getMiniBuffer()->Set(isnoweb ?
-                                           _("Noweb file ") : _("LateX file "),
-                                           MakeDisplayPath(filename),
-                                           _("imported."));
-       } else {
-               owner->getMiniBuffer()->Set(isnoweb ?
-                                           _("Could not import Noweb file") :
-                                           _("Could not import LaTeX file"),
-                                           MakeDisplayPath(filename));
-       }
+       // we are done
+       if (result)
+               owner->getMiniBuffer()->Set(displaypath, _("imported."));
+       else
+               owner->getMiniBuffer()->Set(displaypath, _(": import failed."));
 }
 
-
-void LyXFunc::doImportLinuxDoc()
+static
+bool doImportASCIIasLines(BufferView * view, string const & filename)
 {
-       string initpath = lyxrc.document_path;
-       LyXFileDlg fileDlg;
-  
-       if (owner->view()->available()) {
-               string trypath = owner->buffer()->filepath;
-               // If directory is writeable, use this as default.
-               if (IsDirWriteable(trypath) == 1)
-                       initpath = trypath;
-       }
-
-       // launches dialog
-       ProhibitInput(owner->view());
-       fileDlg.SetButton(0, _("Documents"), lyxrc.document_path);
-       fileDlg.SetButton(1, _("Examples"), 
-                         AddPath(system_lyxdir, "examples"));
-
-       string filename = fileDlg.Select(_("Select LinuxDoc file to Import"),
-                                         initpath, "*.sgml");
-       
-       AllowInput(owner->view());
-       // check selected filename
-       if (filename.empty()) {
-               owner->getMiniBuffer()->Set(_("Canceled."));
-               return;
-       }
-
-       // get absolute path of file
-       filename = MakeAbsPath(filename);
+       InsertAsciiFile(view, filename, false);
+       return true;
+}
 
-       // Check if the document already is open
-       string LyXfilename = ChangeExtension(filename, ".lyx", false);
-       if (bufferlist.exists(LyXfilename)){
-               switch(AskConfirmation(_("Document is already open:"), 
-                                      MakeDisplayPath(LyXfilename, 50),
-                                      _("Do you want to close that document now?\n"
-                                        "('No' will just switch to the open version)")))
-                       {
-                       case 1: // Yes: close the document
-                               if (!bufferlist.close(bufferlist.getBuffer(LyXfilename)))
-                               // If close is canceled, we cancel here too.
-                                       return;
-                               break;
-                       case 2: // No: switch to the open document
-                               owner->view()->buffer(
-                                       bufferlist.getBuffer(LyXfilename));
-                               return;
-                       case 3: // Cancel: Do nothing
-                               owner->getMiniBuffer()->Set(_("Canceled."));
-                               return;
-                       }
-       }
+static
+bool doImportASCIIasParagraphs(BufferView * view, string const & filename)
+{
+       InsertAsciiFile(view, filename, true);
+       return true;
+}
 
-       // Check if a LyX document by the same root exists in filesystem
-       FileInfo f(LyXfilename, true);
-       if (f.exist() && !AskQuestion(_("A document by the name"), 
-                                     MakeDisplayPath(LyXfilename),
-                                     _("already exists. Overwrite?"))) {
-               owner->getMiniBuffer()->Set(_("Canceled."));
-               return;
-       }
+static
+bool doImportLaTeX(BufferView *, string const & filename)
+{
+       ImportLaTeX myImport(filename);
+       Buffer * openbuf = myImport.run();
+       return openbuf != NULL;         
+}
 
-       // loads document
-       owner->getMiniBuffer()->Set(_("Importing LinuxDoc file"),
-                                   MakeDisplayPath(filename), "...");
+static
+bool doImportNoweb(BufferView *, string const & filename)
+{
+       ImportNoweb myImport(filename);
+       Buffer * openbuf = myImport.run();
+       return openbuf != NULL;         
+}
 
+static
+bool doImportLinuxDoc(BufferView *, string const & filename)
+{
        // run sgml2lyx
        string tmp = lyxrc.linuxdoc_to_lyx_command + filename;
-        Systemcalls one;
+       Systemcalls one;
        Buffer * buf = 0;
 
        int result = one.startscript(Systemcalls::System, tmp);
@@ -3089,14 +2936,9 @@ void LyXFunc::doImportLinuxDoc()
                string filename = ChangeExtension(filename, ".lyx", false);
                // File was generated without problems. Load it.
                buf = bufferlist.loadLyXFile(filename);
-               owner->view()->buffer(buf);
-               owner->getMiniBuffer()->Set(_("LinuxDoc file "),
-                                           MakeDisplayPath(filename),
-                                           _("imported."));
-       } else {
-               owner->getMiniBuffer()->Set(_("Could not import LinuxDoc file"),
-                                           MakeDisplayPath(filename));
        }
+
+       return result == 0;
 }
 
 
@@ -3152,6 +2994,36 @@ void LyXFunc::MenuInsertLyXFile(string const & filen)
        }
 }
 
+void LyXFunc::doImport(string const & argument)
+{
+       string type;
+       string filename = split(argument, type, ' ');
+       lyxerr.debug() << "LyXFunc::doImport: " << type 
+                      << " file: " << filename << endl;
+
+       if (type == "latex") 
+               doImportHelper(filename,
+                              _("Select LaTeX file to import"), "*.tex", 
+                              doImportLaTeX);
+       else if (type == "ascii") 
+               doImportHelper(filename,
+                              _("Select ASCII file to import"), "*.txt", 
+                              doImportASCIIasLines);
+       else if (type == "asciiparagraph") 
+               doImportHelper(filename,
+                              _("Select ASCII file to import"), "*.txt", 
+                              doImportASCIIasParagraphs);
+       else if (type == "noweb") 
+               doImportHelper(filename,
+                              _("Select NoWeb file to import"), "*.nw", 
+                              doImportNoweb);
+       else if (type == "linuxdoc") 
+               doImportHelper(filename,
+                              _("Select LinuxDoc file to import"), "*.doc", 
+                              doImportLinuxDoc);
+       else 
+               setErrorMessage(string(N_("Unknown import type: ")) + type);
+}
 
 void LyXFunc::reloadBuffer()
 {