2002-06-12 02:54:19 +00:00
|
|
|
/**
|
|
|
|
* \file LyXView.C
|
|
|
|
* Copyright 1995-2002 the LyX Team
|
|
|
|
* Read the file COPYING
|
2002-03-21 17:27:08 +00:00
|
|
|
*
|
2002-06-12 02:54:19 +00:00
|
|
|
* \author Lars Gullik Bjornes
|
|
|
|
* \author John Levon <moz@compsoc.man.ac.uk>
|
|
|
|
*/
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
2002-06-12 02:54:19 +00:00
|
|
|
#include "LyXView.h"
|
1999-10-07 18:44:17 +00:00
|
|
|
#include "debug.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
#include "intl.h"
|
|
|
|
#include "lyxrc.h"
|
|
|
|
#include "lyxtext.h"
|
2000-04-08 17:02:02 +00:00
|
|
|
#include "buffer.h"
|
2000-09-14 17:53:12 +00:00
|
|
|
#include "MenuBackend.h"
|
2001-04-17 15:15:59 +00:00
|
|
|
#include "gettext.h"
|
2001-04-24 17:33:01 +00:00
|
|
|
#include "lyxfunc.h"
|
2002-06-12 02:54:19 +00:00
|
|
|
#include "lyx_cb.h"
|
2001-06-25 00:06:33 +00:00
|
|
|
#include "BufferView.h"
|
2002-06-12 02:54:19 +00:00
|
|
|
#include "bufferview_funcs.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2002-07-19 20:56:31 +00:00
|
|
|
#include "Dialogs.h"
|
|
|
|
#include "Toolbar.h"
|
|
|
|
#include "Timeout.h"
|
|
|
|
#include "Menubar.h"
|
|
|
|
#include "controllers/ControlCommandBuffer.h"
|
2001-12-10 20:06:59 +00:00
|
|
|
|
2002-06-12 02:54:19 +00:00
|
|
|
#include "support/filetools.h" // OnlyFilename()
|
2001-12-10 20:06:59 +00:00
|
|
|
|
2002-05-29 16:21:03 +00:00
|
|
|
#include <boost/bind.hpp>
|
|
|
|
|
2001-12-10 20:06:59 +00:00
|
|
|
#include <sys/time.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2000-03-28 02:18:55 +00:00
|
|
|
using std::endl;
|
|
|
|
|
2002-03-02 16:39:54 +00:00
|
|
|
string current_layout;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2000-06-12 11:27:15 +00:00
|
|
|
|
2001-07-03 15:19:04 +00:00
|
|
|
LyXView::LyXView()
|
2002-08-13 14:40:38 +00:00
|
|
|
: controlcommand_(new ControlCommandBuffer(getLyXFunc())),
|
|
|
|
intl_(new Intl),
|
|
|
|
autosave_timeout_(new Timeout(5000)),
|
|
|
|
lyxfunc_(new LyXFunc(this)),
|
|
|
|
dialogs_(new Dialogs(this))
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
1999-11-09 23:52:04 +00:00
|
|
|
lyxerr[Debug::INIT] << "Initializing LyXFunc" << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LyXView::~LyXView()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
1999-12-16 06:43:25 +00:00
|
|
|
|
2002-06-12 11:34:13 +00:00
|
|
|
void LyXView::init()
|
2001-06-25 00:06:33 +00:00
|
|
|
{
|
2002-06-12 11:34:13 +00:00
|
|
|
updateLayoutChoice();
|
|
|
|
updateMenubar();
|
2002-06-24 20:28:12 +00:00
|
|
|
|
2002-06-12 11:34:13 +00:00
|
|
|
// Start autosave timer
|
|
|
|
if (lyxrc.autosave) {
|
2002-07-21 01:38:24 +00:00
|
|
|
autosave_timeout_->timeout.connect(boost::bind(&LyXView::autoSave, this));
|
2002-06-12 11:34:13 +00:00
|
|
|
autosave_timeout_->setTimeout(lyxrc.autosave * 1000);
|
|
|
|
autosave_timeout_->start();
|
|
|
|
}
|
|
|
|
|
|
|
|
intl_->InitKeyMapper(lyxrc.use_kbmap);
|
2001-06-25 00:06:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-04-08 17:02:02 +00:00
|
|
|
Buffer * LyXView::buffer() const
|
|
|
|
{
|
2002-06-12 02:54:19 +00:00
|
|
|
return bufferview_->buffer();
|
2000-04-08 17:02:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-08-02 09:21:50 +00:00
|
|
|
boost::shared_ptr<BufferView> const & LyXView::view() const
|
2000-04-08 17:02:02 +00:00
|
|
|
{
|
2002-08-02 09:21:50 +00:00
|
|
|
return bufferview_;
|
2000-04-08 17:02:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-03-02 16:39:54 +00:00
|
|
|
void LyXView::setLayout(string const & layout)
|
2000-07-24 13:53:19 +00:00
|
|
|
{
|
2002-06-12 02:54:19 +00:00
|
|
|
toolbar_->setLayout(layout);
|
2000-07-24 13:53:19 +00:00
|
|
|
}
|
2000-04-08 17:02:02 +00:00
|
|
|
|
2000-07-25 10:46:18 +00:00
|
|
|
|
|
|
|
void LyXView::updateToolbar()
|
|
|
|
{
|
2002-06-12 02:54:19 +00:00
|
|
|
toolbar_->update();
|
2000-07-25 10:46:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-03-21 17:27:08 +00:00
|
|
|
void LyXView::updateMenubar()
|
2000-07-24 13:53:19 +00:00
|
|
|
{
|
2002-06-12 02:54:19 +00:00
|
|
|
menubar_->update();
|
2000-07-24 13:53:19 +00:00
|
|
|
}
|
|
|
|
|
2000-04-08 17:02:02 +00:00
|
|
|
|
2002-06-12 11:34:13 +00:00
|
|
|
void LyXView::autoSave()
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2002-06-12 11:34:13 +00:00
|
|
|
lyxerr[Debug::INFO] << "Running autoSave()" << endl;
|
|
|
|
|
|
|
|
if (view()->available()) {
|
2002-08-02 09:21:50 +00:00
|
|
|
::AutoSave(view().get());
|
2002-06-12 11:34:13 +00:00
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
1999-12-16 06:43:25 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
void LyXView::resetAutosaveTimer()
|
|
|
|
{
|
2000-03-12 10:35:05 +00:00
|
|
|
if (lyxrc.autosave)
|
2002-06-12 02:54:19 +00:00
|
|
|
autosave_timeout_->restart();
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void LyXView::updateLayoutChoice()
|
|
|
|
{
|
2002-06-12 02:54:19 +00:00
|
|
|
// don't show any layouts without a buffer
|
|
|
|
if (!view()->buffer()) {
|
|
|
|
toolbar_->clearLayoutList();
|
2002-03-21 17:27:08 +00:00
|
|
|
return;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
2002-06-12 02:54:19 +00:00
|
|
|
// update the layout display
|
2002-06-18 15:44:30 +00:00
|
|
|
if (toolbar_->updateLayoutList(buffer()->params.textclass)) {
|
2002-07-21 21:21:06 +00:00
|
|
|
current_layout = buffer()->params.getLyXTextClass().defaultLayoutName();
|
2001-08-03 18:28:11 +00:00
|
|
|
}
|
2002-03-02 16:39:54 +00:00
|
|
|
|
|
|
|
string const & layout =
|
2002-06-24 20:28:12 +00:00
|
|
|
bufferview_->getLyXText()->cursor.par()->layout()->name();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2001-12-05 23:16:13 +00:00
|
|
|
if (layout != current_layout) {
|
2002-06-12 02:54:19 +00:00
|
|
|
toolbar_->setLayout(layout);
|
1999-09-27 18:44:28 +00:00
|
|
|
current_layout = layout;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-12-16 06:43:25 +00:00
|
|
|
void LyXView::updateWindowTitle()
|
|
|
|
{
|
1999-11-09 23:52:04 +00:00
|
|
|
static string last_title = "LyX";
|
1999-10-02 16:21:10 +00:00
|
|
|
string title = "LyX";
|
2002-01-03 03:14:40 +00:00
|
|
|
string icon_title = "LyX";
|
1999-09-27 18:44:28 +00:00
|
|
|
|
1999-11-22 16:19:48 +00:00
|
|
|
if (view()->available()) {
|
2001-04-17 15:15:59 +00:00
|
|
|
string const cur_title = buffer()->fileName();
|
2002-02-16 15:59:55 +00:00
|
|
|
if (!cur_title.empty()) {
|
2000-09-26 13:10:34 +00:00
|
|
|
title += ": " + MakeDisplayPath(cur_title, 30);
|
2002-08-04 23:11:50 +00:00
|
|
|
if (!buffer()->isClean())
|
2002-06-12 02:54:19 +00:00
|
|
|
title += _(" (changed)");
|
1999-11-09 23:52:04 +00:00
|
|
|
if (buffer()->isReadonly())
|
1999-09-27 18:44:28 +00:00
|
|
|
title += _(" (read only)");
|
2002-06-12 02:54:19 +00:00
|
|
|
// Show only the filename if it's available
|
2002-01-03 03:14:40 +00:00
|
|
|
icon_title = OnlyFilename(cur_title);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
}
|
2002-06-12 02:54:19 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
if (title != last_title) {
|
2002-01-03 03:14:40 +00:00
|
|
|
setWindowTitle(title, icon_title);
|
2001-08-01 10:08:53 +00:00
|
|
|
last_title = title;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
}
|