]> git.lyx.org Git - lyx.git/blobdiff - src/lyxfunc.C
Fixed disabled Table-Menu entries, renamed table-insert to dialog-tabular-insert
[lyx.git] / src / lyxfunc.C
index b44d7e6cc98cd80cdbd4efd1589636f6e7c172f6..32984cbd0cdc32ecb79af364fefa975bf299ef4c 100644 (file)
@@ -4,12 +4,22 @@
  *           LyX, The Document Processor
  *      
  *         Copyright 1995 Matthias Ettrich
- *          Copyright 1995-1999 The LyX Team.
+ *          Copyright 1995-2000 The LyX Team.
  *
  * ====================================================== */
 
 #include <config.h>
 
+#ifdef HAVE_SSTREAM
+#include <sstream>
+using std::istringstream;
+#else
+#include <strstream>
+#endif
+
+#include <time.h>
+#include <locale.h>
+
 #include <cstdlib>
 #include <cctype>
 #include <cstring>
 #pragma implementation
 #endif
 
+#include "version.h"
 #include "lyxlookup.h"
 #include "kbmap.h"
 #include "lyxfunc.h"
 #include "bufferlist.h"
+#include "ColorHandler.h"
 #include "lyxserver.h"
 #include "lyx.h"
 #include "intl.h"
 #include "lyx_main.h"
 #include "lyx_cb.h"
 #include "LyXAction.h"
-#if 0
-#include "insets/insetlatex.h"
-#endif
 #include "insets/inseturl.h"
 #include "insets/insetlatexaccent.h"
 #include "insets/insettoc.h"
-#include "insets/insetlof.h"
-#include "insets/insetloa.h"
-#include "insets/insetlot.h"
 #include "insets/insetref.h"
 #include "insets/insetparent.h"
 #include "insets/insetindex.h"
 #include "insets/insetinclude.h"
 #include "insets/insetbib.h"
+#include "insets/insetcite.h"
+#include "insets/insettext.h"
+#include "insets/insetert.h"
+#include "insets/insetexternal.h"
+#include "insets/insetgraphics.h"
+#include "insets/insetfoot.h"
+#include "insets/insetmarginal.h"
+#include "insets/insetminipage.h"
+#include "insets/insetfloat.h"
+#include "insets/insetlist.h"
+#include "insets/insettabular.h"
+#include "insets/insettheorem.h"
+#include "insets/insetcaption.h"
 #include "mathed/formulamacro.h"
-#include "toolbar.h"
 #include "spellchecker.h" // RVDK_PATCH_5
 #include "minibuffer.h"
 #include "vspace.h"
@@ -55,7 +73,6 @@
 #include "support/syscall.h"
 #include "support/lstrings.h"
 #include "support/path.h"
-#include "lyxscreen.h"
 #include "debug.h"
 #include "lyxrc.h"
 #include "lyxtext.h"
 #include "ImportLaTeX.h"
 #include "ImportNoweb.h"
 #include "layout.h"
+#include "WorkArea.h"
+#include "lyxfr1.h"
+#include "bufferview_funcs.h"
+#include "frontends/Dialogs.h"
+#include "frontends/Toolbar.h"
+#ifdef NEW_MENUBAR
+#include "frontends/Menubar.h"
+#else
+#include "menus.h"
+#endif
+#include "FloatList.h"
+#include "FontLoader.h"
+#include "TextCache.h"
+
+using std::pair;
+using std::endl;
 
 extern bool cursor_follows_scrollbar;
 
-extern void InsertAsciiFile(string const &, bool);
+extern void InsertAsciiFile(BufferView *, string const &, bool);
 extern void math_insert_symbol(char const *);
-extern Bool math_insert_greek(char const); // why "Bool"?
+extern bool math_insert_greek(char);
 extern BufferList bufferlist;
 extern LyXServer * lyxserver;
-extern short greek_kb_flag;
-extern FD_form_toc * fd_form_toc;
+extern int greek_kb_flag;
 extern bool selection_possible;
 
 extern kb_keymap * toplevel_keymap;
 
-extern void MenuWrite(Buffer *);
-extern void MenuWriteAs(Buffer *);
+extern bool MenuWrite(Buffer *);
+extern bool MenuWriteAs(Buffer *);
 extern int  MenuRunLaTeX(Buffer *);
 extern int  MenuBuildProg(Buffer *);
 extern int  MenuRunChktex(Buffer *);
-extern bool MenuRunDvips(Buffer *, bool);
+extern bool CreatePostscript(Buffer *, bool);
 extern void MenuPrint(Buffer *);
 extern void MenuSendto();
 extern void QuitLyX();
 extern void MenuFax(Buffer *);
 extern void MenuExport(Buffer *, string const &);
-extern void MenuPasteSelection(char at);
+extern void show_symbols_form(LyXFunc *);
+
 extern LyXAction lyxaction;
 // (alkis)
 extern tex_accent_struct get_accent(kb_action action);
 
-extern void AutoSave();
-extern void MenuSearch();
-extern void SetUpdateTimer(float timer = 0.3);
-extern void FreeUpdateTimer();
-extern bool MenuPreview(Buffer *);
-extern bool MenuPreviewPS(Buffer *);
+extern void AutoSave(BufferView *);
+extern bool PreviewDVI(Buffer *);
+extern bool PreviewPostscript(Buffer *);
 extern void MenuInsertLabel(char const *);
-extern void MenuInsertRef();
 extern void MenuLayoutCharacter();
 extern void MenuLayoutParagraph();
 extern void MenuLayoutDocument();
@@ -114,17 +143,13 @@ extern void bulletForm();
 
 extern Buffer * NewLyxFile(string const &);
 extern void LoadLyXFile(string const &);
-extern void Reconfigure();
+extern void Reconfigure(BufferView *);
 
-extern int current_layout;
+extern LyXTextClass::size_type current_layout;
 extern int getISOCodeFromLaTeX(char *);
 
-//extern int UnlockInset(UpdatableInset *);
-
 extern void ShowLatexLog();
 
-extern void UpdateInset(Inset * inset, bool mark_dirty = true);
-
 /* === globals =========================================================== */
 
 bool LyXFunc::show_sc = true;
@@ -150,40 +175,160 @@ void LyXFunc::moveCursorUpdate(bool selecting)
 {
        if (selecting || owner->view()->text->mark_set) {
                owner->view()->text->SetSelection();
-               owner->view()->getScreen()->ToggleToggle();
-               owner->view()->update(0);
-       } else {
-               owner->view()->update(-2); // this IS necessary
-               // (Matthias) 
+               owner->view()->toggleToggle();
        }
-
-       owner->view()->getScreen()->ShowCursor();
+       owner->view()->update(BufferView::SELECT|BufferView::FITCUR);
+       owner->view()->showCursor();
        
        /* ---> Everytime the cursor is moved, show the current font state. */
        // should this too me moved out of this func?
-       //owner->getMiniBuffer()->Set(CurrentState());
+       //owner->showState();
+       owner->view()->setState();
 }
 
 
+int LyXFunc::processKeySym(KeySym keysym, unsigned int state) 
+{
+       string argument;
+       
+       if (lyxerr.debugging(Debug::KEY)) {
+               char * tmp = XKeysymToString(keysym);
+               string stm = (tmp ? tmp : "");
+               lyxerr << "KeySym is "
+                      << stm
+                      << "["
+                      << keysym << "]"
+                      << endl;
+       }
+       // Do nothing if we have nothing (JMarc)
+       if (keysym == NoSymbol) {
+               lyxerr[Debug::KEY] << "Empty kbd action (probably composing)"
+                                  << endl;
+               //return 0;
+               return FL_PREEMPT;
+       }
+       
+       // this function should be used always [asierra060396]
+       UpdatableInset * tli = owner->view()->the_locking_inset;
+       if (owner->view()->available() && tli && (keysym == XK_Escape)) {
+               if (tli == tli->GetLockingInset()) {
+                       owner->view()->unlockInset(tli);
+                       owner->view()->text->CursorRight(owner->view());
+                       moveCursorUpdate(false);
+                       owner->showState();
+               } else {
+                       tli->UnlockInsetInInset(owner->view(),
+                                               tli->GetLockingInset(),true);
+               }
+               //return 0;
+               return FL_PREEMPT;
+       }
+
+       // Can we be sure that this will work for all X-Windows
+       // implementations? (Lgb)
+       // This code snippet makes lyx ignore some keys. Perhaps
+       // all of them should be explictly mentioned?
+       if((keysym >= XK_Shift_L && keysym <= XK_Hyper_R)
+          || keysym == XK_Mode_switch || keysym == 0x0)
+               return 0;
+
+       // Do a one-deep top-level lookup for
+       // cancel and meta-fake keys. RVDK_PATCH_5
+       cancel_meta_seq.reset();
+
+       int action = cancel_meta_seq.addkey(keysym, state
+                                           &(ShiftMask|ControlMask
+                                             |Mod1Mask)); 
+
+       // When not cancel or meta-fake, do the normal lookup. 
+       // Note how the meta_fake Mod1 bit is OR-ed in and reset afterwards.
+       // Mostly, meta_fake_bit = 0. RVDK_PATCH_5.
+       if ( (action != LFUN_CANCEL) && (action != LFUN_META_FAKE) ) {
+
+               // remove Caps Lock and Mod2 as a modifiers
+               action = keyseq.addkey(keysym,
+                                      (state | meta_fake_bit)
+                                      &(ShiftMask|ControlMask
+                                        |Mod1Mask));      
+       }
+       // Dont remove this unless you know what you are doing.
+       meta_fake_bit = 0;
+               
+       if (action == 0) action = LFUN_PREFIX;
+
+       if (lyxerr.debugging(Debug::KEY)) {
+               string buf;
+               keyseq.print(buf);
+               lyxerr << "Key ["
+                      << action << "]["
+                      << buf << "]"
+                      << endl;
+       }
+
+       // already here we know if it any point in going further
+       // why not return already here if action == -1 and
+       // num_bytes == 0? (Lgb)
+
+       if(keyseq.length > 1 || keyseq.length < -1) {
+               string buf;
+               keyseq.print(buf);
+               owner->getMiniBuffer()->Set(buf);
+       }
+
+       if (action == -1) {
+               if (keyseq.length < -1) { // unknown key sequence...
+                       string buf;
+                       LyXBell();
+                       keyseq.print(buf);
+                       owner->getMiniBuffer()->Set(_("Unknown sequence:"), buf);
+                       return 0;
+               }
+       
+               char isochar = keyseq.getiso();
+               if (!(state & ControlMask) &&
+                   !(state & Mod1Mask) &&
+                   (isochar && keysym < 0xF000)) {
+                       argument += isochar;
+               }
+               if (argument.empty()) {
+                       lyxerr.debug() << "Empty argument!" << endl;
+                       // This can`t possibly be of any use
+                       // so we`ll skip the dispatch.
+                       return 0;
+               }
+       }
+
+        bool tmp_sc = show_sc;
+       show_sc = false;
+       Dispatch(action, argument.c_str());
+       show_sc = tmp_sc;
+       
+       return 0;
+} 
+
+
+#if 0
 int LyXFunc::processKeyEvent(XEvent * ev)
 {
        char s_r[10];
-       s_r[9] = '\0';
+       KeySym keysym_return = 0;
        string argument;
        XKeyEvent * keyevent = &ev->xkey;
-       KeySym keysym_return;
-
        int num_bytes = LyXLookupString(ev, s_r, 10, &keysym_return);
+       s_r[num_bytes] = '\0';
 
        if (lyxerr.debugging(Debug::KEY)) {
+               char * tmp = XKeysymToString(keysym_return);
+               string stm = (tmp ? tmp : "");
                lyxerr << "KeySym is "
-                      << XKeysymToString(keysym_return)
+                      << stm
                       << "["
                       << keysym_return << "]"
                       << " and num_bytes is "
                       << num_bytes
                       << " the string returned is \""
-                      << s_r << '\"' << endl;
+                      << s_r << '\"'
+                      << endl;
        }
        // Do nothing if we have nothing (JMarc)
        if (num_bytes == 0 && keysym_return == NoSymbol) {
@@ -193,11 +338,17 @@ int LyXFunc::processKeyEvent(XEvent * ev)
        }
        
        // this function should be used always [asierra060396]
-       if (owner->view()->available() &&
-           owner->view()->the_locking_inset &&
-           keysym_return == XK_Escape) {
-               owner->view()->unlockInset(owner->view()->the_locking_inset);
-               owner->view()->text->CursorRight();
+       UpdatableInset * tli = owner->view()->the_locking_inset;
+       if (owner->view()->available() && tli && (keysym_return==XK_Escape)) {
+               if (tli == tli->GetLockingInset()) {
+                       owner->view()->unlockInset(tli);
+                       owner->view()->text->CursorRight(owner->view());
+                       moveCursorUpdate(false);
+                       owner->showState();
+               } else {
+                       tli->UnlockInsetInInset(owner->view(),
+                                               tli->GetLockingInset(),true);
+               }
                return 0;
        }
 
@@ -238,15 +389,17 @@ int LyXFunc::processKeyEvent(XEvent * ev)
                keyseq.print(buf);
                lyxerr << "Key ["
                       << action << "]["
-                      << buf << "]["
-                      << num_bytes << "]" << endl;
+                      << buf << "]"
+                      << "["
+                      << num_bytes << "]"
+                      << endl;
        }
 
        // already here we know if it any point in going further
        // why not return already here if action == -1 and
        // num_bytes == 0? (Lgb)
 
-       if(keyseq.length > 1 || keyseq.length < -1){
+       if(keyseq.length > 1 || keyseq.length < -1) {
                string buf;
                keyseq.print(buf);
                owner->getMiniBuffer()->Set(buf);
@@ -273,11 +426,12 @@ int LyXFunc::processKeyEvent(XEvent * ev)
                        // so we`ll skip the dispatch.
                        return 0;
                }
-       } else
+       }
+       else
                if (action == LFUN_SELFINSERT) {
                        argument = s_r[0];
                }
-    
+
         bool tmp_sc = show_sc;
        show_sc = false;
        Dispatch(action, argument.c_str());
@@ -285,6 +439,7 @@ int LyXFunc::processKeyEvent(XEvent * ev)
        
        return 0;
 } 
+#endif
 
 
 LyXFunc::func_status LyXFunc::getStatus(int ac) const
@@ -296,13 +451,13 @@ LyXFunc::func_status LyXFunc::getStatus(int ac) const
        
        if (lyxaction.isPseudoAction(ac)) 
                action = lyxaction.retrieveActionArg(ac, argument);
-       else 
+       else
                action = static_cast<kb_action>(ac);
        
        if (action == LFUN_UNKNOWN_ACTION) {
                setErrorMessage(N_("Unknown action"));
                return LyXFunc::Unknown;
-       } 
+       }
        
        // Check whether we need a buffer
        if (!lyxaction.funcHasFlag(action, LyXAction::NoBuffer)) {
@@ -322,42 +477,55 @@ LyXFunc::func_status LyXFunc::getStatus(int ac) const
                        setErrorMessage(N_("Command not allowed with"
                                           "out any document open"));
                        flag |= LyXFunc::Disabled;
+                       return flag;
                }
        }
 
