]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/LyXView.C
some tabular fixes for the problems reported by Helge
[lyx.git] / src / frontends / LyXView.C
index f49bdeeed1b542862f4c9b9dd170c07704233c97..7758bb400b96a353f6b8c1f624948452e27077d9 100644 (file)
 #include "LyXView.h"
 #include "Dialogs.h"
 #include "Timeout.h"
-#include "Toolbar.h"
+#include "Toolbars.h"
 #include "Menubar.h"
 
 #include "buffer.h"
+#include "bufferparams.h"
 #include "BufferView.h"
 #include "bufferview_funcs.h"
+#include "cursor.h"
 #include "debug.h"
 #include "funcrequest.h"
 #include "gettext.h"
 #include "lyxrc.h"
 #include "lyxtext.h"
 #include "MenuBackend.h"
+#include "paragraph.h"
 
 #include "controllers/ControlCommandBuffer.h"
 
-#include "mathed/math_cursor.h"
-
 #include "support/filetools.h" // OnlyFilename()
 
 #include <boost/bind.hpp>
 
 #include <sys/time.h>
-#include <unistd.h>
+#ifdef HAVE_UNISTD_H
+# include <unistd.h>
+#endif
+
+using lyx::support::MakeDisplayPath;
+using lyx::support::OnlyFilename;
 
-using namespace lyx::support;
 using std::endl;
+using std::string;
 
+using lyx::frontend::ControlCommandBuffer;
 
 string current_layout;
 
 
 LyXView::LyXView()
-       : intl_(new Intl),
+       : toolbars_(new Toolbars(*this)),
+         intl_(new Intl),
          autosave_timeout_(new Timeout(5000)),
          lyxfunc_(new LyXFunc(this)),
          dialogs_(new Dialogs(*this)),
@@ -94,16 +102,16 @@ boost::shared_ptr<BufferView> const & LyXView::view() const
 
 void LyXView::setLayout(string const & layout)
 {
-       toolbar_->setLayout(layout);
+       toolbars_->setLayout(layout);
 }
 
 
-void LyXView::updateToolbar()
+void LyXView::updateToolbars()
 {
-       bool const math = mathcursor;
+       bool const math = bufferview_->cursor().inMathed();
        bool const table =
-               !getLyXFunc().getStatus(LFUN_LAYOUT_TABULAR).disabled();
-       toolbar_->update(math, table);
+               getLyXFunc().getStatus(FuncRequest(LFUN_LAYOUT_TABULAR)).enabled();
+       toolbars_->update(math, table);
 }
 
 
@@ -132,22 +140,25 @@ void LyXView::resetAutosaveTimer()
 
 void LyXView::updateLayoutChoice()
 {
-       // don't show any layouts without a buffer
+       // Don't show any layouts without a buffer
        if (!view()->buffer()) {
-               toolbar_->clearLayoutList();
+               toolbars_->clearLayoutList();
                return;
        }
 
-       // update the layout display
-       if (toolbar_->updateLayoutList(buffer()->params.textclass)) {
-               current_layout = buffer()->params.getLyXTextClass().defaultLayoutName();
+       // Update the layout display
+       if (toolbars_->updateLayoutList(buffer()->params().textclass)) {
+               current_layout = buffer()->params().getLyXTextClass().defaultLayoutName();
        }
 
+       if (bufferview_->cursor().inMathed())
+               return;
+
        string const & layout =
-               bufferview_->getLyXText()->cursor.par()->layout()->name();
+               bufferview_->cursor().paragraph().layout()->name();
 
        if (layout != current_layout) {
-               toolbar_->setLayout(layout);
+               toolbars_->setLayout(layout);
                current_layout = layout;
        }
 }
@@ -180,10 +191,18 @@ void LyXView::updateWindowTitle()
 }
 
 
-void LyXView::dispatch(FuncRequest const & req)
+void LyXView::dispatch(FuncRequest const & cmd)
 {
-       // substitute the correct BufferView here
-       FuncRequest r = req;
-       r.setView(view().get());
-       getLyXFunc().dispatch(r);
+       getLyXFunc().dispatch(cmd);
+}
+
+
+Buffer const * const LyXView::updateInset(InsetBase const * inset) const
+{
+       Buffer const * buffer_ptr = 0;
+       if (inset) {
+               buffer_ptr = bufferview_->buffer();
+               bufferview_->update();
+       }
+       return buffer_ptr;
 }