]> 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 63f7559d7b39ffdf8b60231e08eb8b9302003f98..7758bb400b96a353f6b8c1f624948452e27077d9 100644 (file)
-/* This file is part of
- * ======================================================
+/**
+ * \file LyXView.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
+ * \author Lars Gullik Bjønnes
+ * \author John Levon
  *
- *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2001 The LyX Team.
- *
- * ====================================================== */
+ * Full author contact details are available in file CREDITS.
+ */
 
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
+#include "LyXView.h"
+#include "Dialogs.h"
+#include "Timeout.h"
+#include "Toolbars.h"
+#include "Menubar.h"
 
-#include "frontends/LyXView.h"
-#include "minibuffer.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 "intl.h"
+#include "lyx_cb.h"
+#include "lyxfunc.h"
 #include "lyxrc.h"
 #include "lyxtext.h"
-#include "buffer.h"
 #include "MenuBackend.h"
-#include "bufferview_funcs.h" // CurrentState()
-#include "gettext.h"
-#include "lyxfunc.h"
-#include "BufferView.h"
-#include "lyxtextclasslist.h"
+#include "paragraph.h"
 
-#include "frontends/Dialogs.h"
-#include "frontends/Toolbar.h"
-#include "frontends/Timeout.h"
-#include "frontends/Menubar.h"
+#include "controllers/ControlCommandBuffer.h"
 
-#include "support/filetools.h"        // OnlyFilename()
+#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 std::endl;
+using std::string;
 
-extern void AutoSave(BufferView *);
-extern void QuitLyX();
+using lyx::frontend::ControlCommandBuffer;
 
 string current_layout;
 
 
 LyXView::LyXView()
+       : toolbars_(new Toolbars(*this)),
+         intl_(new Intl),
+         autosave_timeout_(new Timeout(5000)),
+         lyxfunc_(new LyXFunc(this)),
+         dialogs_(new Dialogs(*this)),
+         controlcommand_(new ControlCommandBuffer(*this))
 {
        lyxerr[Debug::INIT] << "Initializing LyXFunc" << endl;
-       lyxfunc = new LyXFunc(this);
-
-       intl = new Intl;
-
-       // Give the timeout some default sensible value.
-       autosave_timeout = new Timeout(5000);
-
-       dialogs_ = new Dialogs(this);
-       Dialogs::redrawGUI.connect(SigC::slot(this, &LyXView::redraw));
 }
 
 
 LyXView::~LyXView()
 {
-       delete menubar;
-       delete toolbar;
-       delete bufferview;
-       delete minibuffer;
-       delete lyxfunc;
-       delete intl;
-       delete autosave_timeout;
-       delete dialogs_;
 }
 
 
-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();
+       }
 
-/// returns the buffer currently shown in the main form.
-Buffer * LyXView::buffer() const
-{
-       return bufferview->buffer();
+       intl_->InitKeyMapper(lyxrc.use_kbmap);
 }
 
 
-BufferView * LyXView::view() const
+Buffer * LyXView::buffer() const
 {
-       return bufferview;
+       return bufferview_->buffer();
 }
 
 
-Toolbar * LyXView::getToolbar() const
+boost::shared_ptr<BufferView> const & LyXView::view() const
 {
-       return toolbar;
+       return bufferview_;
 }
 
 
 void LyXView::setLayout(string const & layout)
 {
-       toolbar->setLayout(layout);
-}
-
-
-void LyXView::updateToolbar()
-{
-       toolbar->update();
-}
-
-
-LyXFunc * LyXView::getLyXFunc() const
-{
-       return lyxfunc;
-}
-
-
-MiniBuffer * LyXView::getMiniBuffer() const
-{
-       return minibuffer;
-}
-
-
-void LyXView::message(string const & str)
-{
-       minibuffer->message(str);
-}
-
-
-void LyXView::messagePush(string const & str)
-{
-       minibuffer->messagePush(str);
-}
-
-
-void LyXView::messagePop()
-{
-       minibuffer->messagePop();
+       toolbars_->setLayout(layout);
 }
 
 
-Menubar * LyXView::getMenubar() const
+void LyXView::updateToolbars()
 {
-       return menubar;
+       bool const math = bufferview_->cursor().inMathed();
+       bool const table =
+               getLyXFunc().getStatus(FuncRequest(LFUN_LAYOUT_TABULAR)).enabled();
+       toolbars_->update(math, table);
 }
 
 
 void LyXView::updateMenubar()
 {
-       if ((!view() || !view()->buffer())
-           && menubackend.hasMenu("main_nobuffer"))
-               menubar->set("main_nobuffer");
-       else
-               menubar->set("main");
-       menubar->update();
+       menubar_->update();
 }
 
 
-Intl * LyXView::getIntl() const
+void LyXView::autoSave()
 {
-       return intl;
-}
-
+       lyxerr[Debug::INFO] << "Running autoSave()" << endl;
 
-// Callback for autosave timer
-void LyXView::AutoSave()
-{
-       lyxerr[Debug::INFO] << "Running AutoSave()" << endl;
-       if (view()->available())
-               ::AutoSave(view());
+       if (view()->available()) {
+               ::AutoSave(view().get());
+       }
 }
 
 
-/// Reset autosave timer
 void LyXView::resetAutosaveTimer()
 {
        if (lyxrc.autosave)
-               autosave_timeout->restart();
-}
-
-
-void LyXView::invalidateLayoutChoice()
-{
-       last_textclass = -1;
+               autosave_timeout_->restart();
 }
 
 
 void LyXView::updateLayoutChoice()
 {
-       // This has a side-effect that the layouts are not showed when no
-       // document is loaded.
-       if (!view() || !view()->buffer()) {
-               toolbar->clearLayoutList();
+       // Don't show any layouts without a buffer
+       if (!view()->buffer()) {
+               toolbars_->clearLayoutList();
                return;
        }
 
        // 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 (toolbars_->updateLayoutList(buffer()->params().textclass)) {
+               current_layout = buffer()->params().getLyXTextClass().defaultLayoutName();
        }
 
+       if (bufferview_->cursor().inMathed())
+               return;
+
        string const & layout =
-               bufferview->getLyXText()->cursor.par()->layout();
+               bufferview_->cursor().paragraph().layout()->name();
 
        if (layout != current_layout) {
-               toolbar->setLayout(layout);
+               toolbars_->setLayout(layout);
                current_layout = layout;
        }
 }
 
 
-// Updates the title of the window with the filename of the current document
 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 & cmd)
 {
-       message(currentState(view()));
+       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;
 }