]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/LyXView.C
better selection and scrolling behaviour
[lyx.git] / src / frontends / LyXView.C
index 3db1cfa3a85c0481c7025a15639a4ebf594c9cf1..d805fee37175cec6c713a1110dd7bc6ae9d9a885 100644 (file)
@@ -1,10 +1,12 @@
 /**
  * \file LyXView.C
- * Copyright 1995-2002 the LyX Team
- * Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * \author Lars Gullik Bjornes
- * \author John Levon <moz@compsoc.man.ac.uk>
+ * \author Lars Gullik Bjønnes
+ * \author John Levon
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #include <config.h>
@@ -14,7 +16,6 @@
 #endif
 
 #include "LyXView.h"
-#include "minibuffer.h"
 #include "debug.h"
 #include "intl.h"
 #include "lyxrc.h"
 #include "MenuBackend.h"
 #include "gettext.h"
 #include "lyxfunc.h"
+#include "funcrequest.h"
 #include "lyx_cb.h"
 #include "BufferView.h"
 #include "bufferview_funcs.h"
-#include "lyxtextclasslist.h"
 
-#include "frontends/Dialogs.h"
-#include "frontends/Toolbar.h"
-#include "frontends/Timeout.h"
-#include "frontends/Menubar.h"
+#include "Dialogs.h"
+#include "Toolbar.h"
+#include "Timeout.h"
+#include "Menubar.h"
+#include "controllers/ControlCommandBuffer.h"
 
 #include "support/filetools.h" // OnlyFilename()
 
 
 using std::endl;
 
-extern void AutoSave(BufferView *);
-extern void QuitLyX();
-
 string current_layout;
 
 
 LyXView::LyXView()
+       : intl_(new Intl),
+         autosave_timeout_(new Timeout(5000)),
+         lyxfunc_(new LyXFunc(this)),
+         dialogs_(new Dialogs(*this)),
+         controlcommand_(new ControlCommandBuffer(getLyXFunc()))
 {
        lyxerr[Debug::INIT] << "Initializing LyXFunc" << endl;
-
-       lyxfunc_.reset(new LyXFunc(this));
-       intl_.reset(new Intl);
-
-       // Give the timeout some default sensible value.
-       autosave_timeout_.reset(new Timeout(5000));
-
-       dialogs_.reset(new Dialogs(this));
-       Dialogs::redrawGUI.connect(boost::bind(&LyXView::redraw, this));
 }
 
 
@@ -68,27 +63,31 @@ LyXView::~LyXView()
 }
 
 
-void LyXView::resize()
+void LyXView::init()
 {
-       view()->resize();
-}
+       updateLayoutChoice();
+       updateMenubar();
 
+       // Start autosave timer
+       if (lyxrc.autosave) {
+               autosave_timeout_->timeout.connect(boost::bind(&LyXView::autoSave, this));
+               autosave_timeout_->setTimeout(lyxrc.autosave * 1000);
+               autosave_timeout_->start();
+       }
 
-Buffer * LyXView::buffer() const
-{
-       return bufferview_->buffer();
+       intl_->InitKeyMapper(lyxrc.use_kbmap);
 }
 
 
-BufferView * LyXView::view() const
+Buffer * LyXView::buffer() const
 {
-       return bufferview_.get();
+       return bufferview_->buffer();
 }
 
 
-Toolbar * LyXView::getToolbar() const
+boost::shared_ptr<BufferView> const & LyXView::view() const
 {
-       return toolbar_.get();
+       return bufferview_;
 }
 
 
@@ -104,65 +103,19 @@ void LyXView::updateToolbar()
 }
 
 
-LyXFunc * LyXView::getLyXFunc() const
-{
-       return lyxfunc_.get();
-}
-
-
-MiniBuffer * LyXView::getMiniBuffer() const
-{
-       return minibuffer_.get();
-}
-
-
-void LyXView::message(string const & str)
-{
-       minibuffer_->message(str);
-}
-
-
-void LyXView::messagePush(string const & str)
-{
-       minibuffer_->messagePush(str);
-}
-
-
-void LyXView::messagePop()
-{
-       minibuffer_->messagePop();
-}
-
-
-Menubar * LyXView::getMenubar() const
-{
-       return menubar_.get();
-}
-
-
 void LyXView::updateMenubar()
 {
-       if (!view()->buffer() && menubackend.hasMenu("main_nobuffer")) {
-               menubar_->set("main_nobuffer");
-       } else {
-               menubar_->set("main");
-       }
-
        menubar_->update();
 }
 
 
-Intl * LyXView::getIntl() const
+void LyXView::autoSave()
 {
-       return intl_.get();
-}
+       lyxerr[Debug::INFO] << "Running autoSave()" << endl;
 
-
-void LyXView::AutoSave()
-{
-       lyxerr[Debug::INFO] << "Running AutoSave()" << endl;
-       if (view()->available())
-               ::AutoSave(view());
+       if (view()->available()) {
+               ::AutoSave(view().get());
+       }
 }
 
 
@@ -173,12 +126,6 @@ void LyXView::resetAutosaveTimer()
 }
 
 
-void LyXView::invalidateLayoutChoice()
-{
-       last_textclass_ = -1;
-}
-
-
 void LyXView::updateLayoutChoice()
 {
        // don't show any layouts without a buffer
@@ -188,16 +135,12 @@ void LyXView::updateLayoutChoice()
        }
 
        // update the layout display
-       if (last_textclass_ != int(buffer()->params.textclass)) {
-               toolbar_->updateLayoutList(true);
-               last_textclass_ = int(buffer()->params.textclass);
-               current_layout = textclasslist[last_textclass_].defaultLayoutName();
-       } else {
-               toolbar_->updateLayoutList(false);
+       if (toolbar_->updateLayoutList(buffer()->params.textclass)) {
+               current_layout = buffer()->params.getLyXTextClass().defaultLayoutName();
        }
 
        string const & layout =
-               bufferview_->getLyXText()->cursor.par()->layout();
+               bufferview_->getLyXText()->cursor.par()->layout()->name();
 
        if (layout != current_layout) {
                toolbar_->setLayout(layout);
@@ -209,30 +152,34 @@ void LyXView::updateLayoutChoice()
 void LyXView::updateWindowTitle()
 {
        static string last_title = "LyX";
-       string title = "LyX";
-       string icon_title = "LyX";
+       string maximize_title = "LyX";
+       string minimize_title = "LyX";
 
        if (view()->available()) {
                string const cur_title = buffer()->fileName();
                if (!cur_title.empty()) {
-                       title += ": " + MakeDisplayPath(cur_title, 30);
-                       if (!buffer()->isLyxClean())
-                               title += _(" (changed)");
+                       maximize_title += ": " + MakeDisplayPath(cur_title, 30);
+                       minimize_title = OnlyFilename(cur_title);
+                       if (!buffer()->isClean()) {
+                               maximize_title += _(" (changed)");
+                               minimize_title += '*';
+                       }
                        if (buffer()->isReadonly())
-                               title += _(" (read only)");
-                       // Show only the filename if it's available
-                       icon_title = OnlyFilename(cur_title);
+                               maximize_title += _(" (read only)");
                }
        }
 
-       if (title != last_title) {
-               setWindowTitle(title, icon_title);
-               last_title = title;
+       if (maximize_title != last_title) {
+               setWindowTitle(maximize_title, minimize_title);
+               last_title = maximize_title;
        }
 }
 
 
-void LyXView::showState()
+void LyXView::dispatch(FuncRequest const & req)
 {
-       message(currentState(view()));
+       // substitute the correct BufferView here
+       FuncRequest r = req;
+       r.setView(view().get());
+       getLyXFunc().dispatch(r);
 }