]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/LyXView.C
fix math fonts with LyX/Mac
[lyx.git] / src / frontends / LyXView.C
index ef85ab161230e4ab464f848a9419b76eb755089a..a8d33b65f7b7804647e8b217842f49ad0ffda909 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"
@@ -34,8 +35,6 @@
 
 #include "controllers/ControlCommandBuffer.h"
 
-#include "mathed/math_cursor.h"
-
 #include "support/filetools.h" // OnlyFilename()
 
 #include <boost/bind.hpp>
@@ -49,12 +48,14 @@ using lyx::support::OnlyFilename;
 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)),
@@ -99,16 +100,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(FuncRequest(LFUN_LAYOUT_TABULAR)).disabled();
-       toolbar_->update(math, table);
+               getLyXFunc().getStatus(FuncRequest(LFUN_LAYOUT_TABULAR)).enabled();
+       toolbars_->update(math, table);
 }
 
 
@@ -139,20 +140,23 @@ void LyXView::updateLayoutChoice()
 {
        // 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)) {
+       if (toolbars_->updateLayoutList(buffer()->params().textclass)) {
                current_layout = buffer()->params().getLyXTextClass().defaultLayoutName();
        }
 
+       if (bufferview_->cursor().inMathed())
+               return;
+
        string const & layout =
-               bufferview_->getLyXText()->cursorPar()->layout()->name();
+               bufferview_->cursor().paragraph().layout()->name();
 
        if (layout != current_layout) {
-               toolbar_->setLayout(layout);
+               toolbars_->setLayout(layout);
                current_layout = layout;
        }
 }
@@ -191,7 +195,7 @@ void LyXView::dispatch(FuncRequest const & cmd)
 }
 
 
-Buffer const * const LyXView::updateInset(InsetOld const * inset) const
+Buffer const * const LyXView::updateInset(InsetBase const * inset) const
 {
        Buffer const * buffer_ptr = 0;
        if (inset) {