-       if (flag & LyXFunc::Disabled)
-               return flag;
-
        // I would really like to avoid having this switch and rather try to
        // encode this in the function itself.
-        static bool noLaTeX = lyxrc->latex_command == "none";
+        static bool noLaTeX = lyxrc.latex_command == "none";
         bool disable = false;
         switch (action) {
        case LFUN_PREVIEW:
-               disable = noLaTeX || lyxrc->view_dvi_command == "none";
-               break;  
-       case LFUN_PREVIEWPS: 
-               disable = noLaTeX || lyxrc->view_ps_command == "none";
+               disable = noLaTeX || lyxrc.view_dvi_command == "none";
+               break;
+       case LFUN_PREVIEWPS:
+               disable = noLaTeX || lyxrc.view_ps_command == "none";
                break;
        case LFUN_RUNLATEX:
        case LFUN_RUNDVIPS:
                disable = noLaTeX;
                break;
        case LFUN_MENUPRINT:
-               disable = noLaTeX || lyxrc->print_command == "none";
+               disable = noLaTeX || lyxrc.print_command == "none";
                break;
        case LFUN_FAX:
-               disable = noLaTeX || lyxrc->fax_command == "none"; 
+               disable = noLaTeX || lyxrc.fax_command == "none";
                break;
        case LFUN_IMPORT:
-               if (argument == "latex")
-                       disable = lyxrc->relyx_command == "none";
+               if (argument == "latex" || argument == "noweb")
+                       disable = lyxrc.relyx_command == "none";
+               else if (argument == "linuxdoc")
+                       disable = lyxrc.linuxdoc_to_lyx_command == "none";
                break;
        case LFUN_EXPORT:
-               if (argument == "dvi" || argument == "postscript")
+               if (argument == "latex")
+                       disable = (! buf->isLatex() && ! buf->isLiterate()) ;
+               else if (argument == "linuxdoc")
+                       disable = ! buf->isLinuxDoc();
+               else if (argument == "docbook")
+                       disable = ! buf->isDocBook();
+               else if (argument == "dvi" || argument == "postscript")
                        disable = noLaTeX;
-               if (argument == "html")
-                       disable = lyxrc->html_command == "none";
+               else if (argument == "html")
+                       disable = (buf->isLinuxDoc() 
+                                  && lyxrc.linuxdoc_to_html_command == "none")
+                               || (buf->isDocBook() 
+                                   && lyxrc.docbook_to_html_command == "none")
+                               || (! buf->isLinuxDoc() && ! buf->isDocBook() 
+                                   && lyxrc.html_command == "none");
+               else if (argument == "custom")
+                       disable = (! buf->isLatex() && ! buf->isLiterate());
                break;
        case LFUN_UNDO:
                disable = buf->undostack.empty();
@@ -366,13 +534,70 @@ LyXFunc::func_status LyXFunc::getStatus(int ac) const
                disable = buf->redostack.empty();
                break;
        case LFUN_SPELLCHECK:
-               disable = lyxrc->isp_command == "none";
+               disable = lyxrc.isp_command == "none";
                break;
        case LFUN_RUNCHKTEX:
-               disable = lyxrc->chktex_command == "none";
+               disable = lyxrc.chktex_command == "none";
+               break;
+       case LFUN_BUILDPROG:
+               disable = (lyxrc.literate_command == "none" 
+                          || ! buf->isLiterate());
                break;
+
+#ifndef NEW_TABULAR
        case LFUN_LAYOUT_TABLE:
-               disable = ! owner->view()->text->cursor.par->table;
+               disable = ! owner->view()->text->cursor.par()->table;
+               break;
+#endif
+       case LFUN_LAYOUT_TABULAR:
+               disable = true;
+               if (owner->view()->the_locking_inset) {
+                       disable = (owner->view()->the_locking_inset->LyxCode() != Inset::TABULAR_CODE) &&
+                               !owner->view()->the_locking_inset->GetFirstLockingInsetOfType(Inset::TABULAR_CODE);
+               }
+               break;
+
+       case LFUN_TABULAR_FEATURE:
+               disable = true;
+               if (owner->view()->the_locking_inset) {
+                       func_status ret = LyXFunc::Disabled;
+                       if (owner->view()->the_locking_inset->LyxCode() == Inset::TABULAR_CODE) {
+                               ret = static_cast<InsetTabular *>
+                                       (owner->view()->the_locking_inset)->
+                                       getStatus(argument);
+                       } else if (owner->view()->the_locking_inset->GetFirstLockingInsetOfType(Inset::TABULAR_CODE)) {
+                               ret = static_cast<InsetTabular *>
+                                       (owner->view()->the_locking_inset->
+                                       GetFirstLockingInsetOfType(Inset::TABULAR_CODE))->
+                                       getStatus(argument);
+                       }
+                       flag |= ret;
+                       disable = false;
+               } else {
+                   static InsetTabular inset(owner->buffer(), 1, 1);
+                   func_status ret;
+
+                   disable = true;
+                   ret = inset.getStatus(argument);
+                   if ((ret & LyXFunc::ToggleOn) ||
+                       (ret & LyXFunc::ToggleOff))
+                       flag |= LyXFunc::ToggleOff;
+               }
+               break;
+
+       case LFUN_VC_REGISTER:
+               disable = buf->lyxvc.inUse();
+               break;
+       case LFUN_VC_CHECKIN:
+               disable = !buf->lyxvc.inUse() || buf->isReadonly();
+               break;
+       case LFUN_VC_CHECKOUT:
+               disable = !buf->lyxvc.inUse() || !buf->isReadonly();
+               break;
+       case LFUN_VC_REVERT:
+       case LFUN_VC_UNDO:
+       case LFUN_VC_HISTORY:
+               disable = !buf->lyxvc.inUse();
                break;
        default:
                break;
@@ -382,7 +607,13 @@ LyXFunc::func_status LyXFunc::getStatus(int ac) const
 
        if (buf) {
                func_status box = LyXFunc::ToggleOff;
-               LyXFont font = owner->view()->text->real_current_font;
+               LyXFont font;
+               if (owner->view()->the_locking_inset &&
+                   owner->view()->the_locking_inset->getLyXText(owner->view()))
+                   font = owner->view()->the_locking_inset->
+                       getLyXText(owner->view())->real_current_font;
+               else
+                   font = owner->view()->text->real_current_font;
                switch (action) {
                case LFUN_EMPH:
                        if (font.emph() == LyXFont::ON)
@@ -427,11 +658,9 @@ string LyXFunc::Dispatch(int ac,
        string argument;
        kb_action action;
         
-       FL_OBJECT * ob = 0;  // This will disapear soon
-    
         // 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)) {
@@ -448,17 +677,16 @@ string LyXFunc::Dispatch(int ac,
     
        selection_possible = false;
        
-       if (owner->view()->available() 
-           && owner->view()->getScreen())
-               owner->view()->getScreen()->HideCursor();
+       if (owner->view()->available())
+               owner->view()->hideCursor();
 
        // We cannot use this function here
-       if (getStatus(action) & Disabled)
+       if (getStatus(ac) & Disabled)
                goto exit_with_message;
 
-       commandshortcut.clear();
+       commandshortcut.erase();
        
-       if (lyxrc->display_shortcuts && show_sc) {
+       if (lyxrc.display_shortcuts && show_sc) {
                if (action != LFUN_SELFINSERT) {
                        // Put name of command and list of shortcuts
                        // for it in minibuffer
@@ -508,11 +736,11 @@ string LyXFunc::Dispatch(int ac,
        // the math inset [asierra060396]
        if (owner->view()->available() &&
            owner->view()->the_locking_inset) {
-               if (action > 1
-                   || (action == LFUN_UNKNOWN_ACTION
-                       && keyseq.length >= -1)) {
-                       if (action == LFUN_UNKNOWN_ACTION
-                           && argument.empty()) {
+               UpdatableInset::RESULT result;
+               if ((action > 1) || ((action == LFUN_UNKNOWN_ACTION) &&
+                                    (keyseq.length >= -1)))
+               {
+                       if ((action==LFUN_UNKNOWN_ACTION) && argument.empty()){
                                argument = keyseq.getiso();
                        }
                        // Undo/Redo pre 0.13 is a bit tricky for insets.
@@ -520,34 +748,74 @@ string LyXFunc::Dispatch(int ac,
                                int slx, sly;
                                UpdatableInset * inset = 
                                        owner->view()->the_locking_inset;
-                               inset->GetCursorPos(slx, sly);
+                               inset->GetCursorPos(owner->view(), slx, sly);
                                owner->view()->unlockInset(inset);
                                owner->view()->menuUndo();
-                               inset = static_cast<UpdatableInset*>(owner->view()->text->cursor.par->GetInset(owner->view()->text->cursor.pos));
-                               if (inset) 
-                                       inset->Edit(slx, sly);
+                               if (owner->view()->text->cursor.par()->
+                                   IsInset(owner->view()->text->cursor.pos())) {
+                                       inset = static_cast<UpdatableInset*>(
+                                               owner->view()->text->cursor.par()->
+                                               GetInset(owner->view()->text->
+                                                        cursor.pos()));
+                               } else {
+                                       inset = 0;
+                               }
+                               if (inset)
+                                       inset->Edit(owner->view(),slx,sly,0);
+                               return string();
+                       } else if (action == LFUN_REDO) {
+                               int slx, sly;
+                               UpdatableInset * inset = owner->view()->
+                                       the_locking_inset;
+                               inset->GetCursorPos(owner->view(), slx, sly);
+                               owner->view()->unlockInset(inset);
+                               owner->view()->menuRedo();
+                               inset = static_cast<UpdatableInset*>(
+                                       owner->view()->text->cursor.par()->
+                                       GetInset(owner->view()->text->
+                                                cursor.pos()));
+                               if (inset)
+                                       inset->Edit(owner->view(),slx,sly,0); 
+                               return string();
+                       } else if (((result=owner->view()->the_locking_inset->
+                                  LocalDispatch(owner->view(), action,
+                                                argument)) ==
+                                  UpdatableInset::DISPATCHED) ||
+                                  (result == UpdatableInset::DISPATCHED_NOUPDATE))
                                return string();
-                       } else 
-                               if (action == LFUN_REDO) {
-                                       int slx, sly;
-                                       UpdatableInset * inset = owner->view()->the_locking_inset;
-                                       inset->GetCursorPos(slx, sly);
-                                       owner->view()->unlockInset(inset);
-                                       owner->view()->menuRedo();
-                                       inset = static_cast<UpdatableInset*>(owner->view()->text->cursor.par->GetInset(owner->view()->text->cursor.pos));
-                                       if (inset)
-                                               inset->Edit(slx, sly);
+                       else {
+                               setMessage(N_("Text mode"));
+                               switch(action) {
+                               case LFUN_UNKNOWN_ACTION:
+                               case LFUN_BREAKPARAGRAPH:
+                               case LFUN_BREAKLINE:
+                                       owner->view()->text->CursorRight(owner->view());
+                                       owner->view()->setState();
+                                       owner->showState();
+                                       break;
+                               case LFUN_RIGHT:
+                                       if (!owner->view()->text->cursor.par()->isRightToLeftPar(owner->buffer()->params)) {
+                                               owner->view()->text->CursorRight(owner->view());
+                                               moveCursorUpdate(false);
+                                               owner->showState();
+                                       }
                                        return string();
-                               } else
-                                       if (owner->view()->the_locking_inset->LocalDispatch(action, argument.c_str()))
-                                               return string();
-                                       else {
-                                               setMessage(N_("Text mode"));
-                                               if (action == LFUN_RIGHT || action == -1)
-                                                       owner->view()->text->CursorRight();
-                                               if (action == LFUN_LEFT || action == LFUN_RIGHT)
-                                                       return string();
+                               case LFUN_LEFT: 
+                                       if (owner->view()->text->cursor.par()->isRightToLeftPar(owner->buffer()->params)) {
+                                               owner->view()->text->CursorRight(owner->view());
+                                               moveCursorUpdate(false);
+                                               owner->showState();
                                        }
+                                       return string();
+                               case LFUN_DOWN:
+                                       owner->view()->text->CursorDown(owner->view());
+                                       moveCursorUpdate(false);
+                                       owner->showState();
+                                       return string();
+                               default:
+                                       break;
+                               }
+                       }
                }
        }
 
@@ -569,40 +837,39 @@ string LyXFunc::Dispatch(int ac,
 
                if (!searched_string.empty() &&
                    ((action == LFUN_WORDFINDBACKWARD) ? 
-                    ltCur->SearchBackward(searched_string.c_str()) :
-                    ltCur->SearchForward(searched_string.c_str()))) {
+                    ltCur->SearchBackward(owner->view(), searched_string.c_str()) :
+                    ltCur->SearchForward(owner->view(), searched_string.c_str()))) {
 
                        // ??? What is that ???
-                       owner->view()->update(-2);
+                       owner->view()->update(BufferView::SELECT|BufferView::FITCUR);
 
                        // ??? Needed ???
                        // clear the selection (if there is any) 
-                       owner->view()->getScreen()->ToggleSelection();
+                       owner->view()->toggleSelection();
                        owner->view()->text->ClearSelection();
 
                        // Move cursor so that successive C-s 's will not stand in place. 
                        if( action == LFUN_WORDFINDFORWARD ) 
-                               owner->view()->text->CursorRightOneWord();
+                               owner->view()->text->CursorRightOneWord(owner->view());
                        owner->view()->text->FinishUndo();
                        moveCursorUpdate(false);
 
                        // ??? Needed ???
                        // set the new selection 
                        // SetSelectionOverLenChars(owner->view()->currentBuffer()->text, iLenSelected);
-                       owner->view()->getScreen()->ToggleSelection(false);
+                       owner->view()->toggleSelection(false);
                } else 
                        LyXBell();      
         
                // REMOVED : if (owner->view()->getWorkArea()->focus)
-               owner->view()->getScreen()->ShowCursor();
+               owner->view()->showCursor();
        }
        break;
 
        case LFUN_PREFIX:
        {
-               if (owner->view()->available()
-                   && owner->view()->getScreen()) {
-                       owner->view()->update(-2);
+               if (owner->view()->available()) {
+                       owner->view()->update(BufferView::SELECT|BufferView::FITCUR);
                }
                string buf;
                keyseq.print(buf, true);
@@ -644,24 +911,13 @@ string LyXFunc::Dispatch(int ac,
                break;
                
        case LFUN_CENTER: // this is center and redraw.
-               owner->view()->beforeChange();
-               if (owner->view()->text->cursor.y >
-                   owner->view()->getWorkArea()->h / 2)        {
-                       owner->view()->getScreen()->
-                               Draw(owner->view()->text->cursor.y -
-                                    owner->view()->getWorkArea()->h / 2);
-               } else { // <= 
-                       owner->view()->getScreen()->
-                               Draw(0);
-               }
-               owner->view()->update(0);
-               owner->view()->redraw();
+               owner->view()->center();
                break;
                
        case LFUN_APPENDIX:
                if (owner->view()->available()) {
-                       owner->view()->text->toggleAppendix();
-                       owner->view()->update(1);
+                       owner->view()->text->toggleAppendix(owner->view());
+                       owner->view()->update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
                }
                break;
 
@@ -683,7 +939,20 @@ string LyXFunc::Dispatch(int ac,
                break;
                
        case LFUN_MENUWRITE:
-               MenuWrite(owner->buffer());
+               if (!owner->buffer()->isUnnamed()) {
+                       owner->getMiniBuffer()->Set(_("Saving document"),
+                                                   MakeDisplayPath(owner->buffer()->fileName()),
+                                                   "...");
+                       MenuWrite(owner->buffer());
+                       //owner->getMiniBuffer()-> {
+                       //      Set(_("Document saved as"),
+                       //          MakeDisplayPath(owner->buffer()->fileName()));
+                       //} else {
+                       //owner->getMiniBuffer()->Set(_("Save failed!"));
+                       //}
+               } else {
+                       MenuWriteAs(owner->buffer());
+               }
                break;
                
        case LFUN_MENUWRITEAS:
@@ -695,11 +964,11 @@ string LyXFunc::Dispatch(int ac,
                break;
                
        case LFUN_PREVIEW:
-               MenuPreview(owner->buffer());
+               PreviewDVI(owner->buffer());
                break;
                        
        case LFUN_PREVIEWPS:
-               MenuPreviewPS(owner->buffer());
+               PreviewPostscript(owner->buffer());
                break;
                
        case LFUN_RUNLATEX:
@@ -715,13 +984,13 @@ string LyXFunc::Dispatch(int ac,
                break;
                
        case LFUN_RUNDVIPS:
-               MenuRunDvips(owner->buffer(), false);
+               CreatePostscript(owner->buffer(), false);
                break;
                
        case LFUN_MENUPRINT:
-               MenuPrint(owner->buffer());
+               owner->getDialogs()->showPrint();
                break;
-               
+
        case LFUN_FAX:
                MenuFax(owner->buffer());
                break;
@@ -731,89 +1000,89 @@ 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 {
-                       setErrorMessage(string(N_("Unknown import type: "))
-                                       + imtyp);
-               }
+               doImport(argument);
                break;
-       }
                
        case LFUN_QUIT:
                QuitLyX();
                break;
                
        case LFUN_TOCVIEW:
-               TocUpdateCB(ob, 0);
-               if (fd_form_toc->form_toc->visible) {
-                       fl_raise_form(fd_form_toc->form_toc);
-               } else {
-                       static int ow = -1, oh;
-                       fl_show_form(fd_form_toc->form_toc,
-                                    FL_PLACE_MOUSE |
-                                    FL_FREE_SIZE, FL_FULLBORDER,
-                                    _("Table of Contents"));
-                       if (ow < 0) {
-                               ow = fd_form_toc->form_toc->w;
-                               oh = fd_form_toc->form_toc->h;
-                       }
-                       fl_set_form_minsize(fd_form_toc->form_toc, ow, oh);
-               }
-               break;
-               
-       case LFUN_TOC_INSERT:
-       {
-               Inset * new_inset = new InsetTOC(owner->buffer());
-               owner->view()->insertInset(new_inset, "Standard", true);
-               break;
-       }
-       
-       case LFUN_LOF_INSERT:
-       {
-               Inset * new_inset = new InsetLOF(owner->buffer());
-               owner->view()->insertInset(new_inset, "Standard", true);
-               break;
-       }
-       
-       case LFUN_LOA_INSERT:
+       case LFUN_LOFVIEW:
+       case LFUN_LOTVIEW:
+       case LFUN_LOAVIEW:
        {
-               Inset * new_inset = new InsetLOA(owner->buffer());
-               owner->view()->insertInset(new_inset, "Standard", true);
+               InsetCommandParams p;
+               
+               if( action == LFUN_TOCVIEW )
+                       p.setCmdName( "tableofcontents" );
+               else if( action == LFUN_LOAVIEW )
+                       p.setCmdName( "listofalgorithms" );
+               else if( action == LFUN_LOFVIEW )
+                       p.setCmdName( "listoffigures" );
+               else
+                       p.setCmdName( "listoftables" );
+
+               owner->getDialogs()->createTOC( p.getAsString() );
                break;
-       }
+       }       
 
+       case LFUN_TOC_INSERT:
+       case LFUN_LOA_INSERT:
+       case LFUN_LOF_INSERT:
        case LFUN_LOT_INSERT:
        {
-               Inset * new_inset = new InsetLOT(owner->buffer());
-               owner->view()->insertInset(new_inset, "Standard", true);
+               InsetCommandParams p;
+               
+               if( action == LFUN_TOC_INSERT )
+                       p.setCmdName( "tableofcontents" );
+               else if( action == LFUN_LOA_INSERT )
+                       p.setCmdName( "listofalgorithms" );
+               else if( action == LFUN_LOF_INSERT )
+                       p.setCmdName( "listoffigures" );
+               else
+                       p.setCmdName( "listoftables" );
+
+               Inset * inset = new InsetTOC( p );
+               if( !owner->view()->insertInset( inset, "Standard", true ) )
+                       delete inset;
                break;
        }
                
-       case LFUN_TABLE:
-               TableCB(ob, 0);
+       case LFUN_DIALOG_TABULAR_INSERT:
+#ifndef NEW_TABULAR
+               Table();
+#else
+               owner->getDialogs()->showTabularCreate();
+#endif
                break;
                
+       case LFUN_TABULAR_FEATURE:
+       case LFUN_SCROLL_INSET:
+               // this is not handled here as this funktion is only aktive
+               // if we have a locking_inset and that one is (or contains)
+               // a tabular-inset
+               break;
+
        case LFUN_FIGURE:
-               FigureCB(ob, 0);
+               Figure();
                break;
-               
+
+       case LFUN_INSET_GRAPHICS:
+       {
+               Inset * new_inset = new InsetGraphics;
+               if (!owner->view()->insertInset(new_inset)) {
+                       delete new_inset;
+               } else {
+                       // this is need because you don't use a inset->Edit()
+                       owner->view()->updateInset(new_inset, true);
+                       new_inset->Edit(owner->view(), 0, 0, 0);
+               }
+               break;
+       }
+       
        case LFUN_AUTOSAVE:
-               AutoSave();
+               AutoSave(owner->view());
                break;
                
        case LFUN_UNDO:
@@ -825,21 +1094,28 @@ string LyXFunc::Dispatch(int ac,
                break;
                
        case LFUN_MENUSEARCH:
-               MenuSearch();
-               break;
+       {
+               // Ok this is one _very_ bad solution, but I think that some
+               // of this will be rewritten as part of GUI indep anyway.
+               // Lgb
+               static LyXFindReplace FR_;
+               FR_.StartSearch(owner->view());
+       }
+       break;
                
        case LFUN_PASTE:
                owner->view()->paste();
+               owner->view()->setState();
                break;
                
        case LFUN_PASTESELECTION:
        {
                bool asPara = false;
                if (argument == "paragraph") asPara = true;
-               MenuPasteSelection(asPara);
-               break;
+               owner->view()->pasteClipboard(asPara);
        }
-
+       break;
+       
        case LFUN_CUT:
                owner->view()->cut();
                break;
@@ -854,6 +1130,7 @@ string LyXFunc::Dispatch(int ac,
                
        case LFUN_LAYOUT_PASTE:
                owner->view()->pasteEnvironment();
+               owner->view()->setState();
                break;
                
        case LFUN_GOTOERROR:
@@ -864,17 +1141,19 @@ string LyXFunc::Dispatch(int ac,
                if (owner->view()->removeAutoInsets()) {
                        owner->view()->redraw();
                        owner->view()->fitCursor();
-                       owner->view()->updateScrollbar();
+                       //owner->view()->updateScrollbar();
                }
                break;
                
        case LFUN_GOTONOTE:
                owner->view()->gotoNote();
                break;
-               
+
+#ifndef NEW_INSETS
        case LFUN_OPENSTUFF:
                owner->view()->openStuff();
                break;
+#endif
                
        case LFUN_HYPHENATION:
                owner->view()->hyphenationPoint();
@@ -897,59 +1176,104 @@ string LyXFunc::Dispatch(int ac,
                break;
                
        case LFUN_DEPTH:
-               DepthCB(ob, 0);
+               changeDepth(owner->view(), 0);
                break;
                
        case LFUN_DEPTH_MIN:
-               DepthCB(ob, -1);
+               changeDepth(owner->view(), -1);
                break;
                
        case LFUN_DEPTH_PLUS:
-               DepthCB(ob, 1);
+               changeDepth(owner->view(), 1);
                break;
                
        case LFUN_FREE:
-               FreeCB();
+               Free(owner->view());
+               owner->view()->setState();
+               owner->showState();
                break;
                
        case LFUN_TEX:
-               TexCB();
+               Tex(owner->view());
+               owner->view()->setState();
+               owner->showState();
                break;
-               
+#ifndef NEW_INSETS             
        case LFUN_MELT:
-               MeltCB(ob, 0);
+               Melt(owner->view());
                break;
-               
+#endif
        case LFUN_RECONFIGURE:
-               Reconfigure();
+               Reconfigure(owner->view());
                break;
-
+#ifndef NEW_INSETS
        case LFUN_FOOTMELT:
                if (owner->view()->available()
                    && !owner->view()->text->selection
-                   && owner->view()->text->cursor.par->footnoteflag
+                   && owner->view()->text->cursor.par()->footnoteflag
                    != LyXParagraph::NO_FOOTNOTE)
                        { // only melt footnotes with FOOTMELT, not margins etc
-                               if(owner->view()->text->cursor.par->footnotekind == LyXParagraph::FOOTNOTE)
-                                       MeltCB(ob, 0);
+                               if(owner->view()->text->cursor.par()->footnotekind == LyXParagraph::FOOTNOTE)
+                                       Melt(owner->view());
                        }
                else
-                       FootCB(ob, 0); 
+                       Foot(owner->view()); 
+               owner->view()->setState();
                break;
 
        case LFUN_MARGINMELT:
                if (owner->view()->available()
                    && !owner->view()->text->selection
-                   && owner->view()->text->cursor.par->footnoteflag
+                   && owner->view()->text->cursor.par()->footnoteflag
                    != LyXParagraph::NO_FOOTNOTE) {
                        // only melt margins
-                       if(owner->view()->text->cursor.par->footnotekind == LyXParagraph::MARGIN)
-                               MeltCB(ob, 0);
+                       if(owner->view()->text->cursor.par()->footnotekind == LyXParagraph::MARGIN)
+                               Melt(owner->view());
+               } else
+                       Margin(owner->view()); 
+               owner->view()->setState();
+               break;
+#endif
+       case LFUN_HELP_COPYRIGHT:
+               owner->getDialogs()->showCopyright();
+               break;
+
+       case LFUN_HELP_CREDITS:
+               owner->getDialogs()->showCredits();
+               break;
+
+        case LFUN_HELP_OPEN: {
+               string arg = argument;
+               if (arg.empty()) {
+                       setErrorMessage(N_("Missing argument"));
+                       break;
                }
-               else
-                       MarginCB(ob, 0); 
+               ProhibitInput(owner->view());
+               string fname = i18nLibFileSearch("doc", arg, "lyx");
+               if (fname.empty()) {
+                       lyxerr << "LyX: unable to find documentation file `"
+                              << arg << "'. Bad installation?" << endl;
+                       AllowInput(owner->view());
+                       break;
+               }
+               owner->getMiniBuffer()->Set(_("Opening help file"),
+                                           MakeDisplayPath(fname),"...");
+               owner->view()->buffer(bufferlist.loadLyXFile(fname,false));
+               AllowInput(owner->view());
                break;
-               
+        }
+
+       case LFUN_HELP_VERSION: 
+               ProhibitInput(owner->view());
+               fl_show_message((string(_("LyX Version ")) + LYX_VERSION 
+                                + _(" of ") + LYX_RELEASE).c_str(),
+                               (_("Library directory: ")
+                                + MakeDisplayPath(system_lyxdir)).c_str(),
+                               (_("User directory: ") 
+                                + MakeDisplayPath(user_lyxdir)).c_str());
+               AllowInput(owner->view());
+               break;
+
                // --- version control -------------------------------
        case LFUN_VC_REGISTER:
        {
@@ -993,22 +1317,12 @@ string LyXFunc::Dispatch(int ac,
        }
        
        // --- buffers ----------------------------------------
-       case LFUN_PREVBUFFER:
-#ifdef WITH_WARNINGS
-#warning fix this please
-#endif
-               // it is the LyXView or the BufferView that should
-               // remember the previous buffer, not bufferlist.
-//                     if (owner->view()->available()){          
-//                             owner->view()->beforeChange();
-//                             owner->buffer()->update(-2);
-//                     }
-//                     owner->view()->setBuffer(bufferlist.prev());
 
-//                     owner->view()->
-//                             resizeCurrentBufferPseudoExpose();
+        case LFUN_SWITCHBUFFER:
+                owner->view()->buffer(bufferlist.getBuffer(argument));
                break;
-                       
+
+
        case LFUN_FILE_INSERT:
        {
                MenuInsertLyXFile(argument);
@@ -1018,7 +1332,7 @@ string LyXFunc::Dispatch(int ac,
        case LFUN_FILE_INSERT_ASCII:
        {
                bool asPara = (argument == "paragraph");
-               InsertAsciiFile(string(), asPara);
+               InsertAsciiFile(owner->view(), string(), asPara);
        }
        break;
        
@@ -1049,13 +1363,12 @@ string LyXFunc::Dispatch(int ac,
                if (sel == 0) 
                        return string(); // illegal argument
 
-               sel--; // sel 1..., but layout 0...
+               --sel; // sel 1..., but layout 0...
 
                // Pretend we got the name instead.
                Dispatch(int(LFUN_LAYOUT), 
-                        textclasslist.NameOfLayout(owner->view()->
-                                                   text->parameters->
-                                                   textclass,
+                        textclasslist.NameOfLayout(owner->view()
+                                                   ->buffer()->params.textclass,
                                                    sel).c_str());
                return string();
        }
@@ -1067,37 +1380,46 @@ string LyXFunc::Dispatch(int ac,
                
                // Derive layout number from given argument (string)
                // and current buffer's textclass (number). */    
-               int layoutno = 
-                       textclasslist.NumberOfLayout(owner->
-                                                    view()->
-                                                    text->parameters->
-                                                    textclass,
-                                                    argument).second;
+               LyXTextClassList::ClassList::size_type tclass =
+                       owner->view()->buffer()->params.textclass;
+               pair <bool, LyXTextClass::size_type> layout = 
+                       textclasslist.NumberOfLayout(tclass, argument);
+
+               // If the entry is obsolete, use the new one instead.
+               if (layout.first) {
+                       string obs = textclasslist.Style(tclass,layout.second)
+                             .obsoleted_by();
+                       if (!obs.empty()) 
+                               layout = 
+                                 textclasslist.NumberOfLayout(tclass, obs);
+               }
 
                // see if we found the layout number:
-               if (layoutno == -1) {
+               if (!layout.first) {
                        setErrorMessage(string(N_("Layout ")) + argument + 
                                        N_(" not known"));
                        break;
                }
-                       
-               if (current_layout != layoutno) {
-                       owner->view()->getScreen()->HideCursor();
-                       current_layout = layoutno;
-                       owner->view()->update(-2);
+
+               if (current_layout != layout.second) {
+                       owner->view()->hideCursor();
+                       current_layout = layout.second;
+                       owner->view()->update(BufferView::SELECT|BufferView::FITCUR);
                        owner->view()->text->
-                               SetLayout(layoutno);
-                       owner->getToolbar()->combox->
-                               select(owner->view()->
-                                      text->cursor.par->
-                                      GetLayout() + 1);
-                       owner->view()->update(1);
+                               SetLayout(owner->view(), layout.second);
+                       owner->setLayout(layout.second);
+                       owner->view()->update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
+                       owner->view()->setState();
                }
        }
        break;
 
        case LFUN_LAYOUT_DOCUMENT:
+#ifdef USE_OLD_DOCUMENT_LAYOUT
                MenuLayoutDocument();
+#else
+               owner->getDialogs()->showLayoutDocument();
+#endif
                break;
                
        case LFUN_LAYOUT_PARAGRAPH:
@@ -1116,12 +1438,31 @@ string LyXFunc::Dispatch(int ac,
        }
        break;
                
+       case LFUN_LAYOUT_TABULAR:
+           if (owner->view()->the_locking_inset) {
+               if (owner->view()->the_locking_inset->LyxCode()==Inset::TABULAR_CODE) {
+                   InsetTabular * inset = static_cast<InsetTabular *>
+                       (owner->view()->the_locking_inset);
+                   inset->OpenLayoutDialog(owner->view());
+               } else if (owner->view()->the_locking_inset->
+                          GetFirstLockingInsetOfType(Inset::TABULAR_CODE)!=0) {
+                   InsetTabular * inset = static_cast<InsetTabular *>(
+                       owner->view()->the_locking_inset->GetFirstLockingInsetOfType(Inset::TABULAR_CODE));
+                   inset->OpenLayoutDialog(owner->view());
+               }
+           }
+           break;
+
        case LFUN_LAYOUT_PAPER:
+#ifdef USE_OLD_DOCUMENT_LAYOUT
                MenuLayoutPaper();
+#endif
                break;
                
        case LFUN_LAYOUT_QUOTES:
+#ifdef USE_OLD_DOCUMENT_LAYOUT
                MenuLayoutQuotes();
+#endif
                break;
                
        case LFUN_LAYOUT_PREAMBLE:
@@ -1133,104 +1474,116 @@ string LyXFunc::Dispatch(int ac,
                break;
                
        case LFUN_DROP_LAYOUTS_CHOICE:
-               owner->getToolbar()->combox->Show();
+               owner->getToolbar()->openLayoutList();
+               break;
+
+       case LFUN_LANGUAGE:
+               Lang(owner->view(), argument);
+               owner->view()->setState();
+               owner->showState();
                break;
 
        case LFUN_EMPH:
-               EmphCB();
+               Emph(owner->view());
+               owner->showState();
                break;
-               
+
        case LFUN_BOLD:
-               BoldCB();
+               Bold(owner->view());
+               owner->showState();
                break;
                
        case LFUN_NOUN:
-               NounCB();
+               Noun(owner->view());
+               owner->showState();
                break;
                
        case LFUN_CODE:
-               CodeCB();
+               Code(owner->view());
+               owner->showState();
                break;
                
        case LFUN_SANS:
-               SansCB();
+               Sans(owner->view());
+               owner->showState();
                break;
                
        case LFUN_ROMAN:
-               RomanCB();
+               Roman(owner->view());
+               owner->showState();
                break;
                
        case LFUN_DEFAULT:
-               StyleResetCB();
+               StyleReset(owner->view());
+               owner->showState();
                break;
                
        case LFUN_UNDERLINE:
-               UnderlineCB();
+               Underline(owner->view());
+               owner->showState();
                break;
                
        case LFUN_FONT_SIZE:
-               FontSizeCB(argument);
+               FontSize(owner->view(), argument);
+               owner->showState();
                break;
                
        case LFUN_FONT_STATE:
-               setMessage(CurrentState());
+               setMessage(CurrentState(owner->view()));
                break;
                
        case LFUN_UPCASE_WORD:
-               owner->view()->update(-2);
-               FreeUpdateTimer();
-               owner->view()->text->ChangeWordCase(LyXText::text_uppercase);
-               owner->view()->update(1);
-               SetUpdateTimer();
+               owner->view()->update(BufferView::SELECT|BufferView::FITCUR);
+               owner->view()->text->ChangeWordCase(owner->view(),
+                                                   LyXText::text_uppercase);
+               owner->view()->update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
                break;
                
        case LFUN_LOWCASE_WORD:
-               owner->view()->update(-2);
-               FreeUpdateTimer();
-               owner->view()->text->ChangeWordCase(LyXText::text_lowercase);
-               owner->view()->update(1);
-               SetUpdateTimer();
+               owner->view()->update(BufferView::SELECT|BufferView::FITCUR);
+               owner->view()->text->ChangeWordCase(owner->view(),
+                                                   LyXText::text_lowercase);
+               owner->view()->update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
                break;
                
        case LFUN_CAPITALIZE_WORD:
-               owner->view()->update(-2);
-               FreeUpdateTimer();
-               owner->view()->text->ChangeWordCase(LyXText::text_capitalization);
-               owner->view()->update(1);
-               SetUpdateTimer();
+               owner->view()->update(BufferView::SELECT|BufferView::FITCUR);
+               owner->view()->text->ChangeWordCase(owner->view(),
+                                                   LyXText::text_capitalization);
+               owner->view()->update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
                break;
                
        case LFUN_INSERT_LABEL:
                MenuInsertLabel(argument.c_str());
                break;
                
-       case LFUN_INSERT_REF:
-               MenuInsertRef();
-               break;
-               
-       case LFUN_REFTOGGLE:
+       case LFUN_REF_CREATE:
        {
-               InsetRef * inset = 
-                       static_cast<InsetRef*>(getInsetByCode(Inset::REF_CODE));
-               if (inset) {
-                       if (inset->getFlag() == InsetRef::REF)
-                               inset->setFlag(InsetRef::PAGE_REF);
-                       else
-                               inset->setFlag(InsetRef::REF);
-                       UpdateInset(inset);
-               } else {
-                       setErrorMessage(N_("No cross-reference to toggle"));
-               }
+               InsetCommandParams p( "ref" );
+               owner->getDialogs()->createRef( p.getAsString() );
        }
        break;
-       
-       case LFUN_REFBACK:
+               
+       case LFUN_REF_INSERT:
+       {
+               InsetCommandParams p;
+               p.setFromString( argument );
+
+               InsetRef * inset = new InsetRef( p );
+               if (!owner->view()->insertInset(inset))
+                       delete inset;
+               else
+                       owner->view()->updateInset( inset, true );
+       }
+       break;
+                   
+       case LFUN_REF_BACK:
        {
                owner->view()->restorePosition();
        }
        break;
 
-       case LFUN_REFGOTO:
+       case LFUN_REF_GOTO:
        {
                string label(argument);
                if (label.empty()) {
@@ -1242,41 +1595,52 @@ string LyXFunc::Dispatch(int ac,
                
                if (!label.empty()) {
                        owner->view()->savePosition();
-                       owner->view()->gotoLabel(label.c_str());
+                       if (!owner->view()->gotoLabel(label))
+                               WriteAlert(_("Error"), 
+                                          _("Couldn't find this label"), 
+                                          _("in current document."));
                }
        }
        break;
                
        case LFUN_MENU_OPEN_BY_NAME:
+#ifdef NEW_MENUBAR
+               owner->getMenubar()->openByName(argument);
+#else
                owner->getMenus()->openByName(argument);
+#endif
                break; // RVDK_PATCH_5
                
        case LFUN_SPELLCHECK:
-               if (lyxrc->isp_command != "none")
-                       ShowSpellChecker();
+               if (lyxrc.isp_command != "none")
+                       ShowSpellChecker(owner->view());
                break; // RVDK_PATCH_5
                
                // --- Cursor Movements -----------------------------
        case LFUN_RIGHT:
        {
                LyXText * tmptext = owner->view()->text;
+               bool is_rtl = tmptext->cursor.par()->isRightToLeftPar(owner->buffer()->params);
                if(!tmptext->mark_set)
                        owner->view()->beforeChange();
-               owner->view()->update(-2);
-               if (tmptext->cursor.pos < tmptext->cursor.par->Last()
-                   && tmptext->cursor.par->GetChar(tmptext->cursor.pos)
+               owner->view()->update(BufferView::SELECT|BufferView::FITCUR);
+               if (is_rtl)
+                       tmptext->CursorLeft(owner->view(), false);
+               if (tmptext->cursor.pos() < tmptext->cursor.par()->Last()
+                   && tmptext->cursor.par()->GetChar(tmptext->cursor.pos())
                    == LyXParagraph::META_INSET
-                   && tmptext->cursor.par->GetInset(tmptext->cursor.pos)
-                   && tmptext->cursor.par->GetInset(tmptext->cursor.pos)->Editable() == 2){
-                       Inset * tmpinset = tmptext->cursor.par->GetInset(tmptext->cursor.pos);
+                   && tmptext->cursor.par()->GetInset(tmptext->cursor.pos())
+                   && tmptext->cursor.par()->GetInset(tmptext->cursor.pos())->Editable() == Inset::HIGHLY_EDITABLE){
+                       Inset * tmpinset = tmptext->cursor.par()->GetInset(tmptext->cursor.pos());
                        setMessage(tmpinset->EditMessage());
-                       tmpinset->Edit(0, 0);
+                       tmpinset->Edit(owner->view(), 0, 0, 0);
                        break;
                }
-               tmptext->CursorRight();
+               if (!is_rtl)
+                       tmptext->CursorRight(owner->view(), false);
                owner->view()->text->FinishUndo();
                moveCursorUpdate(false);
-               owner->getMiniBuffer()->Set(CurrentState());
+               owner->showState();
        }
        break;
                
@@ -1285,296 +1649,332 @@ string LyXFunc::Dispatch(int ac,
                // This is soooo ugly. Isn`t it possible to make
                // it simpler? (Lgb)
                LyXText * txt = owner->view()->text;
+               bool is_rtl = txt->cursor.par()->isRightToLeftPar(owner->buffer()->params);
                if(!txt->mark_set) owner->view()->beforeChange();
-               owner->view()->update(-2);
-               txt->CursorLeft();
-               if (txt->cursor.pos < txt->cursor.par->Last()
-                   && txt->cursor.par->GetChar(txt->cursor.pos)
+               owner->view()->update(BufferView::SELECT|BufferView::FITCUR);
+               if (!is_rtl)
+                       txt->CursorLeft(owner->view(), false);
+               if (txt->cursor.pos() < txt->cursor.par()->Last()
+                   && txt->cursor.par()->GetChar(txt->cursor.pos())
                    == LyXParagraph::META_INSET
-                   && txt->cursor.par->GetInset(txt->cursor.pos)
-                   && txt->cursor.par->GetInset(txt->cursor.pos)->Editable() == 2) {
-                       Inset * tmpinset = txt->cursor.par->GetInset(txt->cursor.pos);
+                   && txt->cursor.par()->GetInset(txt->cursor.pos())
+                   && txt->cursor.par()->GetInset(txt->cursor.pos())->Editable() == Inset::HIGHLY_EDITABLE) {
+                       Inset * tmpinset = txt->cursor.par()->GetInset(txt->cursor.pos());
                        setMessage(tmpinset->EditMessage());
-                       tmpinset->Edit(tmpinset->Width(txt->GetFont(txt->cursor.par,
-                                                                   txt->cursor.pos)), 0);
+                       LyXFont font = txt->GetFont(owner->view()->buffer(),
+                                                   txt->cursor.par(),
+                                                   txt->cursor.pos());
+                       tmpinset->Edit(owner->view(),
+                                      tmpinset->x() +
+                                      tmpinset->width(owner->view(),font),
+                                      tmpinset->descent(owner->view(),font),
+                                      0);
                        break;
                }
+               if  (is_rtl)
+                       txt->CursorRight(owner->view(), false);
+
                owner->view()->text->FinishUndo();
                moveCursorUpdate(false);
-               owner->getMiniBuffer()->Set(CurrentState());
+               owner->showState();
        }
        break;
                
        case LFUN_UP:
                if(!owner->view()->text->mark_set) owner->view()->beforeChange();
-               owner->view()->update(-3);
-               owner->view()->text->CursorUp();
+               owner->view()->update(BufferView::UPDATE);
+               owner->view()->text->CursorUp(owner->view());
                owner->view()->text->FinishUndo();
                moveCursorUpdate(false);
-               owner->getMiniBuffer()->Set(CurrentState());
+               owner->showState();
                break;
                
        case LFUN_DOWN:
                if(!owner->view()->text->mark_set)
                        owner->view()->beforeChange();
-               owner->view()->update(-3);
-               owner->view()->text->CursorDown();
+               owner->view()->update(BufferView::UPDATE);
+               owner->view()->text->CursorDown(owner->view());
                owner->view()->text->FinishUndo();
                moveCursorUpdate(false);
-               owner->getMiniBuffer()->Set(CurrentState());
+               owner->showState();
                break;
 
        case LFUN_UP_PARAGRAPH:
                if(!owner->view()->text->mark_set)
                        owner->view()->beforeChange();
-               owner->view()->update(-3);
-               owner->view()->text->CursorUpParagraph();
+               owner->view()->update(BufferView::UPDATE);
+               owner->view()->text->CursorUpParagraph(owner->view());
                owner->view()->text->FinishUndo();
                moveCursorUpdate(false);
-               owner->getMiniBuffer()->Set(CurrentState());
+               owner->showState();
                break;
                
        case LFUN_DOWN_PARAGRAPH:
                if(!owner->view()->text->mark_set)
                        owner->view()->beforeChange();
-               owner->view()->update(-3);
-               owner->view()->text->CursorDownParagraph();
+               owner->view()->update(BufferView::UPDATE);
+               owner->view()->text->CursorDownParagraph(owner->view());
                owner->view()->text->FinishUndo();
                moveCursorUpdate(false);
-               owner->getMiniBuffer()->Set(CurrentState());
+               owner->showState();
                break;
                
        case LFUN_PRIOR:
                if(!owner->view()->text->mark_set)
                        owner->view()->beforeChange();
-               owner->view()->update(-3);
+               owner->view()->update(BufferView::UPDATE);
                owner->view()->cursorPrevious();
                owner->view()->text->FinishUndo();
                moveCursorUpdate(false);
-               owner->getMiniBuffer()->Set(CurrentState());
+               owner->showState();
                break;
                
        case LFUN_NEXT:
                if(!owner->view()->text->mark_set)
                        owner->view()->beforeChange();
-               owner->view()->update(-3);
+               owner->view()->update(BufferView::UPDATE);
                owner->view()->cursorNext();
                owner->view()->text->FinishUndo();
                moveCursorUpdate(false);
-               owner->getMiniBuffer()->Set(CurrentState());
+               owner->showState();
                break;
                
        case LFUN_HOME:
                if(!owner->view()->text->mark_set)
                        owner->view()->beforeChange();
-               owner->view()->update(-2);
-               owner->view()->text->CursorHome();
+               owner->view()->update(BufferView::SELECT|BufferView::FITCUR);
+               owner->view()->text->CursorHome(owner->view());
                owner->view()->text->FinishUndo();
                moveCursorUpdate(false);
-               owner->getMiniBuffer()->Set(CurrentState());
+               owner->showState();
                break;
                
        case LFUN_END:
                if(!owner->view()->text->mark_set)
                        owner->view()->beforeChange();
-               owner->view()->update(-2);
-               owner->view()->text->CursorEnd();
+               owner->view()->update(BufferView::SELECT|BufferView::FITCUR);
+               owner->view()->text->CursorEnd(owner->view());
                owner->view()->text->FinishUndo();
                moveCursorUpdate(false);
-               owner->getMiniBuffer()->Set(CurrentState());
+               owner->showState();
                break;
                
+       case LFUN_SHIFT_TAB:
        case LFUN_TAB:
                if(!owner->view()->text->mark_set)
                        owner->view()->beforeChange();
-               owner->view()->update(-2);
-               owner->view()->text->CursorTab();
+               owner->view()->update(BufferView::SELECT|BufferView::FITCUR);
+               owner->view()->text->CursorTab(owner->view());
                owner->view()->text->FinishUndo();
                moveCursorUpdate(false);
-               owner->getMiniBuffer()->Set(CurrentState());
+               owner->showState();
                break;
                
        case LFUN_WORDRIGHT:
                if(!owner->view()->text->mark_set)
                        owner->view()->beforeChange();
-               owner->view()->update(-2);
-               owner->view()->text->CursorRightOneWord();
+               owner->view()->update(BufferView::SELECT|BufferView::FITCUR);
+               if (owner->view()->text->cursor.par()->isRightToLeftPar(owner->buffer()->params))
+                       owner->view()->text->CursorLeftOneWord(owner->view());
+               else
+                       owner->view()->text->CursorRightOneWord(owner->view());
                owner->view()->text->FinishUndo();
                moveCursorUpdate(false);
-               owner->getMiniBuffer()->Set(CurrentState());
+               owner->showState();
                break;
                
        case LFUN_WORDLEFT:
                if(!owner->view()->text->mark_set)
                        owner->view()->beforeChange();
-               owner->view()->update(-2);
-               owner->view()->text->CursorLeftOneWord();
+               owner->view()->update(BufferView::SELECT|BufferView::FITCUR);
+               if (owner->view()->text->cursor.par()->isRightToLeftPar(owner->buffer()->params))
+                       owner->view()->text->CursorRightOneWord(owner->view());
+               else
+                       owner->view()->text->CursorLeftOneWord(owner->view());
                owner->view()->text->FinishUndo();
                moveCursorUpdate(false);
-               owner->getMiniBuffer()->Set(CurrentState());
+               owner->showState();
                break;
                
        case LFUN_BEGINNINGBUF:
                if(!owner->view()->text->mark_set)
                        owner->view()->beforeChange();
-               owner->view()->update(-2);
-               owner->view()->text->CursorTop();
+               owner->view()->update(BufferView::SELECT|BufferView::FITCUR);
+               owner->view()->text->CursorTop(owner->view());
                owner->view()->text->FinishUndo();
                moveCursorUpdate(false);
-               owner->getMiniBuffer()->Set(CurrentState());
+               owner->showState();
                break;
                
        case LFUN_ENDBUF:
                if(!owner->view()->text->mark_set)
                        owner->view()->beforeChange();
-               owner->view()->update(-2);
-               owner->view()->text->CursorBottom();
+               owner->view()->update(BufferView::SELECT|BufferView::FITCUR);
+               owner->view()->text->CursorBottom(owner->view());
                owner->view()->text->FinishUndo();
                moveCursorUpdate(false);
-               owner->getMiniBuffer()->Set(CurrentState());
+               owner->showState();
                break;
 
       
                /* cursor selection ---------------------------- */
        case LFUN_RIGHTSEL:
-               owner->view()->update(-2);
-               owner->view()->text->CursorRight();
+               owner->view()->update(BufferView::SELECT|BufferView::FITCUR);
+               if (owner->view()->text->cursor.par()->isRightToLeftPar(owner->buffer()->params))
+                       owner->view()->text->CursorLeft(owner->view());
+               else
+                       owner->view()->text->CursorRight(owner->view());
                owner->view()->text->FinishUndo();
                moveCursorUpdate(true);
-               owner->getMiniBuffer()->Set(CurrentState());
+               owner->showState();
                break;
                
        case LFUN_LEFTSEL:
-               owner->view()->update(-2);
-               owner->view()->text->CursorLeft();
+               owner->view()->update(BufferView::SELECT|BufferView::FITCUR);
+               if (owner->view()->text->cursor.par()->isRightToLeftPar(owner->buffer()->params))
+                       owner->view()->text->CursorRight(owner->view());
+               else
+                       owner->view()->text->CursorLeft(owner->view());
                owner->view()->text->FinishUndo();
                moveCursorUpdate(true);
-               owner->getMiniBuffer()->Set(CurrentState());
+               owner->showState();
                break;
                
        case LFUN_UPSEL:
-               owner->view()->update(-2);
-               owner->view()->text->CursorUp();
+               owner->view()->update(BufferView::SELECT|BufferView::FITCUR);
+               owner->view()->text->CursorUp(owner->view());
                owner->view()->text->FinishUndo();
                moveCursorUpdate(true);
-               owner->getMiniBuffer()->Set(CurrentState());
+               owner->showState();
                break;
                
        case LFUN_DOWNSEL:
-               owner->view()->update(-2);
-               owner->view()->text->CursorDown();
+               owner->view()->update(BufferView::SELECT|BufferView::FITCUR);
+               owner->view()->text->CursorDown(owner->view());
                owner->view()->text->FinishUndo();
                moveCursorUpdate(true);
-               owner->getMiniBuffer()->Set(CurrentState());
+               owner->showState();
                break;
 
        case LFUN_UP_PARAGRAPHSEL:
-               owner->view()->update(-2);
-               owner->view()->text->CursorUpParagraph();
+               owner->view()->update(BufferView::SELECT|BufferView::FITCUR);
+               owner->view()->text->CursorUpParagraph(owner->view());
                owner->view()->text->FinishUndo();
                moveCursorUpdate(true);
-               owner->getMiniBuffer()->Set(CurrentState());
+               owner->showState();
                break;
                
        case LFUN_DOWN_PARAGRAPHSEL:
-               owner->view()->update(-2);
-               owner->view()->text->CursorDownParagraph();
+               owner->view()->update(BufferView::SELECT|BufferView::FITCUR);
+               owner->view()->text->CursorDownParagraph(owner->view());
                owner->view()->text->FinishUndo();
                moveCursorUpdate(true);
-               owner->getMiniBuffer()->Set(CurrentState());
+               owner->showState();
                break;
                
        case LFUN_PRIORSEL:
-               owner->view()->update(-2);
+               owner->view()->update(BufferView::SELECT|BufferView::FITCUR);
                owner->view()->cursorPrevious();
                owner->view()->text->FinishUndo();
                moveCursorUpdate(true);
-               owner->getMiniBuffer()->Set(CurrentState());
+               owner->showState();
                break;
                
        case LFUN_NEXTSEL:
-               owner->view()->update(-2);
+               owner->view()->update(BufferView::SELECT|BufferView::FITCUR);
                owner->view()->cursorNext();
                owner->view()->text->FinishUndo();
                moveCursorUpdate(true);
-               owner->getMiniBuffer()->Set(CurrentState());
+               owner->showState();
                break;
                
        case LFUN_HOMESEL:
-               owner->view()->update(-2);
-               owner->view()->text->CursorHome();
+               owner->view()->update(BufferView::SELECT|BufferView::FITCUR);
+               owner->view()->text->CursorHome(owner->view());
                owner->view()->text->FinishUndo();
                moveCursorUpdate(true);
-               owner->getMiniBuffer()->Set(CurrentState());
+               owner->showState();
                break;
                
        case LFUN_ENDSEL:
-               owner->view()->update(-2);
-               owner->view()->text->CursorEnd();
+               owner->view()->update(BufferView::SELECT|BufferView::FITCUR);
+               owner->view()->text->CursorEnd(owner->view());
                owner->view()->text->FinishUndo();
                moveCursorUpdate(true);
-               owner->getMiniBuffer()->Set(CurrentState());
+               owner->showState();
                break;
                
        case LFUN_WORDRIGHTSEL:
-               owner->view()->update(-2);
-               owner->view()->text->CursorRightOneWord();
+               owner->view()->update(BufferView::SELECT|BufferView::FITCUR);
+               if (owner->view()->text->cursor.par()->isRightToLeftPar(owner->buffer()->params))
+                       owner->view()->text->CursorLeftOneWord(owner->view());
+               else
+                       owner->view()->text->CursorRightOneWord(owner->view());
                owner->view()->text->FinishUndo();
                moveCursorUpdate(true);
-               owner->getMiniBuffer()->Set(CurrentState());
+               owner->showState();
                break;
                
        case LFUN_WORDLEFTSEL:
-               owner->view()->update(-2);
-               owner->view()->text->CursorLeftOneWord();
+               owner->view()->update(BufferView::SELECT|BufferView::FITCUR);
+               if (owner->view()->text->cursor.par()->isRightToLeftPar(owner->buffer()->params))
+                       owner->view()->text->CursorRightOneWord(owner->view());
+               else
+                       owner->view()->text->CursorLeftOneWord(owner->view());
                owner->view()->text->FinishUndo();
                moveCursorUpdate(true);
-               owner->getMiniBuffer()->Set(CurrentState());
+               owner->showState();
                break;
                
        case LFUN_BEGINNINGBUFSEL:
-               owner->view()->update(-2);
-               owner->view()->text->CursorTop();
+               owner->view()->update(BufferView::SELECT|BufferView::FITCUR);
+               owner->view()->text->CursorTop(owner->view());
                owner->view()->text->FinishUndo();
                moveCursorUpdate(true);
-               owner->getMiniBuffer()->Set(CurrentState());
+               owner->showState();
                break;
                
        case LFUN_ENDBUFSEL:
-               owner->view()->update(-2);
-               owner->view()->text->CursorBottom();
+               owner->view()->update(BufferView::SELECT|BufferView::FITCUR);
+               owner->view()->text->CursorBottom(owner->view());
                owner->view()->text->FinishUndo();
                moveCursorUpdate(true);
-               owner->getMiniBuffer()->Set(CurrentState());
+               owner->showState();
                break;
 
                // --- text changing commands ------------------------
        case LFUN_BREAKLINE:
                owner->view()->beforeChange();
-               owner->view()->text->InsertChar(LyXParagraph::META_NEWLINE);
-               owner->view()->smallUpdate(1);
-               SetUpdateTimer(0.01);
+               owner->view()->text->InsertChar(owner->view(), LyXParagraph::META_NEWLINE);
+               owner->view()->update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
                moveCursorUpdate(false);
                break;
                
        case LFUN_PROTECTEDSPACE:
-               owner->view()->beforeChange();
-               owner->view()->text->
-                       InsertChar(LyXParagraph::META_PROTECTED_SEPARATOR);
-               owner->view()->smallUpdate(1);
-               SetUpdateTimer();
-                moveCursorUpdate(false);
-               break;
+       {
+               LyXLayout const & style =
+                       textclasslist.Style(owner->view()->buffer()->params.textclass,
+                                           owner->view()->text->cursor.par()->GetLayout());
+
+               if (style.free_spacing) {
+                       owner->view()->text->InsertChar(owner->view(), ' ');
+                       owner->view()->update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
+               } else {
+                       owner->view()->protectedBlank();
+               }
+               moveCursorUpdate(false);
+       }
+       break;
                
        case LFUN_SETMARK:
                if(owner->view()->text->mark_set) {
                        owner->view()->beforeChange();
-                       owner->view()->update(0);
+                       owner->view()->update(BufferView::SELECT|BufferView::FITCUR);
                        setMessage(N_("Mark removed"));
                } else {
                        owner->view()->beforeChange();
                        owner->view()->text->mark_set = 1;
-                       owner->view()->update(0);
+                       owner->view()->update(BufferView::SELECT|BufferView::FITCUR);
                        setMessage(N_("Mark set"));
                }
                owner->view()->text->sel_cursor = 
@@ -1582,19 +1982,20 @@ string LyXFunc::Dispatch(int ac,
                break;
                
        case LFUN_DELETE:
-               FreeUpdateTimer();
                if (!owner->view()->text->selection) {
-                       owner->view()->text->Delete();
+                       owner->view()->text->Delete(owner->view());
                        owner->view()->text->sel_cursor = 
                                owner->view()->text->cursor;
-                       owner->view()->smallUpdate(1);
+                       owner->view()->update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
                        // It is possible to make it a lot faster still
                        // just comment out the lone below...
-                       owner->view()->getScreen()->ShowCursor();
+                       owner->view()->showCursor();
                } else {
                        owner->view()->cut();
                }
-               SetUpdateTimer();
+               moveCursorUpdate(false);
+               owner->showState();
+               owner->view()->setState();
                break;
 
        case LFUN_DELETE_SKIP:
@@ -1603,79 +2004,74 @@ string LyXFunc::Dispatch(int ac,
                
                LyXCursor cursor = owner->view()->text->cursor;
 
-               FreeUpdateTimer();
                if (!owner->view()->text->selection) {
-                       if (cursor.pos == cursor.par->Last()) {
-                               owner->view()->text->CursorRight();
+                       if (cursor.pos() == cursor.par()->Last()) {
+                               owner->view()->text->CursorRight(owner->view());
                                cursor = owner->view()->text->cursor;
-                               if (cursor.pos == 0
-                                   && !(cursor.par->added_space_top 
+                               if (cursor.pos() == 0
+                                   && !(cursor.par()->added_space_top 
                                         == VSpace (VSpace::NONE))) {
                                        owner->view()->text->SetParagraph
-                                               (cursor.par->line_top,
-                                                cursor.par->line_bottom,
-                                                cursor.par->pagebreak_top, 
-                                                cursor.par->pagebreak_bottom,
+                                               (owner->view(),
+                                                cursor.par()->line_top,
+                                                cursor.par()->line_bottom,
+                                                cursor.par()->pagebreak_top, 
+                                                cursor.par()->pagebreak_bottom,
                                                 VSpace(VSpace::NONE), 
-                                                cursor.par->added_space_bottom,
-                                                cursor.par->align, 
-                                                cursor.par->labelwidthstring, 0);
-                                       owner->view()->text->CursorLeft();
-                                       owner->view()->update (1);
+                                                cursor.par()->added_space_bottom,
+                                                cursor.par()->align, 
+                                                cursor.par()->labelwidthstring, 0);
+                                       owner->view()->text->CursorLeft(owner->view());
+                                       owner->view()->update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
                                } else {
-                                       owner->view()->text->CursorLeft();
-                                       owner->view()->text->Delete();
+                                       owner->view()->text->CursorLeft(owner->view());
+                                       owner->view()->text->Delete(owner->view());
                                        owner->view()->text->sel_cursor = 
                                                owner->view()->text->cursor;
-                                       owner->view()->smallUpdate(1);
+                                       owner->view()->update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
                                }
                        } else {
-                               owner->view()->text->Delete();
+                               owner->view()->text->Delete(owner->view());
                                owner->view()->text->sel_cursor = 
                                        owner->view()->text->cursor;
-                               owner->view()->smallUpdate(1);
+                               owner->view()->update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
                        }
                } else {
                        owner->view()->cut();
                }
-               SetUpdateTimer();
        }
        break;
 
        /* -------> Delete word forward. */
        case LFUN_DELETE_WORD_FORWARD:
-               owner->view()->update(-2);
-               FreeUpdateTimer();
-               owner->view()->text->DeleteWordForward();
-               owner->view()->update( 1 );
-               SetUpdateTimer();
+               owner->view()->update(BufferView::SELECT|BufferView::FITCUR);
+               owner->view()->text->DeleteWordForward(owner->view());
+               owner->view()->update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
                moveCursorUpdate(false);
+               owner->showState();
                break;
 
                /* -------> Delete word backward. */
        case LFUN_DELETE_WORD_BACKWARD:
-               owner->view()->update(-2);
-               FreeUpdateTimer();
-               owner->view()->text->DeleteWordBackward();
-               owner->view()->update( 1 );
-               SetUpdateTimer();
+               owner->view()->update(BufferView::SELECT|BufferView::FITCUR);
+               owner->view()->text->DeleteWordBackward(owner->view());
+               owner->view()->update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
                moveCursorUpdate(false);
+               owner->showState();
                break;
                
                /* -------> Kill to end of line. */
        case LFUN_DELETE_LINE_FORWARD:
-               FreeUpdateTimer();
-               owner->view()->update(-2);
-               owner->view()->text->DeleteLineForward();
-               owner->view()->update( 1 );
-               SetUpdateTimer();
+               owner->view()->update(BufferView::SELECT|BufferView::FITCUR);
+               owner->view()->text->DeleteLineForward(owner->view());
+               owner->view()->update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
                moveCursorUpdate(false);
                break;
                
                /* -------> Set mark off. */
        case LFUN_MARK_OFF:
                owner->view()->beforeChange();
-               owner->view()->update(0);
+               owner->view()->update(BufferView::SELECT|BufferView::FITCUR);
                owner->view()->text->sel_cursor = 
                        owner->view()->text->cursor;
                setMessage(N_("Mark off"));
@@ -1685,7 +2081,7 @@ string LyXFunc::Dispatch(int ac,
        case LFUN_MARK_ON:
                owner->view()->beforeChange();
                owner->view()->text->mark_set = 1;
-               owner->view()->update( 0 );
+               owner->view()->update(BufferView::SELECT|BufferView::FITCUR);
                owner->view()->text->sel_cursor = 
                        owner->view()->text->cursor;
                setMessage(N_("Mark on"));
@@ -1693,21 +2089,21 @@ string LyXFunc::Dispatch(int ac,
                
        case LFUN_BACKSPACE:
        {
-               FreeUpdateTimer();
                if (!owner->view()->text->selection) {
                        if (owner->getIntl()->getTrans()->backspace()) {
-                               owner->view()->text->Backspace();
+                               owner->view()->text->Backspace(owner->view());
                                owner->view()->text->sel_cursor = 
                                        owner->view()->text->cursor;
-                               owner->view()->smallUpdate(1);
+                               owner->view()->update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
                                // It is possible to make it a lot faster still
                                // just comment out the lone below...
-                               owner->view()->getScreen()->ShowCursor();
+                               owner->view()->showCursor();
                        }
                } else {
                        owner->view()->cut();
                }
-               SetUpdateTimer();
+               owner->showState();
+               owner->view()->setState();
        }
        break;
 
@@ -1717,51 +2113,52 @@ string LyXFunc::Dispatch(int ac,
                
                LyXCursor cursor = owner->view()->text->cursor;
                
-               FreeUpdateTimer();
                if (!owner->view()->text->selection) {
-                       if (cursor.pos == 0 
-                           && !(cursor.par->added_space_top 
+                       if (cursor.pos() == 0 
+                           && !(cursor.par()->added_space_top 
                                 == VSpace (VSpace::NONE))) {
                                owner->view()->text->SetParagraph 
-                                       (cursor.par->line_top,      
-                                        cursor.par->line_bottom,
-                                        cursor.par->pagebreak_top, 
-                                        cursor.par->pagebreak_bottom,
-                                        VSpace(VSpace::NONE), cursor.par->added_space_bottom,
-                                        cursor.par->align, 
-                                        cursor.par->labelwidthstring, 0);
-                               owner->view()->update (1);
+                                       (owner->view(),
+                                        cursor.par()->line_top,      
+                                        cursor.par()->line_bottom,
+                                        cursor.par()->pagebreak_top, 
+                                        cursor.par()->pagebreak_bottom,
+                                        VSpace(VSpace::NONE), cursor.par()->added_space_bottom,
+                                        cursor.par()->align, 
+                                        cursor.par()->labelwidthstring, 0);
+                               owner->view()->update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
                        } else {
-                               owner->view()->text->Backspace();
+                               owner->view()->text->Backspace(owner->view());
                                owner->view()->text->sel_cursor 
                                        = cursor;
-                               owner->view()->smallUpdate (1);
+                               owner->view()->update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
                        }
                } else
                        owner->view()->cut();
-               SetUpdateTimer();
        }
        break;
 
        case LFUN_BREAKPARAGRAPH:
        {
                owner->view()->beforeChange();
-               owner->view()->text->BreakParagraph(0);
-               owner->view()->smallUpdate(1);
-               SetUpdateTimer(0.01);
+               owner->view()->text->BreakParagraph(owner->view(), 0);
+               owner->view()->update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
                owner->view()->text->sel_cursor = 
                        owner->view()->text->cursor;
+               owner->view()->setState();
+               owner->showState();
                break;
        }
 
        case LFUN_BREAKPARAGRAPHKEEPLAYOUT:
        {
                owner->view()->beforeChange();
-               owner->view()->text->BreakParagraph(1);
-               owner->view()->smallUpdate(1);
-               SetUpdateTimer(0.01);
+               owner->view()->text->BreakParagraph(owner->view(), 1);
+               owner->view()->update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
                owner->view()->text->sel_cursor = 
                        owner->view()->text->cursor;
+               owner->view()->setState();
+               owner->showState();
                break;
        }
        
@@ -1774,46 +2171,239 @@ string LyXFunc::Dispatch(int ac,
                LyXCursor cursor = owner->view()->text->cursor;
                
                owner->view()->beforeChange();
-               if (cursor.pos == 0) {
-                       if (cursor.par->added_space_top == VSpace(VSpace::NONE)) {
+               if (cursor.pos() == 0) {
+                       if (cursor.par()->added_space_top == VSpace(VSpace::NONE)) {
                                owner->view()->text->SetParagraph
-                                       (cursor.par->line_top,      
-                                        cursor.par->line_bottom,
-                                        cursor.par->pagebreak_top, 
-                                        cursor.par->pagebreak_bottom,
-                                        VSpace(VSpace::DEFSKIP), cursor.par->added_space_bottom,
-                                        cursor.par->align, 
-                                        cursor.par->labelwidthstring, 1);
-                               owner->view()->update(1);
+                                       (owner->view(),
+                                        cursor.par()->line_top,      
+                                        cursor.par()->line_bottom,
+                                        cursor.par()->pagebreak_top, 
+                                        cursor.par()->pagebreak_bottom,
+                                        VSpace(VSpace::DEFSKIP), cursor.par()->added_space_bottom,
+                                        cursor.par()->align, 
+                                        cursor.par()->labelwidthstring, 1);
+                               //owner->view()->update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
                        } 
                }
                else {
-                       owner->view()->text->BreakParagraph(0);
-                       owner->view()->smallUpdate(1);
+                       owner->view()->text->BreakParagraph(owner->view(), 0);
+                       //owner->view()->update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
                }
-               SetUpdateTimer(0.01);
+
+               owner->view()->update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
                owner->view()->text->sel_cursor = cursor;
+               owner->view()->setState();
+               owner->showState();
+       }
+       break;
+
+       case LFUN_PARAGRAPH_SPACING:
+       {
+               LyXParagraph * par = owner->view()->text->cursor.par();
+               Spacing::Space cur_spacing = par->spacing.getSpace();
+               float cur_value = 1.0;
+               if (cur_spacing == Spacing::Other) {
+                       cur_value = par->spacing.getValue();
+               }
+               
+#ifdef HAVE_SSTREAM
+               istringstream istr(argument);
+#else
+               istrstream istr(argument.c_str());
+#endif
+               string tmp;
+               istr >> tmp;
+               Spacing::Space new_spacing = cur_spacing;
+               float new_value = cur_value;
+               if (tmp.empty()) {
+                       lyxerr << "Missing argument to `paragraph-spacing'"
+                              << endl;
+               } else if (tmp == "single") {
+                       new_spacing = Spacing::Single;
+               } else if (tmp == "onehalf") {
+                       new_spacing = Spacing::Onehalf;
+               } else if (tmp == "double") {
+                       new_spacing = Spacing::Double;
+               } else if (tmp == "other") {
+                       new_spacing = Spacing::Other;
+                       float tmpval = 0.0;
+                       istr >> tmpval;
+                       lyxerr << "new_value = " << tmpval << endl;
+                       if (tmpval != 0.0)
+                               new_value = tmpval;
+               } else if (tmp == "default") {
+                       new_spacing = Spacing::Default;
+               } else {
+                       lyxerr << _("Unknown spacing argument: ")
+                              << argument << endl;
+               }
+               if (cur_spacing != new_spacing || cur_value != new_value) {
+                       par->spacing.set(new_spacing, new_value);
+                       owner->view()->text->RedoParagraph(owner->view());
+                       owner->view()->update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
+               }
        }
        break;
        
        case LFUN_QUOTE:
                owner->view()->beforeChange();
-               owner->view()->text->InsertChar('\"');  // This " matches the single quote in the code
-               owner->view()->smallUpdate(1);
-               SetUpdateTimer();
+               owner->view()->text->InsertChar(owner->view(), '\"');  // This " matches the single quote in the code
+               owner->view()->update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
                 moveCursorUpdate(false);
                break;
 
        case LFUN_HTMLURL:
        case LFUN_URL:
        {
-               InsetCommand * new_inset;
+               InsetCommandParams p;
                if (action == LFUN_HTMLURL)
-                       new_inset = new InsetUrl("htmlurl", "", "");
+                       p.setCmdName("htmlurl");
+               else
+                       p.setCmdName("url");
+               owner->getDialogs()->createUrl( p.getAsString() );
+       }
+       break;
+                   
+       case LFUN_INSERT_URL:
+       {
+               InsetCommandParams p;
+               p.setFromString( argument );
+
+               InsetUrl * inset = new InsetUrl( p );
+               if (!owner->view()->insertInset(inset))
+                       delete inset;
                else
-                       new_inset = new InsetUrl("url", "", "");
-               owner->view()->insertInset(new_inset);
-               new_inset->Edit(0, 0);
+                       owner->view()->updateInset( inset, true );
+       }
+       break;
+                   
+       case LFUN_INSET_TEXT:
+       {
+               InsetText * new_inset = new InsetText;
+               if (owner->view()->insertInset(new_inset))
+                       new_inset->Edit(owner->view(), 0, 0, 0);
+               else
+                       delete new_inset;
+       }
+       break;
+       
+       case LFUN_INSET_ERT:
+       {
+               InsetERT * new_inset = new InsetERT;
+               if (owner->view()->insertInset(new_inset))
+                       new_inset->Edit(owner->view(), 0, 0, 0);
+               else
+                       delete new_inset;
+       }
+       break;
+       
+       case LFUN_INSET_EXTERNAL:
+       {
+               InsetExternal * new_inset = new InsetExternal;
+               if (owner->view()->insertInset(new_inset))
+                       new_inset->Edit(owner->view(), 0, 0, 0);
+               else
+                       delete new_inset;
+       }
+       break;
+       
+       case LFUN_INSET_FOOTNOTE:
+       {
+               InsetFoot * new_inset = new InsetFoot;
+               if (owner->view()->insertInset(new_inset))
+                       new_inset->Edit(owner->view(), 0, 0, 0);
+               else
+                       delete new_inset;
+       }
+       break;
+
+       case LFUN_INSET_MARGINAL:
+       {
+               InsetMarginal * new_inset = new InsetMarginal;
+               if (owner->view()->insertInset(new_inset))
+                       new_inset->Edit(owner->view(), 0, 0, 0);
+               else
+                       delete new_inset;
+       }
+       break;
+
+       case LFUN_INSET_MINIPAGE:
+       {
+               InsetMinipage * new_inset = new InsetMinipage;
+               if (owner->view()->insertInset(new_inset))
+                       new_inset->Edit(owner->view(), 0, 0, 0);
+               else
+                       delete new_inset;
+       }
+       break;
+
+       case LFUN_INSET_FLOAT:
+       {
+               // check if the float type exist
+               if (floatList.typeExist(argument)) {
+                       InsetFloat * new_inset = new InsetFloat(argument);
+                       if (owner->view()->insertInset(new_inset))
+                               new_inset->Edit(owner->view(), 0, 0, 0);
+                       else
+                               delete new_inset;
+               } else {
+                       lyxerr << "Non-existant float type: "
+                              << argument << endl;
+               }
+               
+       }
+       break;
+
+       case LFUN_INSET_LIST:
+       {
+               InsetList * new_inset = new InsetList;
+               if (owner->view()->insertInset(new_inset))
+                       new_inset->Edit(owner->view(), 0, 0, 0);
+               else
+                       delete new_inset;
+       }
+       break;
+
+       case LFUN_INSET_THEOREM:
+       {
+               InsetTheorem * new_inset = new InsetTheorem;
+               if (owner->view()->insertInset(new_inset))
+                       new_inset->Edit(owner->view(), 0, 0, 0);
+               else
+                       delete new_inset;
+       }
+       break;
+
+       case LFUN_INSET_CAPTION:
+       {
+               // Do we have a locking inset...
+               if (owner->view()->the_locking_inset) {
+                       lyxerr << "Locking inset code: "
+                              << static_cast<int>(owner->view()->the_locking_inset->LyxCode());
+                       InsetCaption * new_inset = new InsetCaption;
+                       new_inset->setOwner(owner->view()->the_locking_inset);
+                       new_inset->SetAutoBreakRows(true);
+                       new_inset->SetDrawFrame(0, InsetText::LOCKED);
+                       new_inset->SetFrameColor(0, LColor::footnoteframe);
+                       if (owner->view()->insertInset(new_inset))
+                               new_inset->Edit(owner->view(), 0, 0, 0);
+                       else
+                               delete new_inset;
+               }
+       }
+       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);
+               if (owner->view()->insertInset(new_inset))
+                       new_inset->Edit(owner->view(), 0, 0, 0);
+               else
+                       delete new_inset;
        }
        break;
 
@@ -1822,10 +2412,13 @@ string LyXFunc::Dispatch(int ac,
        case LFUN_CHARATCURSOR:
        {
                LyXParagraph::size_type pos = 
-                       owner->view()->text->cursor.pos;
-               if(pos < owner->view()->text->cursor.par->size())
-                       dispatch_buffer = owner->view()->text->
-                               cursor.par->text[pos];
+                       owner->view()->text->cursor.pos();
+               if(pos < owner->view()->text->cursor.par()->size())
+                       //dispatch_buffer = owner->view()->text->
+                       //      cursor.par()->text[pos];
+                       dispatch_buffer =
+                               owner->view()->text->
+                               cursor.par()->GetChar(pos);
                else
                        dispatch_buffer = "EOF";
        }
@@ -1833,8 +2426,8 @@ string LyXFunc::Dispatch(int ac,
        
        case LFUN_GETXY:
                dispatch_buffer = 
-                       tostr(owner->view()->text->cursor.x) + ' '
-                       + tostr(owner->view()->text->cursor.y);
+                       tostr(owner->view()->text->cursor.x()) + ' '
+                       + tostr(owner->view()->text->cursor.y());
                break;
                
        case LFUN_SETXY:
@@ -1842,21 +2435,21 @@ string LyXFunc::Dispatch(int ac,
                int  x;
                long y;
                sscanf(argument.c_str(), " %d %ld", &x, &y);
-               owner->view()->text->SetCursorFromCoordinates(x, y);
+               owner->view()->text->SetCursorFromCoordinates(owner->view(), x, y);
        }
        break;
        
        case LFUN_GETLAYOUT:
                dispatch_buffer =  
-                       tostr(owner->view()->text->cursor.par->layout);
+                       tostr(owner->view()->text->cursor.par()->layout);
                break;
                        
        case LFUN_GETFONT:
        {
-               LyXFont * font = &(owner->view()->text->current_font);
-                if(font->shape() == LyXFont::ITALIC_SHAPE)
+               LyXFont & font = owner->view()->text->current_font;
+                if(font.shape() == LyXFont::ITALIC_SHAPE)
                        dispatch_buffer = 'E';
-                else if(font->shape() == LyXFont::SMALLCAPS_SHAPE)
+                else if(font.shape() == LyXFont::SMALLCAPS_SHAPE)
                        dispatch_buffer = 'N';
                 else
                        dispatch_buffer = '0';
@@ -1866,8 +2459,8 @@ string LyXFunc::Dispatch(int ac,
 
        case LFUN_GETLATEX:
        {
-               LyXFont * font = &(owner->view()->text->current_font);
-                if(font->latex() == LyXFont::ON)
+               LyXFont & font = owner->view()->text->current_font;
+                if(font.latex() == LyXFont::ON)
                        dispatch_buffer = 'L';
                 else
                        dispatch_buffer = '0';
@@ -1897,7 +2490,7 @@ string LyXFunc::Dispatch(int ac,
                sscanf(argument.c_str(), " %s %d", file_name, &row);
 
                // Must replace extension of the file to be .lyx and get full path
-               string s = ChangeExtension(string(file_name), ".lyx", false);
+               string s = ChangeExtension(string(file_name), ".lyx");
 
                // Either change buffer or load the file
                if (bufferlist.exists(s))
@@ -1909,18 +2502,7 @@ string LyXFunc::Dispatch(int ac,
                owner->view()->setCursorFromRow(row);
 
                // Recenter screen
-               owner->view()->beforeChange();
-               if (owner->view()->text->cursor.y >
-                   owner->view()->getWorkArea()->h / 2)        {
-                       owner->view()->getScreen()->
-                               Draw(owner->view()->text->cursor.y -
-                                    owner->view()->getWorkArea()->h/2);
-               } else { // <= 
-                       owner->view()->getScreen()->
-                               Draw(0);
-               }
-               owner->view()->update(0);
-               owner->view()->redraw();
+               owner->view()->center();
        }
        break;
 
@@ -1952,12 +2534,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, 
@@ -1969,8 +2549,8 @@ string LyXFunc::Dispatch(int ac,
                keyseq.length = 0;
                
                // copied verbatim from do_accent_char
-               owner->view()->smallUpdate(1);
-               SetUpdateTimer();
+               owner->view()->update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
+
                owner->view()->text->sel_cursor = 
                        owner->view()->text->cursor;
        }   
@@ -1980,15 +2560,7 @@ string LyXFunc::Dispatch(int ac,
        case LFUN_PUSH_TOOLBAR:
        {
                int nth = strToInt(argument);
-               if (lyxerr.debugging(Debug::TOOLBAR)) {
-                       lyxerr << "LFUN_PUSH_TOOLBAR: argument = `"
-                              << argument << "'\n"
-                              << "LFUN_PUSH_TOOLBAR: nth = `"
-                              << nth << "'" << endl;
-               }
-               
                if (nth <= 0) {
-                       LyXBell();
                        setErrorMessage(N_("Push-toolbar needs argument > 0"));
                } else {
                        owner->getToolbar()->push(nth);
@@ -1998,7 +2570,7 @@ string LyXFunc::Dispatch(int ac,
        
        case LFUN_ADD_TO_TOOLBAR:
        {
-               if (lyxerr.debugging(Debug::TOOLBAR)) {
+               if (lyxerr.debugging(Debug::GUI)) {
                        lyxerr << "LFUN_ADD_TO_TOOLBAR:"
                                "argument = `" << argument << '\'' << endl;
                }
@@ -2006,7 +2578,6 @@ string LyXFunc::Dispatch(int ac,
                //lyxerr <<string("Argument: ") + argument);
                //lyxerr <<string("Tmp     : ") + tmp);
                if (tmp.empty()) {
-                       LyXBell();
                        setErrorMessage(N_("Usage: toolbar-add-to <LyX command>"));
                } else {
                        owner->getToolbar()->add(argument, false);
@@ -2016,14 +2587,7 @@ string LyXFunc::Dispatch(int ac,
        break;
        
        // --- insert characters ----------------------------------------
-#if 0
-       case LFUN_INSERT_INSET_LATEX:
-       {
-               Inset * new_inset = new InsetLatex(argument);
-               owner->buffer()->insertInset(new_inset);
-       }
-       break;
-#endif
+
        // ---  Mathed stuff. If we are here, there is no locked inset yet.
        
        // Greek mode     
@@ -2055,8 +2619,11 @@ string LyXFunc::Dispatch(int ac,
                if (owner->view()->available()) { 
                        owner->view()->
                                open_new_inset(new InsetFormula(false));
-                       owner->view()->
-                               the_locking_inset->LocalDispatch(action, argument.c_str());
+                       owner->view()
+                               ->the_locking_inset
+                               ->LocalDispatch(owner->view(),
+                                               action,
+                                               argument);
                }
        }          
        break;
@@ -2091,8 +2658,7 @@ string LyXFunc::Dispatch(int ac,
        break;
 
        case LFUN_MATH_MODE:   // Open or create a math inset
-       {
-               
+       {               
                if (owner->view()->available())
                        owner->view()->open_new_inset(new InsetFormula);
                setMessage(N_("Math editor mode"));
@@ -2103,27 +2669,42 @@ string LyXFunc::Dispatch(int ac,
        case LFUN_MATH_LIMITS:
        {
                setErrorMessage(N_("This is only allowed in math mode!"));
+       
+       }
+       break;
+
+       case LFUN_MATH_PANEL:
+       {
+               show_symbols_form(this);
        }
        break;
        
-       case LFUN_INSERT_CITATION:
-       {   
-               InsetCitation * new_inset = new InsetCitation();
-               // ale970405
-               // The note, if any, must be after the key, delimited
-               // by a | so both key and remark can have spaces.
-               if (!argument.empty()) {
-                       string lsarg(argument);
-                       if (contains(lsarg, "|")) {
-                               new_inset->setContents(token(lsarg, '|', 0));
-                               new_inset->setOptions(token(lsarg, '|', 1));
-                       } else
-                               new_inset->setContents(lsarg);
-                       owner->view()->insertInset(new_inset);
+       case LFUN_CITATION_CREATE:
+       {
+               // Should do this "at source"
+               InsetCommandParams p( "cite" );
+               
+               if (contains(argument, "|")) {
+                       p.setContents( token(argument, '|', 0) );
+                       p.setOptions(  token(argument, '|', 1) );
                } else {
-                       owner->view()->insertInset(new_inset);
-                       new_inset->Edit(0, 0);
+                       p.setContents( argument );
                }
+
+               owner->getDialogs()->createCitation( p.getAsString() );
+       }
+       break;
+                   
+       case LFUN_CITATION_INSERT:
+       {
+               InsetCommandParams p;
+               p.setFromString( argument );
+
+               InsetCitation * inset = new InsetCitation( p );
+               if (!owner->view()->insertInset(inset))
+                       delete inset;
+               else
+                       owner->view()->updateInset( inset, true );
        }
        break;
                    
@@ -2132,19 +2713,19 @@ string LyXFunc::Dispatch(int ac,
                // ale970405+lasgoutt970425
                // The argument can be up to two tokens separated 
                // by a space. The first one is the bibstyle.
-               string lsarg(argument);
-               string bibstyle = token(lsarg, ' ', 1);
+               string db       = token(argument, ' ', 0);
+               string bibstyle = token(argument, ' ', 1);
                if (bibstyle.empty())
                        bibstyle = "plain";
-               InsetBibtex * new_inset 
-                       = new InsetBibtex(token(lsarg, ' ', 0),
-                                         bibstyle,
-                                         owner->buffer());
+
+               InsetCommandParams p( "BibTeX", db, bibstyle );
+               InsetBibtex * inset = new InsetBibtex(p, owner->buffer());
                
-               owner->view()->insertInset(new_inset);
-               if (lsarg.empty()) {
-                       new_inset->Edit(0, 0);
-               }
+               if (owner->view()->insertInset(inset)) {
+                       if (argument.empty())
+                               inset->Edit(owner->view(), 0, 0, 0);
+               } else
+                       delete inset;
        }
        break;
                
@@ -2179,75 +2760,90 @@ string LyXFunc::Dispatch(int ac,
        }
        break;
                
-       case LFUN_INDEX_INSERT:
-       case LFUN_INDEX_INSERT_LAST:
+       case LFUN_INDEX_CREATE:
        {
-               // Can't do that at the beginning of a paragraph.
-               if (owner->view()->text->cursor.pos - 1 < 0)
-                       break;
+               InsetCommandParams p( "index" );
+               
+               if( argument.empty() ) {
+                       // Get the word immediately preceding the cursor
+                       LyXParagraph::size_type curpos = 
+                               owner->view()->text->cursor.pos() - 1;
 
-               InsetIndex * new_inset = new InsetIndex();
-               if (!argument.empty()) {
-                       string lsarg(argument);
-                       new_inset->setContents(lsarg);
-                       owner->view()->insertInset(new_inset);
+                       string curstring;
+                       if( curpos >= 0 )
+                               curstring = owner->view()->text
+                                           ->cursor.par()->GetWord(curpos);
+
+                       p.setContents( curstring );
                } else {
-                       //reh 98/09/21
-                       //get the current word for an argument
-                       LyXParagraph::size_type lastpos = 
-                               owner->view()->text->cursor.pos - 1;
-                       // Get the current word. note that this must be done
-                       // before inserting the inset, or the inset will
-                       // break the word
-                       string curstring(owner->view()
-                                        ->text->cursor.par->GetWord(lastpos));
-
-                       //make the new inset and write the current word into it
-                       InsetIndex * new_inset = new InsetIndex();
-
-                       new_inset->setContents(curstring);
-
-                       //don't edit it if the call was to INSERT_LAST
-                       if(action != LFUN_INDEX_INSERT_LAST) {
-                               new_inset->Edit(0, 0);
-                       } else {
-                               //it looks blank on the screen unless
-                               //we do  something.  put it here.
+                       p.setContents( argument );
+               }
 
-                               // move the cursor to the returned value of lastpos
-                               // but only for the auto-insert
-                               owner->view()->text->cursor.pos = lastpos;
-                       }
+               owner->getDialogs()->createIndex( p.getAsString() );
+       }
+       break;
+                   
+       case LFUN_INDEX_INSERT:
+       {
+               InsetCommandParams p;
+               p.setFromString( argument );
+               InsetIndex * inset = new InsetIndex( p );
 
-                       //put the new inset into the buffer.
-                       // there should be some way of knowing the user
-                       //cancelled & avoiding this, but i don't know how
-                       owner->view()->insertInset(new_inset);
-               }
+               if (!owner->view()->insertInset(inset))
+                       delete inset;
+               else
+                       owner->view()->updateInset( inset, true );
        }
        break;
+                   
+       case LFUN_INDEX_INSERT_LAST:
+       {
+               // Get word immediately preceding the cursor
+               LyXParagraph::size_type curpos = 
+                       owner->view()->text->cursor.pos() - 1;
+               // Can't do that at the beginning of a paragraph
+               if( curpos < 0 ) break;
+
+               string curstring( owner->view()->text
+                                 ->cursor.par()->GetWord(curpos) );
+
+               InsetCommandParams p( "index", curstring );
+               InsetIndex * inset = new InsetIndex( p );
 
+               if (!owner->view()->insertInset(inset))
+                       delete inset;
+               else
+                       owner->view()->updateInset( inset, true );
+       }
+       break;
+                   
        case LFUN_INDEX_PRINT:
        {
-               Inset * new_inset = new InsetPrintIndex(owner->buffer());
-               owner->view()->insertInset(new_inset, "Standard", true);
+               InsetCommandParams p( "printindex" );
+               Inset * inset = new InsetPrintIndex(p);
+               if (!owner->view()->insertInset(inset, "Standard", true))
+                       delete inset;
        }
        break;
 
        case LFUN_PARENTINSERT:
        {
                lyxerr << "arg " << argument << endl;
-               Inset * new_inset = new InsetParent(argument, owner->buffer());
-               owner->view()->insertInset(new_inset, "Standard", true);
+               InsetCommandParams p( "lyxparent", argument );
+               Inset * inset = new InsetParent(p, owner->buffer());
+               if (!owner->view()->insertInset(inset, "Standard", true))
+                       delete inset;
        }
        break;
 
        case LFUN_CHILDINSERT:
        {
-               Inset * new_inset = new InsetInclude(argument,
-                                                    owner->buffer());
-               owner->view()->insertInset(new_inset, "Standard", true);
-               new_inset->Edit(0, 0);
+               InsetCommandParams p( "Include", argument );
+               Inset * inset = new InsetInclude(p, owner->buffer());
+               if (owner->view()->insertInset(inset, "Standard", true))
+                       inset->Edit(owner->view(), 0, 0, 0);
+               else
+                       delete inset;
        }
        break;
 
@@ -2269,7 +2865,7 @@ string LyXFunc::Dispatch(int ac,
        case LFUN_INSERT_NOTE:
                owner->view()->insertNote();
                break;
-               
+#ifndef NEW_INSETS
        case LFUN_INSERTFOOTNOTE: 
        {
                LyXParagraph::footnote_kind kind;
@@ -2291,11 +2887,12 @@ string LyXFunc::Dispatch(int ac,
                        setErrorMessage(N_("Unknown kind of footnote"));
                        break;
                }
-               owner->view()->text->InsertFootnoteEnvironment(kind);
-               owner->view()->update(1);
+               owner->view()->text->InsertFootnoteEnvironment(owner->view(), kind);
+               owner->view()->update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
+               owner->view()->setState();
        }
        break;
-       
+#endif 
        case LFUN_BUFFERBULLETSSELECT:
                bulletForm();
                break;
@@ -2323,12 +2920,11 @@ string LyXFunc::Dispatch(int ac,
        case LFUN_SELFINSERT:
        {
                for (string::size_type i = 0; i < argument.length(); ++i) {
-                       owner->view()->text->InsertChar(argument[i]);
+                       owner->view()->text->InsertChar(owner->view(), 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(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
                }
-               SetUpdateTimer();
                owner->view()->text->sel_cursor = 
                        owner->view()->text->cursor;
                moveCursorUpdate(false);
@@ -2346,13 +2942,81 @@ string LyXFunc::Dispatch(int ac,
        }
        break;
 
+       case LFUN_DATE_INSERT:  // jdblair: date-insert cmd
+       {
+               struct tm * now_tm;
+               
+               time_t now_time_t = time(NULL);
+               now_tm = localtime(&now_time_t);
+               setlocale(LC_TIME, "");
+               string arg;
+               if (!argument.empty())
+                       arg = argument;
+               else 
+                       arg = lyxrc.date_insert_format;
+               char datetmp[32];
+               int datetmp_len = strftime(datetmp, 32, arg.c_str(), now_tm);
+               for (int i = 0; i < datetmp_len; i++) {
+                       owner->view()->text->InsertChar(owner->view(), datetmp[i]);
+                       owner->view()->update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
+               }
+
+               owner->view()->text->sel_cursor = owner->view()->text->cursor;
+               moveCursorUpdate(false);
+       }
+       break;
+
+       case LFUN_DIALOG_PREFERENCES:
+               owner->getDialogs()->showPreferences();
+               break;
+               
        case LFUN_SAVEPREFERENCES:
        {
                Path p(user_lyxdir);
-               lyxrc->write("preferences");
+               lyxrc.write("preferences");
        }
        break;
-       
+
+       case LFUN_SCREEN_FONT_UPDATE:
+       {
+               // handle the screen font changes.
+               // 
+               lyxrc.set_font_norm_type();
+               fontloader.update();
+               // Of course we should only do the resize and the textcache.clear
+               // if values really changed...but not very important right now. (Lgb)
+               // All buffers will need resize
+               bufferlist.resize();
+               // We also need to empty the textcache so that
+               // the buffer will be formatted correctly after
+               // a zoom change.
+               textcache.clear();
+       }
+
+       case LFUN_SET_COLOR:
+       {
+               string lyx_name, x11_name;
+               x11_name = split(argument, lyx_name, ' ');
+               if (lyx_name.empty() || x11_name.empty()) {
+                       LyXBell();
+                       setErrorMessage(N_("Syntax: set-color <lyx_name>"
+                                               " <x11_name>"));
+                       break;
+                       }
+
+               if (!lcolor.setColor(lyx_name, x11_name)) {
+                       static string err1 (N_("Set-color \""));
+                       static string err2 (N_("\" failed - color is undefined "
+                                               "or may not be redefined"));
+                       LyXBell();
+                       setErrorMessage(err1 + lyx_name + err2);
+                       break;
+               }
+               lyxColorHandler->updateColor(lcolor.getFromLyXName(lyx_name));
+               owner->view()->redraw();
+               break;
+       }
+
        case LFUN_UNKNOWN_ACTION:
        {
                if(!owner->buffer()) {
@@ -2375,14 +3039,15 @@ string LyXFunc::Dispatch(int ac,
                         * "auto_region_delete", which defaults to
                         * true (on). */
                
-                       if ( lyxrc->auto_region_delete ) {
+                       if ( lyxrc.auto_region_delete ) {
                                if (owner->view()->text->selection){
-                                       owner->view()->text->CutSelection(false);
-                                       owner->view()->update(-1);
+                                       owner->view()->text->CutSelection(owner->view(), false);
+                                       owner->view()->update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
                                }
                        }
                        
                        owner->view()->beforeChange();
+                       
                        for (string::size_type i = 0;
                             i < argument.length(); ++i) {
                                if (greek_kb_flag) {
@@ -2391,9 +3056,8 @@ string LyXFunc::Dispatch(int ac,
                                } else
                                        owner->getIntl()->getTrans()->TranslateAndInsert(argument[i], owner->view()->text);
                        }
-                       
-                       owner->view()->smallUpdate(1);
-                       SetUpdateTimer();
+
+                       owner->view()->update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
 
                        owner->view()->text->sel_cursor = 
                                owner->view()->text->cursor;
@@ -2443,7 +3107,7 @@ void LyXFunc::setupLocalKeymap()
 
 void LyXFunc::MenuNew(bool fromTemplate)
 {
-       string fname, initpath = lyxrc->document_path;
+       string fname, initpath = lyxrc.document_path;
        LyXFileDlg fileDlg;
 
        if (owner->view()->available()) {
@@ -2453,31 +3117,35 @@ void LyXFunc::MenuNew(bool fromTemplate)
                        initpath = trypath;
        }
 
-       ProhibitInput();
-       fileDlg.SetButton(0, _("Documents"), lyxrc->document_path);
-       fileDlg.SetButton(1, _("Templates"), lyxrc->template_path);
-       fname = fileDlg.Select(_("Enter Filename for new document"), 
-                              initpath, "*.lyx", _("newfile"));
-       AllowInput();
-       
-       if (fname.empty()) {
-               owner->getMiniBuffer()->Set(_("Canceled."));
-               lyxerr.debug() << "New Document Cancelled." << endl;
-               return;
-       }
-        
-       // get absolute path of file and make sure the filename ends
-       // with .lyx
-       string s = MakeAbsPath(fname);
-       if (!IsLyXFilename(s))
-               s += ".lyx";
+       static int newfile_number = 0;
+       string s;
 
-       // Check if the document already is open
-       if (bufferlist.exists(s)){
-               switch(AskConfirmation(_("Document is already open:"), 
-                                      MakeDisplayPath(s, 50),
-                                      _("Do you want to close that document now?\n"
-                                        "('No' will just switch to the open version)")))
+       if (lyxrc.new_ask_filename) {
+               ProhibitInput(owner->view());
+               fileDlg.SetButton(0, _("Documents"), lyxrc.document_path);
+               fileDlg.SetButton(1, _("Templates"), lyxrc.template_path);
+               fname = fileDlg.Select(_("Enter Filename for new document"), 
+                                      initpath, "*.lyx", _("newfile"));
+               AllowInput(owner->view());
+       
+               if (fname.empty()) {
+                       owner->getMiniBuffer()->Set(_("Canceled."));
+                       lyxerr.debug() << "New Document Cancelled." << endl;
+                       return;
+               }
+       
+               // get absolute path of file and make sure the filename ends
+               // with .lyx
+               s = MakeAbsPath(fname);
+               if (!IsLyXFilename(s))
+                       s += ".lyx";
+
+               // Check if the document already is open
+               if (bufferlist.exists(s)) {
+                       switch(AskConfirmation(_("Document is already open:"), 
+                                              MakeDisplayPath(s, 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)))
@@ -2491,37 +3159,46 @@ void LyXFunc::MenuNew(bool fromTemplate)
                                owner->getMiniBuffer()->Set(_("Canceled."));
                                return;
                        }
-       }
-        
-       // Check whether the file already exists
-       if (IsLyXFilename(s)) {
+               }
+               // Check whether the file already exists
+               if (IsLyXFilename(s)) {
+                       FileInfo fi(s);
+                       if (fi.readable() &&
+                           AskQuestion(_("File already exists:"), 
+                                       MakeDisplayPath(s, 50),
+                                       _("Do you want to open the document?"))) {
+                               // loads document
+                               owner->getMiniBuffer()->Set(_("Opening document"), 
+                                                           MakeDisplayPath(s), "...");
+                               XFlush(fl_display);
+                               owner->view()->buffer(
+                                       bufferlist.loadLyXFile(s));
+                               owner->getMiniBuffer()->Set(_("Document"),
+                                                           MakeDisplayPath(s),
+                                                           _("opened."));
+                               return;
+                       }
+               }
+       } else {
+               s = lyxrc.document_path + "newfile" + tostr(++newfile_number);
                FileInfo fi(s);
-               if (fi.readable() &&
-                   AskQuestion(_("File already exists:"), 
-                               MakeDisplayPath(s, 50),
-                               _("Do you want to open the document?"))) {
-                       // loads document
-                       owner->getMiniBuffer()->Set(_("Opening document"), 
-                                                   MakeDisplayPath(s), "...");
-                       XFlush(fl_display);
-                       owner->view()->buffer(
-                               bufferlist.loadLyXFile(s));
-                       owner->getMiniBuffer()->Set(_("Document"),
-                                                   MakeDisplayPath(s),
-                                                   _("opened."));
-                       return;
+               while (bufferlist.exists(s) || fi.readable()) {
+                       ++newfile_number;
+                       s = lyxrc.document_path + "newfile" +
+                               tostr(newfile_number);
+                       fi.newFile(s);
                }
        }
 
        // The template stuff
        string templname;
        if (fromTemplate) {
-               ProhibitInput();
+               ProhibitInput(owner->view());
                fname = fileDlg.Select(_("Choose template"),
-                                      lyxrc->template_path,
+                                      lyxrc.template_path,
                                       "*.lyx");
                 templname = fname;
-               AllowInput();
+               AllowInput(owner->view());
        }
   
        // find a free buffer
@@ -2532,7 +3209,7 @@ void LyXFunc::MenuNew(bool fromTemplate)
 
 void LyXFunc::MenuOpen()
 {
-       string initpath = lyxrc->document_path;
+       string initpath = lyxrc.document_path;
        LyXFileDlg fileDlg;
   
        if (owner->view()->available()) {
@@ -2543,13 +3220,13 @@ void LyXFunc::MenuOpen()
        }
 
        // launches dialog
-       ProhibitInput();
-       fileDlg.SetButton(0, _("Documents"), lyxrc->document_path);
+       ProhibitInput(owner->view());
+       fileDlg.SetButton(0, _("Documents"), lyxrc.document_path);
        fileDlg.SetButton(1, _("Examples"), 
                          AddPath(system_lyxdir, "examples"));
        string filename = fileDlg.Select(_("Select Document to Open"),
                                         initpath, "*.lyx");
-       AllowInput();
+       AllowInput(owner->view());
  
        // check selected filename
        if (filename.empty()) {
@@ -2578,53 +3255,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();
-       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();
+       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");
 
        // 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."));
@@ -2633,119 +3323,87 @@ 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(filename, linorpar);
-       owner->getMiniBuffer()->Set(_("ASCII file "),
-                                   MakeDisplayPath(filename),
-                                   _("imported."));
+       // notify user of import ahead
+       string displaypath = MakeDisplayPath(filename);
+       owner->getMiniBuffer()->Set(_("Importing"), displaypath, "...");
+
+       // call real importer
+       bool result = func(owner->view(), filename);
+
+       // we are done
+       if (result)
+               owner->getMiniBuffer()->Set(displaypath, _("imported."));
+       else
+               owner->getMiniBuffer()->Set(displaypath, _(": import failed."));
 }
 
+static
+bool doImportASCIIasLines(BufferView * view, string const & filename)
+{
+       view->buffer(bufferlist.newFile(filename, string()));
+       InsertAsciiFile(view, filename, false);
+       return true;
+}
 
-void LyXFunc::doImportLaTeX(bool isnoweb)
+static
+bool doImportASCIIasParagraphs(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;
-       }
+       view->buffer(bufferlist.newFile(filename, string()));
+       InsertAsciiFile(view, filename, true);
+       return true;
+}
 
-       // launches dialog
-       ProhibitInput();
-       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();
-       // check selected filename
-       if (filename.empty()) {
-               owner->getMiniBuffer()->Set(_("Canceled."));
-               return;
-       }
+static
+bool doImportLaTeX(BufferView * view, string const & filename)
+{
+       ImportLaTeX myImport(filename);
+       Buffer * openbuf = myImport.run();
+       if (openbuf) { 
+               view->buffer(openbuf);
+               return true;
+       }
+       else
+               return false;
+}
 
-       // get absolute path of file
-       filename = MakeAbsPath(filename);
+static
+bool doImportNoweb(BufferView * view, string const & filename)
+{
+       ImportNoweb myImport(filename);
+       Buffer * openbuf = myImport.run();
+       if (openbuf) { 
+               view->buffer(openbuf);
+               return true;
+       }
+       else
+               return false;
+}
 
-       // 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 doImportLinuxDoc(BufferView *, string const & filename)
+{
+       // run sgml2lyx
+       string tmp = lyxrc.linuxdoc_to_lyx_command + filename;
+       Systemcalls one;
+       Buffer * buf = 0;
 
-       // 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;
+       int result = one.startscript(Systemcalls::System, tmp);
+       if (result == 0) {
+               string filename = ChangeExtension(filename, ".lyx");
+               // File was generated without problems. Load it.
+               buf = bufferlist.loadLyXFile(filename);
        }
 
-       // 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));
-       }
+       return result == 0;
 }
 
 
@@ -2755,7 +3413,7 @@ void LyXFunc::MenuInsertLyXFile(string const & filen)
 
        if (filename.empty()) {
                // Launch a file browser
-               string initpath = lyxrc->document_path;
+               string initpath = lyxrc.document_path;
                LyXFileDlg fileDlg;
 
                if (owner->view()->available()) {
@@ -2766,13 +3424,13 @@ void LyXFunc::MenuInsertLyXFile(string const & filen)
                }
 
                // launches dialog
-               ProhibitInput();
-               fileDlg.SetButton(0, _("Documents"), lyxrc->document_path);
+               ProhibitInput(owner->view());
+               fileDlg.SetButton(0, _("Documents"), lyxrc.document_path);
                fileDlg.SetButton(1, _("Examples"), 
                                  AddPath(system_lyxdir, "examples"));
                filename = fileDlg.Select(_("Select Document to Insert"),
                                          initpath, "*.lyx");
-               AllowInput();
+               AllowInput(owner->view());
 
                // check selected filename
                if (filename.empty()) {
@@ -2801,6 +3459,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()
 {
@@ -2817,7 +3505,7 @@ void LyXFunc::CloseBuffer()
                        // need this otherwise SEGV may occur while trying to
                        // set variables that don't exist
                        // since there's no current buffer
-                       CloseAllBufferRelatedPopups();
+                       owner->getDialogs()->hideBufferDependent();
                }
                else {
                        owner->view()->buffer(bufferlist.first());
@@ -2828,23 +3516,15 @@ void LyXFunc::CloseBuffer()
 
 Inset * LyXFunc::getInsetByCode(Inset::Code code)
 {
-       bool found = false;
-       Inset * inset = 0;
        LyXCursor cursor = owner->view()->text->cursor;
-       LyXParagraph::size_type pos = cursor.pos;
-       LyXParagraph * par = cursor.par;
-       
-       while (par && !found) {
-               while ((inset = par->ReturnNextInsetPointer(pos))){
-                       if (inset->LyxCode() == code) {
-                               found = true;
-                               break;
-                       }
-                       ++pos;
-               } 
-               par = par->next;
+       Buffer * buffer = owner->view()->buffer();
+       for (Buffer::inset_iterator it = Buffer::inset_iterator(cursor.par(),
+                                                               cursor.pos());
+            it != buffer->inset_iterator_end(); ++it) {
+               if ((*it)->LyxCode() == code)
+                       return *it;
        }
-       return found ? inset : 0;
+       return 0;
 }