2002-06-12 02:54:19 +00:00
|
|
|
/**
|
|
|
|
* \file BufferView_pimpl.C
|
|
|
|
* Copyright 2002 the LyX Team
|
|
|
|
* Read the file COPYING
|
|
|
|
*
|
|
|
|
* \author various
|
|
|
|
*/
|
|
|
|
|
2000-04-08 17:02:02 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "BufferView_pimpl.h"
|
2003-02-26 19:28:38 +00:00
|
|
|
#include "bufferlist.h"
|
|
|
|
#include "bufferview_funcs.h"
|
2003-03-19 17:15:32 +00:00
|
|
|
#include "lfuns.h"
|
2001-07-29 15:34:18 +00:00
|
|
|
#include "debug.h"
|
2003-02-26 19:28:38 +00:00
|
|
|
#include "factory.h"
|
2001-12-10 20:06:59 +00:00
|
|
|
#include "FloatList.h"
|
2002-08-07 08:11:41 +00:00
|
|
|
#include "funcrequest.h"
|
2003-02-26 19:28:38 +00:00
|
|
|
#include "gettext.h"
|
|
|
|
#include "intl.h"
|
2003-02-08 19:18:01 +00:00
|
|
|
#include "iterators.h"
|
2003-02-26 19:28:38 +00:00
|
|
|
#include "lyx_cb.h" // added for Dispatch functions
|
|
|
|
#include "lyx_main.h"
|
2003-02-08 19:18:01 +00:00
|
|
|
#include "lyxfind.h"
|
2003-02-26 19:28:38 +00:00
|
|
|
#include "lyxfunc.h"
|
|
|
|
#include "lyxtext.h"
|
|
|
|
#include "lyxrc.h"
|
|
|
|
#include "lyxrow.h"
|
|
|
|
#include "paragraph.h"
|
|
|
|
#include "ParagraphParameters.h"
|
|
|
|
#include "TextCache.h"
|
|
|
|
#include "undo_funcs.h"
|
2001-12-10 20:06:59 +00:00
|
|
|
|
2003-02-21 09:20:18 +00:00
|
|
|
#include "insets/insetfloatlist.h"
|
2001-02-23 16:10:03 +00:00
|
|
|
#include "insets/insetgraphics.h"
|
2003-02-21 09:20:18 +00:00
|
|
|
#include "insets/insetinclude.h"
|
|
|
|
#include "insets/insetref.h"
|
|
|
|
#include "insets/insettext.h"
|
2003-02-26 19:28:38 +00:00
|
|
|
|
|
|
|
#include "frontends/Alert.h"
|
|
|
|
#include "frontends/Dialogs.h"
|
|
|
|
#include "frontends/FileDialog.h"
|
|
|
|
#include "frontends/LyXView.h"
|
|
|
|
#include "frontends/LyXScreenFactory.h"
|
|
|
|
#include "frontends/mouse_state.h"
|
|
|
|
#include "frontends/screen.h"
|
|
|
|
#include "frontends/WorkArea.h"
|
|
|
|
#include "frontends/WorkAreaFactory.h"
|
2001-12-10 20:06:59 +00:00
|
|
|
|
2001-07-06 12:09:32 +00:00
|
|
|
#include "mathed/formulabase.h"
|
2001-04-17 15:15:59 +00:00
|
|
|
|
2002-07-05 21:24:15 +00:00
|
|
|
#include "graphics/Previews.h"
|
|
|
|
|
2001-12-10 20:06:59 +00:00
|
|
|
#include "support/LAssert.h"
|
|
|
|
#include "support/lstrings.h"
|
|
|
|
#include "support/filetools.h"
|
|
|
|
|
2002-05-29 16:21:03 +00:00
|
|
|
#include <boost/bind.hpp>
|
2002-07-28 18:13:51 +00:00
|
|
|
#include <boost/signals/connection.hpp>
|
2003-03-30 20:25:44 +00:00
|
|
|
#include "support/BoostFormat.h"
|
2002-05-29 16:21:03 +00:00
|
|
|
|
2001-12-10 20:06:59 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
|
|
|
|
|
2001-03-12 08:52:37 +00:00
|
|
|
using std::vector;
|
2001-02-27 11:26:18 +00:00
|
|
|
using std::find_if;
|
2001-06-08 13:34:41 +00:00
|
|
|
using std::find;
|
2000-04-08 17:02:02 +00:00
|
|
|
using std::pair;
|
2000-04-09 22:48:51 +00:00
|
|
|
using std::endl;
|
2000-06-12 11:27:15 +00:00
|
|
|
using std::make_pair;
|
2001-01-28 18:31:36 +00:00
|
|
|
using std::min;
|
2001-11-29 17:12:21 +00:00
|
|
|
|
2001-11-27 10:34:16 +00:00
|
|
|
using lyx::pos_type;
|
2003-04-03 00:36:31 +00:00
|
|
|
using namespace bv_funcs;
|
2000-04-08 17:02:02 +00:00
|
|
|
|
|
|
|
extern BufferList bufferlist;
|
2000-06-12 11:27:15 +00:00
|
|
|
|
2001-07-06 12:09:32 +00:00
|
|
|
|
2001-03-17 02:06:21 +00:00
|
|
|
namespace {
|
|
|
|
|
2002-07-22 20:57:58 +00:00
|
|
|
unsigned int const saved_positions_num = 20;
|
|
|
|
|
|
|
|
// All the below connection objects are needed because of a bug in some
|
|
|
|
// versions of GCC (<=2.96 are on the suspects list.) By having and assigning
|
|
|
|
// to these connections we avoid a segfault upon startup, and also at exit.
|
|
|
|
// (Lgb)
|
|
|
|
|
2002-08-28 08:30:27 +00:00
|
|
|
boost::signals::connection dispatchcon;
|
2002-07-22 20:57:58 +00:00
|
|
|
boost::signals::connection timecon;
|
|
|
|
boost::signals::connection doccon;
|
|
|
|
boost::signals::connection resizecon;
|
|
|
|
boost::signals::connection kpresscon;
|
|
|
|
boost::signals::connection selectioncon;
|
|
|
|
boost::signals::connection lostcon;
|
2000-04-14 19:20:33 +00:00
|
|
|
|
2002-08-27 16:16:17 +00:00
|
|
|
|
2001-03-17 02:06:21 +00:00
|
|
|
} // anon namespace
|
|
|
|
|
2000-04-14 19:20:33 +00:00
|
|
|
|
2002-08-19 15:39:25 +00:00
|
|
|
BufferView::Pimpl::Pimpl(BufferView * bv, LyXView * owner,
|
2000-04-08 17:02:02 +00:00
|
|
|
int xpos, int ypos, int width, int height)
|
2002-08-19 15:39:25 +00:00
|
|
|
: bv_(bv), owner_(owner), buffer_(0), cursor_timeout(400),
|
2002-06-12 02:54:19 +00:00
|
|
|
using_xterm_cursor(false)
|
2000-04-08 17:02:02 +00:00
|
|
|
{
|
2002-06-18 15:44:30 +00:00
|
|
|
workarea_.reset(WorkAreaFactory::create(xpos, ypos, width, height));
|
|
|
|
screen_.reset(LyXScreenFactory::create(workarea()));
|
2002-06-24 20:28:12 +00:00
|
|
|
|
2000-08-14 15:31:16 +00:00
|
|
|
// Setup the signals
|
2002-08-19 15:39:25 +00:00
|
|
|
doccon = workarea().scrollDocView
|
|
|
|
.connect(boost::bind(&BufferView::Pimpl::scrollDocView, this, _1));
|
2002-07-22 20:57:58 +00:00
|
|
|
resizecon = workarea().workAreaResize
|
2002-06-20 20:37:42 +00:00
|
|
|
.connect(boost::bind(&BufferView::Pimpl::workAreaResize, this));
|
2002-08-28 08:30:27 +00:00
|
|
|
dispatchcon = workarea().dispatch
|
2003-03-24 02:31:44 +00:00
|
|
|
.connect(boost::bind(&BufferView::Pimpl::workAreaDispatch, this, _1));
|
2002-07-22 20:57:58 +00:00
|
|
|
kpresscon = workarea().workAreaKeyPress
|
2002-05-29 16:21:03 +00:00
|
|
|
.connect(boost::bind(&BufferView::Pimpl::workAreaKeyPress, this, _1, _2));
|
2002-07-22 20:57:58 +00:00
|
|
|
selectioncon = workarea().selectionRequested
|
2002-05-29 16:21:03 +00:00
|
|
|
.connect(boost::bind(&BufferView::Pimpl::selectionRequested, this));
|
2002-07-22 20:57:58 +00:00
|
|
|
lostcon = workarea().selectionLost
|
2002-05-29 16:21:03 +00:00
|
|
|
.connect(boost::bind(&BufferView::Pimpl::selectionLost, this));
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2002-08-19 15:39:25 +00:00
|
|
|
timecon = cursor_timeout.timeout
|
|
|
|
.connect(boost::bind(&BufferView::Pimpl::cursorToggle, this));
|
2000-06-08 23:16:16 +00:00
|
|
|
cursor_timeout.start();
|
2001-01-28 18:31:36 +00:00
|
|
|
saved_positions.resize(saved_positions_num);
|
2000-04-08 17:02:02 +00:00
|
|
|
}
|
|
|
|
|
2000-04-09 22:48:51 +00:00
|
|
|
|
2002-06-11 22:38:49 +00:00
|
|
|
WorkArea & BufferView::Pimpl::workarea() const
|
|
|
|
{
|
|
|
|
return *workarea_.get();
|
|
|
|
}
|
|
|
|
|
2002-06-24 20:28:12 +00:00
|
|
|
|
2002-06-18 15:44:30 +00:00
|
|
|
LyXScreen & BufferView::Pimpl::screen() const
|
2002-06-11 23:47:58 +00:00
|
|
|
{
|
|
|
|
return *screen_.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-06-12 02:54:19 +00:00
|
|
|
Painter & BufferView::Pimpl::painter() const
|
2000-04-09 22:48:51 +00:00
|
|
|
{
|
2002-06-11 22:38:49 +00:00
|
|
|
return workarea().getPainter();
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::Pimpl::buffer(Buffer * b)
|
|
|
|
{
|
|
|
|
lyxerr[Debug::INFO] << "Setting buffer in BufferView ("
|
2002-11-27 10:30:28 +00:00
|
|
|
<< b << ')' << endl;
|
2000-04-09 22:48:51 +00:00
|
|
|
if (buffer_) {
|
|
|
|
buffer_->delUser(bv_);
|
|
|
|
|
|
|
|
// Put the old text into the TextCache, but
|
|
|
|
// only if the buffer is still loaded.
|
|
|
|
// Also set the owner of the test to 0
|
2000-06-12 11:27:15 +00:00
|
|
|
// bv_->text->owner(0);
|
2002-06-11 22:38:49 +00:00
|
|
|
textcache.add(buffer_, workarea().workWidth(), bv_->text);
|
2000-04-09 22:48:51 +00:00
|
|
|
if (lyxerr.debugging())
|
|
|
|
textcache.show(lyxerr, "BufferView::buffer");
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2000-04-09 22:48:51 +00:00
|
|
|
bv_->text = 0;
|
|
|
|
}
|
|
|
|
|
2002-08-19 15:39:25 +00:00
|
|
|
// set current buffer
|
2000-04-09 22:48:51 +00:00
|
|
|
buffer_ = b;
|
|
|
|
|
2003-03-02 12:16:00 +00:00
|
|
|
// if we're quitting lyx, don't bother updating stuff
|
2003-02-15 19:21:11 +00:00
|
|
|
if (quitting)
|
2003-03-02 12:16:00 +00:00
|
|
|
return;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2002-08-19 15:39:25 +00:00
|
|
|
// if we are closing the buffer, use the first buffer as current
|
2000-04-09 22:48:51 +00:00
|
|
|
if (!buffer_) {
|
|
|
|
buffer_ = bufferlist.first();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (buffer_) {
|
|
|
|
lyxerr[Debug::INFO] << "Buffer addr: " << buffer_ << endl;
|
|
|
|
buffer_->addUser(bv_);
|
2002-06-24 20:28:12 +00:00
|
|
|
|
2000-04-09 22:48:51 +00:00
|
|
|
// If we don't have a text object for this, we make one
|
2000-06-12 11:27:15 +00:00
|
|
|
if (bv_->text == 0) {
|
2000-04-09 22:48:51 +00:00
|
|
|
resizeCurrentBuffer();
|
|
|
|
}
|
2002-06-21 02:22:13 +00:00
|
|
|
|
|
|
|
// FIXME: needed when ?
|
2003-03-06 20:21:21 +00:00
|
|
|
bv_->text->top_y(screen().topCursorVisible(bv_->text->cursor, bv_->text->top_y()));
|
2002-06-24 20:28:12 +00:00
|
|
|
|
2003-04-02 09:10:08 +00:00
|
|
|
// Buffer-dependent dialogs should be updated or
|
2000-10-10 11:50:43 +00:00
|
|
|
// hidden. This should go here because some dialogs (eg ToC)
|
|
|
|
// require bv_->text.
|
2002-08-13 14:40:38 +00:00
|
|
|
owner_->getDialogs().updateBufferDependent(true);
|
2000-04-09 22:48:51 +00:00
|
|
|
} else {
|
|
|
|
lyxerr[Debug::INFO] << " No Buffer!" << endl;
|
2002-08-13 14:40:38 +00:00
|
|
|
owner_->getDialogs().hideBufferDependent();
|
2000-04-09 22:48:51 +00:00
|
|
|
|
|
|
|
// Also remove all remaining text's from the testcache.
|
|
|
|
// (there should not be any!) (if there is any it is a
|
|
|
|
// bug!)
|
|
|
|
if (lyxerr.debugging())
|
|
|
|
textcache.show(lyxerr, "buffer delete all");
|
|
|
|
textcache.clear();
|
|
|
|
}
|
2002-06-24 20:28:12 +00:00
|
|
|
|
2002-06-21 02:22:13 +00:00
|
|
|
repaint();
|
|
|
|
updateScrollbar();
|
|
|
|
owner_->updateMenubar();
|
|
|
|
owner_->updateToolbar();
|
2000-04-09 22:48:51 +00:00
|
|
|
owner_->updateLayoutChoice();
|
|
|
|
owner_->updateWindowTitle();
|
2002-07-05 21:24:15 +00:00
|
|
|
|
2003-04-02 09:10:08 +00:00
|
|
|
if (buffer_) {
|
|
|
|
// Don't forget to update the Layout
|
|
|
|
string const layoutname =
|
|
|
|
bv_->text->cursor.par()->layout()->name();
|
|
|
|
owner_->setLayout(layoutname);
|
|
|
|
}
|
|
|
|
|
2002-07-05 21:24:15 +00:00
|
|
|
if (grfx::Previews::activated() && buffer_)
|
2002-07-16 18:10:03 +00:00
|
|
|
grfx::Previews::get().generateBufferPreviews(*buffer_);
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
|
|
|
|
2000-05-20 21:37:05 +00:00
|
|
|
|
2001-08-02 14:55:06 +00:00
|
|
|
bool BufferView::Pimpl::fitCursor()
|
2000-04-09 22:48:51 +00:00
|
|
|
{
|
2001-07-20 14:18:48 +00:00
|
|
|
bool ret;
|
|
|
|
|
|
|
|
if (bv_->theLockingInset()) {
|
|
|
|
bv_->theLockingInset()->fitInsetCursor(bv_);
|
|
|
|
ret = true;
|
|
|
|
} else {
|
2002-06-11 23:47:58 +00:00
|
|
|
ret = screen().fitCursor(bv_->text, bv_);
|
2001-07-20 14:18:48 +00:00
|
|
|
}
|
2001-06-15 16:18:43 +00:00
|
|
|
|
2003-03-13 13:56:25 +00:00
|
|
|
dispatch(FuncRequest(LFUN_PARAGRAPH_UPDATE));
|
|
|
|
|
2003-03-30 21:42:09 +00:00
|
|
|
// We need to always update, in case we did a
|
2003-03-29 20:22:55 +00:00
|
|
|
// paste and we stayed anchored to a row, but
|
|
|
|
// the actual height of the doc changed ...
|
|
|
|
updateScrollbar();
|
2000-04-26 13:57:28 +00:00
|
|
|
return ret;
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::Pimpl::redoCurrentBuffer()
|
|
|
|
{
|
|
|
|
lyxerr[Debug::INFO] << "BufferView::redoCurrentBuffer" << endl;
|
|
|
|
if (buffer_ && bv_->text) {
|
2002-06-20 20:37:42 +00:00
|
|
|
resizeCurrentBuffer();
|
2002-08-07 14:15:06 +00:00
|
|
|
updateScrollbar();
|
2000-04-09 22:48:51 +00:00
|
|
|
owner_->updateLayoutChoice();
|
2002-08-06 23:21:06 +00:00
|
|
|
repaint();
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int BufferView::Pimpl::resizeCurrentBuffer()
|
|
|
|
{
|
|
|
|
lyxerr[Debug::INFO] << "resizeCurrentBuffer" << endl;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
Paragraph * par = 0;
|
|
|
|
Paragraph * selstartpar = 0;
|
|
|
|
Paragraph * selendpar = 0;
|
2001-02-23 16:10:03 +00:00
|
|
|
UpdatableInset * the_locking_inset = 0;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2001-11-26 16:42:04 +00:00
|
|
|
pos_type pos = 0;
|
|
|
|
pos_type selstartpos = 0;
|
|
|
|
pos_type selendpos = 0;
|
2001-03-08 12:58:40 +00:00
|
|
|
bool selection = false;
|
|
|
|
bool mark_set = false;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2003-02-14 14:49:51 +00:00
|
|
|
owner_->busy(true);
|
2003-03-02 12:16:00 +00:00
|
|
|
|
2001-04-24 17:33:01 +00:00
|
|
|
owner_->message(_("Formatting document..."));
|
2000-04-09 22:48:51 +00:00
|
|
|
|
|
|
|
if (bv_->text) {
|
2003-04-09 09:15:20 +00:00
|
|
|
par = &*bv_->text->cursor.par();
|
2000-06-08 23:16:16 +00:00
|
|
|
pos = bv_->text->cursor.pos();
|
2003-04-09 09:15:20 +00:00
|
|
|
selstartpar = &*bv_->text->selection.start.par();
|
2001-05-31 02:23:46 +00:00
|
|
|
selstartpos = bv_->text->selection.start.pos();
|
2003-04-09 09:15:20 +00:00
|
|
|
selendpar = &*bv_->text->selection.end.par();
|
2001-05-31 02:23:46 +00:00
|
|
|
selendpos = bv_->text->selection.end.pos();
|
|
|
|
selection = bv_->text->selection.set();
|
|
|
|
mark_set = bv_->text->selection.mark();
|
2001-06-15 16:18:43 +00:00
|
|
|
the_locking_inset = bv_->theLockingInset();
|
2002-04-19 13:23:39 +00:00
|
|
|
buffer_->resizeInsets(bv_);
|
|
|
|
// I don't think the delete and new are necessary here we just could
|
|
|
|
// call only init! (Jug 20020419)
|
2000-04-09 22:48:51 +00:00
|
|
|
delete bv_->text;
|
2000-06-12 11:27:15 +00:00
|
|
|
bv_->text = new LyXText(bv_);
|
2001-07-06 15:41:17 +00:00
|
|
|
bv_->text->init(bv_);
|
2000-04-09 22:48:51 +00:00
|
|
|
} else {
|
|
|
|
// See if we have a text in TextCache that fits
|
|
|
|
// the new buffer_ with the correct width.
|
2002-06-11 22:38:49 +00:00
|
|
|
bv_->text = textcache.findFit(buffer_, workarea().workWidth());
|
2000-04-09 22:48:51 +00:00
|
|
|
if (bv_->text) {
|
|
|
|
if (lyxerr.debugging()) {
|
|
|
|
lyxerr << "Found a LyXText that fits:\n";
|
2002-06-11 22:38:49 +00:00
|
|
|
textcache.show(lyxerr, make_pair(buffer_, make_pair(workarea().workWidth(), bv_->text)));
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
|
|
|
// Set the owner of the newly found text
|
2000-06-12 11:27:15 +00:00
|
|
|
// bv_->text->owner(bv_);
|
2000-04-09 22:48:51 +00:00
|
|
|
if (lyxerr.debugging())
|
|
|
|
textcache.show(lyxerr, "resizeCurrentBuffer");
|
2002-11-21 18:33:09 +00:00
|
|
|
|
2002-11-07 00:28:39 +00:00
|
|
|
buffer_->resizeInsets(bv_);
|
2000-04-09 22:48:51 +00:00
|
|
|
} else {
|
2000-06-12 11:27:15 +00:00
|
|
|
bv_->text = new LyXText(bv_);
|
2001-07-06 15:41:17 +00:00
|
|
|
bv_->text->init(bv_);
|
2002-03-12 17:15:44 +00:00
|
|
|
//buffer_->resizeInsets(bv_);
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
|
|
|
}
|
2002-03-12 17:15:44 +00:00
|
|
|
|
2000-04-09 22:48:51 +00:00
|
|
|
if (par) {
|
2001-05-31 02:23:46 +00:00
|
|
|
bv_->text->selection.set(true);
|
2002-03-12 17:15:44 +00:00
|
|
|
// At this point just to avoid the Delete-Empty-Paragraph-
|
|
|
|
// Mechanism when setting the cursor.
|
2001-05-31 02:23:46 +00:00
|
|
|
bv_->text->selection.mark(mark_set);
|
2000-04-09 22:48:51 +00:00
|
|
|
if (selection) {
|
2003-03-17 16:25:00 +00:00
|
|
|
bv_->text->setCursor(selstartpar, selstartpos);
|
2001-05-31 02:23:46 +00:00
|
|
|
bv_->text->selection.cursor = bv_->text->cursor;
|
2003-03-17 16:25:00 +00:00
|
|
|
bv_->text->setCursor(selendpar, selendpos);
|
|
|
|
bv_->text->setSelection();
|
|
|
|
bv_->text->setCursor(par, pos);
|
2000-04-09 22:48:51 +00:00
|
|
|
} else {
|
2003-03-17 16:25:00 +00:00
|
|
|
bv_->text->setCursor(par, pos);
|
2001-05-31 02:23:46 +00:00
|
|
|
bv_->text->selection.cursor = bv_->text->cursor;
|
|
|
|
bv_->text->selection.set(false);
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
2001-02-19 16:01:31 +00:00
|
|
|
// remake the inset locking
|
2001-06-15 16:18:43 +00:00
|
|
|
bv_->theLockingInset(the_locking_inset);
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
2002-03-12 17:15:44 +00:00
|
|
|
|
2003-03-06 20:21:21 +00:00
|
|
|
bv_->text->top_y(screen().topCursorVisible(bv_->text->cursor, bv_->text->top_y()));
|
2002-03-12 17:15:44 +00:00
|
|
|
|
2002-07-17 04:13:41 +00:00
|
|
|
switchKeyMap();
|
2003-02-14 14:49:51 +00:00
|
|
|
owner_->busy(false);
|
2000-04-09 22:48:51 +00:00
|
|
|
|
2003-04-07 16:57:38 +00:00
|
|
|
// reset the "Formatting..." message
|
|
|
|
owner_->clearMessage();
|
|
|
|
|
2002-08-07 14:15:06 +00:00
|
|
|
updateScrollbar();
|
2002-08-10 15:21:07 +00:00
|
|
|
|
2000-04-09 22:48:51 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-06-21 02:22:13 +00:00
|
|
|
void BufferView::Pimpl::repaint()
|
2000-04-08 17:02:02 +00:00
|
|
|
{
|
|
|
|
// Regenerate the screen.
|
2002-06-18 15:44:30 +00:00
|
|
|
screen().redraw(bv_->text, bv_);
|
2000-04-08 17:02:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-04-09 22:48:51 +00:00
|
|
|
void BufferView::Pimpl::updateScrollbar()
|
|
|
|
{
|
2001-06-04 23:57:32 +00:00
|
|
|
if (!bv_->text) {
|
2002-03-25 17:00:04 +00:00
|
|
|
lyxerr[Debug::GUI] << "no text in updateScrollbar" << endl;
|
2002-06-12 15:01:32 +00:00
|
|
|
workarea().setScrollbarParams(0, 0, 0);
|
2000-04-09 22:48:51 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2002-06-12 15:01:32 +00:00
|
|
|
LyXText const & t = *bv_->text;
|
2002-07-22 20:57:58 +00:00
|
|
|
|
2003-03-06 20:21:21 +00:00
|
|
|
lyxerr[Debug::GUI] << "Updating scrollbar: h " << t.height << ", top_y() "
|
|
|
|
<< t.top_y() << ", default height " << defaultRowHeight() << endl;
|
2002-06-24 20:28:12 +00:00
|
|
|
|
2003-03-06 20:21:21 +00:00
|
|
|
workarea().setScrollbarParams(t.height, t.top_y(), defaultRowHeight());
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-06-12 15:01:32 +00:00
|
|
|
void BufferView::Pimpl::scrollDocView(int value)
|
2000-04-09 22:48:51 +00:00
|
|
|
{
|
2002-06-12 15:01:32 +00:00
|
|
|
lyxerr[Debug::GUI] << "scrollDocView of " << value << endl;
|
2002-04-05 15:17:24 +00:00
|
|
|
|
2002-08-29 13:05:55 +00:00
|
|
|
if (!buffer_)
|
|
|
|
return;
|
2000-04-09 22:48:51 +00:00
|
|
|
|
2003-05-03 18:05:53 +00:00
|
|
|
screen().hideCursor();
|
|
|
|
|
2002-06-12 15:01:32 +00:00
|
|
|
screen().draw(bv_->text, bv_, value);
|
2000-04-09 22:48:51 +00:00
|
|
|
|
2002-08-29 13:05:55 +00:00
|
|
|
if (!lyxrc.cursor_follows_scrollbar)
|
2001-02-07 16:44:49 +00:00
|
|
|
return;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2001-02-07 16:44:49 +00:00
|
|
|
LyXText * vbt = bv_->text;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2003-02-14 00:41:44 +00:00
|
|
|
int const height = defaultRowHeight();
|
2003-03-06 20:21:21 +00:00
|
|
|
int const first = static_cast<int>((bv_->text->top_y() + height));
|
|
|
|
int const last = static_cast<int>((bv_->text->top_y() + workarea().workHeight() - height));
|
2001-02-07 16:44:49 +00:00
|
|
|
|
|
|
|
if (vbt->cursor.y() < first)
|
2003-03-17 16:25:00 +00:00
|
|
|
vbt->setCursorFromCoordinates(0, first);
|
2001-02-07 16:44:49 +00:00
|
|
|
else if (vbt->cursor.y() > last)
|
2003-03-17 16:25:00 +00:00
|
|
|
vbt->setCursorFromCoordinates(0, last);
|
2003-03-18 20:54:01 +00:00
|
|
|
|
2003-03-26 15:55:52 +00:00
|
|
|
owner_->updateLayoutChoice();
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-10-21 00:15:48 +00:00
|
|
|
void BufferView::Pimpl::scroll(int lines)
|
2000-04-08 17:02:02 +00:00
|
|
|
{
|
2002-10-21 00:15:48 +00:00
|
|
|
if (!buffer_) {
|
|
|
|
return;
|
|
|
|
}
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2002-06-12 15:01:32 +00:00
|
|
|
LyXText const * t = bv_->text;
|
2003-02-14 00:41:44 +00:00
|
|
|
int const line_height = defaultRowHeight();
|
2002-06-24 20:28:12 +00:00
|
|
|
|
2002-10-21 15:29:41 +00:00
|
|
|
// The new absolute coordinate
|
2003-03-06 20:21:21 +00:00
|
|
|
int new_top_y = t->top_y() + lines * line_height;
|
2002-06-24 20:28:12 +00:00
|
|
|
|
2002-10-21 00:15:48 +00:00
|
|
|
// Restrict to a valid value
|
2003-03-06 20:21:21 +00:00
|
|
|
new_top_y = std::min(t->height - 4 * line_height, new_top_y);
|
|
|
|
new_top_y = std::max(0, new_top_y);
|
2002-10-21 00:15:48 +00:00
|
|
|
|
2003-03-06 20:21:21 +00:00
|
|
|
scrollDocView(new_top_y);
|
2002-10-21 00:15:48 +00:00
|
|
|
|
|
|
|
// Update the scrollbar.
|
2003-03-06 20:21:21 +00:00
|
|
|
workarea().setScrollbarParams(t->height, t->top_y(), defaultRowHeight());
|
2000-04-08 17:02:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-06-18 15:44:30 +00:00
|
|
|
void BufferView::Pimpl::workAreaKeyPress(LyXKeySymPtr key,
|
|
|
|
key_modifier::state state)
|
2000-08-14 15:31:16 +00:00
|
|
|
{
|
2002-08-13 14:40:38 +00:00
|
|
|
bv_->owner()->getLyXFunc().processKeySym(key, state);
|
2003-05-03 18:05:53 +00:00
|
|
|
|
|
|
|
/* This is perhaps a bit of a hack. When we move
|
|
|
|
* around, or type, it's nice to be able to see
|
|
|
|
* the cursor immediately after the keypress. So
|
|
|
|
* we reset the toggle timeout and force the visibility
|
|
|
|
* of the cursor. Note we cannot do this inside
|
|
|
|
* dispatch() itself, because that's called recursively.
|
|
|
|
*/
|
|
|
|
if (available()) {
|
|
|
|
cursor_timeout.restart();
|
|
|
|
screen().showCursor(*bv_);
|
|
|
|
}
|
2000-08-14 15:31:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-01-13 17:28:42 +00:00
|
|
|
void BufferView::Pimpl::selectionRequested()
|
|
|
|
{
|
2002-03-20 10:36:03 +00:00
|
|
|
static string sel;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2002-02-04 11:30:25 +00:00
|
|
|
if (!available())
|
|
|
|
return;
|
2002-03-20 10:36:03 +00:00
|
|
|
|
|
|
|
LyXText * text = bv_->getLyXText();
|
|
|
|
|
|
|
|
if (text->selection.set() &&
|
|
|
|
(!bv_->text->xsel_cache.set() ||
|
|
|
|
text->selection.start != bv_->text->xsel_cache.start ||
|
|
|
|
text->selection.end != bv_->text->xsel_cache.end))
|
|
|
|
{
|
|
|
|
bv_->text->xsel_cache = text->selection;
|
2002-03-21 17:27:08 +00:00
|
|
|
sel = text->selectionAsString(bv_->buffer(), false);
|
2002-03-20 10:36:03 +00:00
|
|
|
} else if (!text->selection.set()) {
|
|
|
|
sel = string();
|
|
|
|
bv_->text->xsel_cache.set(false);
|
|
|
|
}
|
2002-01-13 17:28:42 +00:00
|
|
|
if (!sel.empty()) {
|
2002-06-11 22:38:49 +00:00
|
|
|
workarea().putClipboard(sel);
|
2002-01-13 17:28:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2002-02-07 16:43:54 +00:00
|
|
|
void BufferView::Pimpl::selectionLost()
|
|
|
|
{
|
2002-06-11 22:38:49 +00:00
|
|
|
if (available()) {
|
2003-05-03 18:05:53 +00:00
|
|
|
screen().hideCursor();
|
2002-03-05 16:18:02 +00:00
|
|
|
toggleSelection();
|
|
|
|
bv_->getLyXText()->clearSelection();
|
2002-03-20 10:36:03 +00:00
|
|
|
bv_->text->xsel_cache.set(false);
|
2002-03-05 16:18:02 +00:00
|
|
|
}
|
2002-02-07 16:43:54 +00:00
|
|
|
}
|
|
|
|
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2002-06-20 20:37:42 +00:00
|
|
|
void BufferView::Pimpl::workAreaResize()
|
2000-04-08 17:02:02 +00:00
|
|
|
{
|
2001-06-04 23:57:32 +00:00
|
|
|
static int work_area_width;
|
2002-07-01 14:31:57 +00:00
|
|
|
static int work_area_height;
|
2000-04-08 17:02:02 +00:00
|
|
|
|
2002-06-11 22:38:49 +00:00
|
|
|
bool const widthChange = workarea().workWidth() != work_area_width;
|
2002-06-12 00:51:45 +00:00
|
|
|
bool const heightChange = workarea().workHeight() != work_area_height;
|
2000-04-08 17:02:02 +00:00
|
|
|
|
|
|
|
// update from work area
|
2002-06-11 22:38:49 +00:00
|
|
|
work_area_width = workarea().workWidth();
|
2002-06-12 00:51:45 +00:00
|
|
|
work_area_height = workarea().workHeight();
|
2002-06-24 20:28:12 +00:00
|
|
|
|
2000-04-08 17:02:02 +00:00
|
|
|
if (buffer_ != 0) {
|
|
|
|
if (widthChange) {
|
2001-06-25 00:06:33 +00:00
|
|
|
// The visible LyXView need a resize
|
2002-06-20 20:37:42 +00:00
|
|
|
resizeCurrentBuffer();
|
2000-04-08 17:02:02 +00:00
|
|
|
|
|
|
|
// Remove all texts from the textcache
|
|
|
|
// This is not _really_ what we want to do. What
|
|
|
|
// we really want to do is to delete in textcache
|
|
|
|
// that does not have a BufferView with matching
|
|
|
|
// width, but as long as we have only one BufferView
|
|
|
|
// deleting all gives the same result.
|
|
|
|
if (lyxerr.debugging())
|
|
|
|
textcache.show(lyxerr, "Expose delete all");
|
|
|
|
textcache.clear();
|
2002-08-27 12:32:04 +00:00
|
|
|
// FIXME: this is already done in resizeCurrentBuffer() ??
|
2002-03-12 17:15:44 +00:00
|
|
|
buffer_->resizeInsets(bv_);
|
2000-04-08 17:02:02 +00:00
|
|
|
} else if (heightChange) {
|
|
|
|
// fitCursor() ensures we don't jump back
|
|
|
|
// to the start of the document on vertical
|
|
|
|
// resize
|
2001-08-02 14:55:06 +00:00
|
|
|
fitCursor();
|
2002-06-11 23:47:58 +00:00
|
|
|
}
|
2000-04-08 17:02:02 +00:00
|
|
|
}
|
|
|
|
|
2002-07-11 15:09:45 +00:00
|
|
|
if (widthChange || heightChange) {
|
2002-06-21 03:08:29 +00:00
|
|
|
repaint();
|
|
|
|
}
|
2002-06-24 20:28:12 +00:00
|
|
|
|
2000-04-08 17:02:02 +00:00
|
|
|
// always make sure that the scrollbar is sane.
|
2000-04-09 22:48:51 +00:00
|
|
|
updateScrollbar();
|
2000-04-08 17:02:02 +00:00
|
|
|
owner_->updateLayoutChoice();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-04-09 22:48:51 +00:00
|
|
|
void BufferView::Pimpl::update()
|
|
|
|
{
|
2002-06-11 23:47:58 +00:00
|
|
|
if (!bv_->theLockingInset() || !bv_->theLockingInset()->nodraw()) {
|
2003-03-17 01:34:36 +00:00
|
|
|
screen().update(*bv_);
|
|
|
|
bv_->text->clearPaint();
|
2001-06-14 10:44:21 +00:00
|
|
|
}
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
|
|
|
|
2000-06-12 11:27:15 +00:00
|
|
|
|
2001-02-14 08:38:21 +00:00
|
|
|
void BufferView::Pimpl::update(LyXText * text, BufferView::UpdateCodes f)
|
2000-04-09 22:48:51 +00:00
|
|
|
{
|
2001-05-31 02:23:46 +00:00
|
|
|
if (!text->selection.set() && (f & SELECT)) {
|
|
|
|
text->selection.cursor = text->cursor;
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
2000-04-26 13:57:28 +00:00
|
|
|
|
2003-03-17 16:25:00 +00:00
|
|
|
text->fullRebreak();
|
2000-04-26 13:57:28 +00:00
|
|
|
|
2001-02-14 10:11:22 +00:00
|
|
|
if (text->inset_owner) {
|
2001-07-20 14:18:48 +00:00
|
|
|
text->inset_owner->setUpdateStatus(bv_, InsetText::NONE);
|
2003-03-19 14:45:22 +00:00
|
|
|
updateInset(text->inset_owner);
|
2001-07-20 14:18:48 +00:00
|
|
|
} else {
|
2002-07-09 16:19:14 +00:00
|
|
|
update();
|
2001-07-20 14:18:48 +00:00
|
|
|
}
|
2003-03-19 14:45:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::Pimpl::update(BufferView::UpdateCodes f)
|
|
|
|
{
|
|
|
|
LyXText * text = bv_->text;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2003-03-19 14:45:22 +00:00
|
|
|
if (!text->selection.set() && (f & SELECT)) {
|
|
|
|
text->selection.cursor = text->cursor;
|
2001-07-20 14:18:48 +00:00
|
|
|
}
|
2000-04-26 13:57:28 +00:00
|
|
|
|
2003-03-19 14:45:22 +00:00
|
|
|
text->fullRebreak();
|
|
|
|
|
|
|
|
if (text->inset_owner) {
|
|
|
|
text->inset_owner->setUpdateStatus(bv_, InsetText::NONE);
|
|
|
|
updateInset(text->inset_owner);
|
|
|
|
} else {
|
|
|
|
update();
|
2000-04-26 13:57:28 +00:00
|
|
|
}
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Callback for cursor timer
|
|
|
|
void BufferView::Pimpl::cursorToggle()
|
|
|
|
{
|
|
|
|
if (!buffer_) {
|
2001-02-07 16:44:49 +00:00
|
|
|
cursor_timeout.restart();
|
|
|
|
return;
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2003-05-03 18:05:53 +00:00
|
|
|
screen().toggleCursor(*bv_);
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2000-06-08 23:16:16 +00:00
|
|
|
cursor_timeout.restart();
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool BufferView::Pimpl::available() const
|
|
|
|
{
|
2002-03-08 11:42:30 +00:00
|
|
|
if (buffer_ && bv_->text)
|
|
|
|
return true;
|
2000-04-09 22:48:51 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
Change const BufferView::Pimpl::getCurrentChange()
|
|
|
|
{
|
2003-03-02 12:16:00 +00:00
|
|
|
if (!bv_->buffer()->params.tracking_changes)
|
2003-02-08 19:18:01 +00:00
|
|
|
return Change(Change::UNCHANGED);
|
|
|
|
|
|
|
|
LyXText * t(bv_->getLyXText());
|
2003-03-02 12:16:00 +00:00
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
if (!t->selection.set())
|
|
|
|
return Change(Change::UNCHANGED);
|
2003-03-02 12:16:00 +00:00
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
LyXCursor const & cur(t->selection.start);
|
|
|
|
return cur.par()->lookupChangeFull(cur.pos());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-02-14 10:11:22 +00:00
|
|
|
void BufferView::Pimpl::beforeChange(LyXText * text)
|
2000-04-09 22:48:51 +00:00
|
|
|
{
|
|
|
|
toggleSelection();
|
2001-08-01 15:42:53 +00:00
|
|
|
text->clearSelection();
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-01-28 18:31:36 +00:00
|
|
|
void BufferView::Pimpl::savePosition(unsigned int i)
|
2000-04-09 22:48:51 +00:00
|
|
|
{
|
2001-01-28 18:31:36 +00:00
|
|
|
if (i >= saved_positions_num)
|
|
|
|
return;
|
|
|
|
saved_positions[i] = Position(buffer_->fileName(),
|
|
|
|
bv_->text->cursor.par()->id(),
|
|
|
|
bv_->text->cursor.pos());
|
2001-04-17 15:15:59 +00:00
|
|
|
if (i > 0) {
|
2001-06-14 17:58:49 +00:00
|
|
|
ostringstream str;
|
2002-11-24 15:20:31 +00:00
|
|
|
#if USE_BOOST_FORMAT
|
2002-11-21 18:33:09 +00:00
|
|
|
str << boost::format(_("Saved bookmark %1$d")) % i;
|
2002-11-24 15:20:31 +00:00
|
|
|
#else
|
|
|
|
str << _("Saved bookmark ") << i;
|
|
|
|
#endif
|
2002-11-04 02:12:42 +00:00
|
|
|
owner_->message(STRCONV(str.str()));
|
2001-04-17 15:15:59 +00:00
|
|
|
}
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-01-28 18:31:36 +00:00
|
|
|
void BufferView::Pimpl::restorePosition(unsigned int i)
|
2000-04-09 22:48:51 +00:00
|
|
|
{
|
2001-01-28 18:31:36 +00:00
|
|
|
if (i >= saved_positions_num)
|
|
|
|
return;
|
|
|
|
|
2001-05-03 14:31:33 +00:00
|
|
|
string const fname = saved_positions[i].filename;
|
2000-08-08 13:55:26 +00:00
|
|
|
|
2001-02-14 10:11:22 +00:00
|
|
|
beforeChange(bv_->text);
|
2000-08-08 13:55:26 +00:00
|
|
|
|
2000-11-04 10:00:12 +00:00
|
|
|
if (fname != buffer_->fileName()) {
|
2000-08-08 13:55:26 +00:00
|
|
|
Buffer * b = bufferlist.exists(fname) ?
|
2002-03-21 17:27:08 +00:00
|
|
|
bufferlist.getBuffer(fname) :
|
2000-08-08 13:55:26 +00:00
|
|
|
bufferlist.loadLyXFile(fname); // don't ask, just load it
|
2002-02-16 15:59:55 +00:00
|
|
|
if (b != 0) buffer(b);
|
2000-08-08 13:55:26 +00:00
|
|
|
}
|
|
|
|
|
2003-04-28 18:20:31 +00:00
|
|
|
Paragraph * par = &*buffer_->getParFromID(saved_positions[i].par_id);
|
2001-01-28 18:31:36 +00:00
|
|
|
if (!par)
|
|
|
|
return;
|
|
|
|
|
2003-03-17 16:25:00 +00:00
|
|
|
bv_->text->setCursor(par,
|
2001-03-11 00:21:13 +00:00
|
|
|
min(par->size(), saved_positions[i].par_pos));
|
2001-05-03 14:31:33 +00:00
|
|
|
|
2003-03-19 14:45:22 +00:00
|
|
|
update(BufferView::SELECT);
|
2001-04-17 15:15:59 +00:00
|
|
|
if (i > 0) {
|
2001-06-14 17:58:49 +00:00
|
|
|
ostringstream str;
|
2002-11-24 15:20:31 +00:00
|
|
|
#if USE_BOOST_FORMAT
|
2002-11-21 18:33:09 +00:00
|
|
|
str << boost::format(_("Moved to bookmark %1$d")) % i;
|
2002-11-24 15:20:31 +00:00
|
|
|
#else
|
|
|
|
str << _("Moved to bookmark ") << i;
|
|
|
|
#endif
|
2002-11-04 02:12:42 +00:00
|
|
|
owner_->message(STRCONV(str.str()));
|
2001-04-17 15:15:59 +00:00
|
|
|
}
|
2000-08-08 13:55:26 +00:00
|
|
|
}
|
2000-04-09 22:48:51 +00:00
|
|
|
|
2000-06-21 12:41:18 +00:00
|
|
|
|
2001-01-28 18:31:36 +00:00
|
|
|
bool BufferView::Pimpl::isSavedPosition(unsigned int i)
|
2000-06-05 15:12:09 +00:00
|
|
|
{
|
2001-01-28 18:31:36 +00:00
|
|
|
if (i >= saved_positions_num)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return !saved_positions[i].filename.empty();
|
2000-06-05 15:12:09 +00:00
|
|
|
}
|
|
|
|
|
2000-04-09 22:48:51 +00:00
|
|
|
|
2002-07-17 04:13:41 +00:00
|
|
|
void BufferView::Pimpl::switchKeyMap()
|
2000-04-09 22:48:51 +00:00
|
|
|
{
|
|
|
|
if (!lyxrc.rtl_support)
|
|
|
|
return;
|
|
|
|
|
2000-12-17 06:09:35 +00:00
|
|
|
LyXText * text = bv_->getLyXText();
|
2002-05-05 16:33:19 +00:00
|
|
|
if (text->real_current_font.isRightToLeft()
|
|
|
|
&& !(bv_->theLockingInset()
|
2002-08-20 15:26:52 +00:00
|
|
|
&& bv_->theLockingInset()->lyxCode() == Inset::ERT_CODE))
|
2002-05-05 16:33:19 +00:00
|
|
|
{
|
2002-08-13 14:40:38 +00:00
|
|
|
if (owner_->getIntl().keymap == Intl::PRIMARY)
|
|
|
|
owner_->getIntl().KeyMapSec();
|
2000-04-09 22:48:51 +00:00
|
|
|
} else {
|
2002-08-13 14:40:38 +00:00
|
|
|
if (owner_->getIntl().keymap == Intl::SECONDARY)
|
|
|
|
owner_->getIntl().KeyMapPrim();
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::Pimpl::insetUnlock()
|
|
|
|
{
|
2000-10-03 13:55:48 +00:00
|
|
|
if (bv_->theLockingInset()) {
|
2002-06-12 02:54:19 +00:00
|
|
|
bv_->theLockingInset()->insetUnlock(bv_);
|
2000-10-03 13:55:48 +00:00
|
|
|
bv_->theLockingInset(0);
|
2001-07-06 15:57:54 +00:00
|
|
|
finishUndo();
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::Pimpl::toggleSelection(bool b)
|
|
|
|
{
|
2002-06-11 23:47:58 +00:00
|
|
|
if (bv_->theLockingInset())
|
|
|
|
bv_->theLockingInset()->toggleSelection(bv_, b);
|
|
|
|
screen().toggleSelection(bv_->text, bv_, b);
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::Pimpl::toggleToggle()
|
|
|
|
{
|
2002-06-11 23:47:58 +00:00
|
|
|
screen().toggleToggle(bv_->text, bv_);
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-03-21 17:27:08 +00:00
|
|
|
void BufferView::Pimpl::center()
|
2000-04-09 22:48:51 +00:00
|
|
|
{
|
2002-07-09 16:19:14 +00:00
|
|
|
LyXText * t = bv_->text;
|
2002-07-22 20:57:58 +00:00
|
|
|
|
2002-07-09 16:19:14 +00:00
|
|
|
beforeChange(t);
|
|
|
|
int const half_height = workarea().workHeight() / 2;
|
|
|
|
int new_y = 0;
|
2002-07-22 20:57:58 +00:00
|
|
|
|
2002-07-09 16:19:14 +00:00
|
|
|
if (t->cursor.y() > half_height) {
|
|
|
|
new_y = t->cursor.y() - half_height;
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
2002-07-22 20:57:58 +00:00
|
|
|
|
2003-03-19 14:45:22 +00:00
|
|
|
// FIXME: look at this comment again ...
|
|
|
|
|
2002-07-09 16:19:14 +00:00
|
|
|
// FIXME: can we do this w/o calling screen directly ?
|
2003-03-06 20:21:21 +00:00
|
|
|
// This updates top_y() but means the fitCursor() call
|
2002-07-09 16:19:14 +00:00
|
|
|
// from the update(FITCUR) doesn't realise that we might
|
|
|
|
// have moved (e.g. from GOTOPARAGRAPH), so doesn't cause
|
|
|
|
// the scrollbar to be updated as it should, so we have
|
|
|
|
// to do it manually. Any operation that does a center()
|
2003-03-06 20:21:21 +00:00
|
|
|
// and also might have moved top_y() must make sure to call
|
2002-07-22 20:57:58 +00:00
|
|
|
// updateScrollbar() currently. Never mind that this is a
|
2003-03-06 20:21:21 +00:00
|
|
|
// pretty obfuscated way of updating t->top_y()
|
2002-07-09 16:19:14 +00:00
|
|
|
screen().draw(t, bv_, new_y);
|
2002-07-22 20:57:58 +00:00
|
|
|
|
2003-03-19 14:45:22 +00:00
|
|
|
update(BufferView::SELECT);
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
2000-05-20 01:38:25 +00:00
|
|
|
|
|
|
|
|
2000-05-20 21:37:05 +00:00
|
|
|
void BufferView::Pimpl::stuffClipboard(string const & stuff) const
|
|
|
|
{
|
2002-06-11 22:38:49 +00:00
|
|
|
workarea().putClipboard(stuff);
|
2000-05-20 21:37:05 +00:00
|
|
|
}
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Dispatch functions for actions which can be valid for BufferView->text
|
|
|
|
* and/or InsetText->text!!!
|
|
|
|
*/
|
2001-05-29 09:50:02 +00:00
|
|
|
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
Inset * BufferView::Pimpl::getInsetByCode(Inset::Code code)
|
|
|
|
{
|
2002-08-20 17:18:21 +00:00
|
|
|
#if 0
|
2001-05-29 09:50:02 +00:00
|
|
|
LyXCursor cursor = bv_->getLyXText()->cursor;
|
2001-02-23 16:10:03 +00:00
|
|
|
Buffer::inset_iterator it =
|
|
|
|
find_if(Buffer::inset_iterator(
|
|
|
|
cursor.par(), cursor.pos()),
|
|
|
|
buffer_->inset_iterator_end(),
|
2001-06-28 10:25:20 +00:00
|
|
|
lyx::compare_memfun(&Inset::lyxCode, code));
|
2001-02-23 16:10:03 +00:00
|
|
|
return it != buffer_->inset_iterator_end() ? (*it) : 0;
|
2002-08-20 17:18:21 +00:00
|
|
|
#else
|
|
|
|
// Ok, this is a little bit too brute force but it
|
|
|
|
// should work for now. Better infrastructure is comming. (Lgb)
|
|
|
|
|
|
|
|
Buffer * b = bv_->buffer();
|
|
|
|
LyXCursor cursor = bv_->getLyXText()->cursor;
|
|
|
|
|
|
|
|
Buffer::inset_iterator beg = b->inset_iterator_begin();
|
|
|
|
Buffer::inset_iterator end = b->inset_iterator_end();
|
|
|
|
|
|
|
|
bool cursor_par_seen = false;
|
2002-08-20 20:04:24 +00:00
|
|
|
|
2002-08-20 17:18:21 +00:00
|
|
|
for (; beg != end; ++beg) {
|
|
|
|
if (beg.getPar() == cursor.par()) {
|
|
|
|
cursor_par_seen = true;
|
|
|
|
}
|
|
|
|
if (cursor_par_seen) {
|
|
|
|
if (beg.getPar() == cursor.par()
|
|
|
|
&& beg.getPos() >= cursor.pos()) {
|
|
|
|
break;
|
|
|
|
} else if (beg.getPar() != cursor.par()) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2002-08-20 20:04:24 +00:00
|
|
|
|
2002-08-20 17:18:21 +00:00
|
|
|
}
|
|
|
|
if (beg != end) {
|
|
|
|
// Now find the first inset that matches code.
|
|
|
|
for (; beg != end; ++beg) {
|
|
|
|
if (beg->lyxCode() == code) {
|
|
|
|
return &(*beg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
#endif
|
2001-02-23 16:10:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::Pimpl::MenuInsertLyXFile(string const & filen)
|
|
|
|
{
|
|
|
|
string filename = filen;
|
|
|
|
|
|
|
|
if (filename.empty()) {
|
|
|
|
// Launch a file browser
|
|
|
|
string initpath = lyxrc.document_path;
|
|
|
|
|
|
|
|
if (available()) {
|
2002-01-14 23:31:23 +00:00
|
|
|
string const trypath = owner_->buffer()->filePath();
|
2001-02-23 16:10:03 +00:00
|
|
|
// If directory is writeable, use this as default.
|
2001-08-01 10:08:53 +00:00
|
|
|
if (IsDirWriteable(trypath))
|
2001-02-23 16:10:03 +00:00
|
|
|
initpath = trypath;
|
|
|
|
}
|
|
|
|
|
2003-02-21 12:22:25 +00:00
|
|
|
FileDialog fileDlg(_("Select LyX document to insert"),
|
2001-03-07 14:25:31 +00:00
|
|
|
LFUN_FILE_INSERT,
|
2002-01-13 15:01:25 +00:00
|
|
|
make_pair(string(_("Documents|#o#O")),
|
2001-05-29 09:50:02 +00:00
|
|
|
string(lyxrc.document_path)),
|
2002-01-13 15:01:25 +00:00
|
|
|
make_pair(string(_("Examples|#E#e")),
|
2001-05-29 09:50:02 +00:00
|
|
|
string(AddPath(system_lyxdir, "examples"))));
|
|
|
|
|
|
|
|
FileDialog::Result result =
|
2002-11-17 08:32:09 +00:00
|
|
|
fileDlg.open(initpath,
|
2001-05-29 09:50:02 +00:00
|
|
|
_("*.lyx| LyX Documents (*.lyx)"));
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2001-03-07 14:25:31 +00:00
|
|
|
if (result.first == FileDialog::Later)
|
|
|
|
return;
|
|
|
|
|
|
|
|
filename = result.second;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
// check selected filename
|
|
|
|
if (filename.empty()) {
|
2001-04-24 17:33:01 +00:00
|
|
|
owner_->message(_("Canceled."));
|
2001-02-23 16:10:03 +00:00
|
|
|
return;
|
|
|
|
}
|
2001-03-07 14:25:31 +00:00
|
|
|
}
|
2001-02-23 16:10:03 +00:00
|
|
|
|
2001-06-27 14:10:35 +00:00
|
|
|
// get absolute path of file and add ".lyx" to the filename if
|
|
|
|
// necessary
|
|
|
|
filename = FileSearch(string(), filename, "lyx");
|
2001-02-23 16:10:03 +00:00
|
|
|
|
2001-06-14 17:58:49 +00:00
|
|
|
string const disp_fn(MakeDisplayPath(filename));
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2001-06-14 17:58:49 +00:00
|
|
|
ostringstream s1;
|
2002-11-24 15:20:31 +00:00
|
|
|
#if USE_BOOST_FORMAT
|
2003-01-23 16:23:43 +00:00
|
|
|
s1 << boost::format(_("Inserting document %1$s...")) % disp_fn;
|
2002-11-24 15:20:31 +00:00
|
|
|
#else
|
2003-01-23 16:23:43 +00:00
|
|
|
s1 << _("Inserting document ") << disp_fn << _("...");
|
2002-11-24 15:20:31 +00:00
|
|
|
#endif
|
2002-11-04 02:12:42 +00:00
|
|
|
owner_->message(STRCONV(s1.str()));
|
2001-02-23 16:10:03 +00:00
|
|
|
bool const res = bv_->insertLyXFile(filename);
|
|
|
|
if (res) {
|
2001-06-14 17:58:49 +00:00
|
|
|
ostringstream str;
|
2002-11-24 15:20:31 +00:00
|
|
|
#if USE_BOOST_FORMAT
|
2002-11-21 18:33:09 +00:00
|
|
|
str << boost::format(_("Document %1$s inserted.")) % disp_fn;
|
2002-11-24 15:20:31 +00:00
|
|
|
#else
|
|
|
|
str << _("Document ") << disp_fn << _(" inserted.");
|
|
|
|
#endif
|
2002-11-04 02:12:42 +00:00
|
|
|
owner_->message(STRCONV(str.str()));
|
2001-02-23 16:10:03 +00:00
|
|
|
} else {
|
2001-06-14 17:58:49 +00:00
|
|
|
ostringstream str;
|
2002-11-24 15:20:31 +00:00
|
|
|
#if USE_BOOST_FORMAT
|
2002-11-21 18:33:09 +00:00
|
|
|
str << boost::format(_("Could not insert document %1$s")) % disp_fn;
|
2002-11-24 15:20:31 +00:00
|
|
|
#else
|
|
|
|
str << _("Could not insert document ") << disp_fn;
|
|
|
|
#endif
|
2002-11-04 02:12:42 +00:00
|
|
|
owner_->message(STRCONV(str.str()));
|
2001-02-23 16:10:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
void BufferView::Pimpl::trackChanges()
|
|
|
|
{
|
|
|
|
Buffer * buf(bv_->buffer());
|
|
|
|
bool const tracking(buf->params.tracking_changes);
|
|
|
|
|
|
|
|
if (!tracking) {
|
|
|
|
ParIterator const end = buf->par_iterator_end();
|
|
|
|
for (ParIterator it = buf->par_iterator_begin(); it != end; ++it) {
|
|
|
|
(*it)->trackChanges();
|
|
|
|
}
|
|
|
|
buf->params.tracking_changes = true;
|
|
|
|
|
|
|
|
// we cannot allow undos beyond the freeze point
|
|
|
|
buf->undostack.clear();
|
|
|
|
} else {
|
2003-03-19 14:45:22 +00:00
|
|
|
update(BufferView::SELECT);
|
2003-03-17 16:25:00 +00:00
|
|
|
bv_->text->setCursor(&(*buf->paragraphs.begin()), 0);
|
2003-03-02 12:16:00 +00:00
|
|
|
#warning changes FIXME
|
2003-02-08 19:18:01 +00:00
|
|
|
//moveCursorUpdate(false);
|
|
|
|
|
|
|
|
bool found = lyxfind::findNextChange(bv_);
|
|
|
|
if (found) {
|
2003-03-09 21:03:43 +00:00
|
|
|
owner_->getDialogs().show("changes");
|
2003-02-08 19:18:01 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ParIterator const end = buf->par_iterator_end();
|
|
|
|
for (ParIterator it = buf->par_iterator_begin(); it != end; ++it) {
|
|
|
|
(*it)->untrackChanges();
|
|
|
|
}
|
|
|
|
buf->params.tracking_changes = false;
|
|
|
|
}
|
2003-03-02 12:16:00 +00:00
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
buf->redostack.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-03-24 02:31:44 +00:00
|
|
|
// Doesn't go through lyxfunc, so we need to update the
|
|
|
|
// layout choice etc. ourselves
|
|
|
|
bool BufferView::Pimpl::workAreaDispatch(FuncRequest const & ev_in)
|
|
|
|
{
|
|
|
|
// e.g. Qt mouse press when no buffer
|
|
|
|
if (!available())
|
|
|
|
return false;
|
|
|
|
|
2003-05-03 18:05:53 +00:00
|
|
|
screen().hideCursor();
|
|
|
|
|
2003-03-24 02:31:44 +00:00
|
|
|
bool const res = dispatch(ev_in);
|
|
|
|
|
2003-05-03 18:05:53 +00:00
|
|
|
// see workAreaKeyPress
|
|
|
|
cursor_timeout.restart();
|
|
|
|
screen().showCursor(*bv_);
|
|
|
|
|
2003-04-10 14:08:06 +00:00
|
|
|
// FIXME: we should skip these when selecting
|
2003-03-24 02:31:44 +00:00
|
|
|
bv_->owner()->updateLayoutChoice();
|
2003-04-10 14:08:06 +00:00
|
|
|
bv_->owner()->updateToolbar();
|
2003-03-24 02:31:44 +00:00
|
|
|
bv_->fitCursor();
|
|
|
|
|
2003-04-07 16:57:38 +00:00
|
|
|
// slight hack: this is only called currently when
|
|
|
|
// we clicked somewhere, so we force through the display
|
|
|
|
// of the new status here.
|
|
|
|
bv_->owner()->clearMessage();
|
|
|
|
|
2003-03-24 02:31:44 +00:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-02-26 19:28:38 +00:00
|
|
|
bool BufferView::Pimpl::dispatch(FuncRequest const & ev_in)
|
2001-02-23 16:10:03 +00:00
|
|
|
{
|
2003-02-26 19:28:38 +00:00
|
|
|
// Make sure that the cached BufferView is correct.
|
|
|
|
FuncRequest ev = ev_in;
|
|
|
|
ev.setView(bv_);
|
|
|
|
|
2002-08-28 08:30:27 +00:00
|
|
|
lyxerr[Debug::ACTION] << "BufferView::Pimpl::Dispatch:"
|
2002-11-27 10:30:28 +00:00
|
|
|
<< " action[" << ev.action << ']'
|
|
|
|
<< " arg[" << ev.argument << ']'
|
|
|
|
<< " x[" << ev.x << ']'
|
|
|
|
<< " y[" << ev.y << ']'
|
|
|
|
<< " button[" << ev.button() << ']'
|
2002-08-28 08:30:27 +00:00
|
|
|
<< endl;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2002-07-21 21:21:06 +00:00
|
|
|
LyXTextClass const & tclass = buffer_->params.getLyXTextClass();
|
2002-05-01 22:17:09 +00:00
|
|
|
|
2002-08-07 08:11:41 +00:00
|
|
|
switch (ev.action) {
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
case LFUN_SCROLL_INSET:
|
2002-08-19 15:39:25 +00:00
|
|
|
// this is not handled here as this function is only active
|
2001-02-23 16:10:03 +00:00
|
|
|
// if we have a locking_inset and that one is (or contains)
|
|
|
|
// a tabular-inset
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_FILE_INSERT:
|
2002-08-07 08:11:41 +00:00
|
|
|
MenuInsertLyXFile(ev.argument);
|
2001-11-29 17:12:21 +00:00
|
|
|
break;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2001-03-07 14:25:31 +00:00
|
|
|
case LFUN_FILE_INSERT_ASCII_PARA:
|
2002-08-07 08:11:41 +00:00
|
|
|
InsertAsciiFile(bv_, ev.argument, true);
|
2001-03-07 14:25:31 +00:00
|
|
|
break;
|
|
|
|
|
2001-02-23 16:10:03 +00:00
|
|
|
case LFUN_FILE_INSERT_ASCII:
|
2002-08-07 08:11:41 +00:00
|
|
|
InsertAsciiFile(bv_, ev.argument, false);
|
2001-03-07 14:25:31 +00:00
|
|
|
break;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2001-02-23 16:10:03 +00:00
|
|
|
case LFUN_LANGUAGE:
|
2002-08-07 08:11:41 +00:00
|
|
|
lang(bv_, ev.argument);
|
2002-07-17 04:13:41 +00:00
|
|
|
switchKeyMap();
|
|
|
|
owner_->view_state_changed();
|
2001-02-23 16:10:03 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_EMPH:
|
2001-08-02 18:46:53 +00:00
|
|
|
emph(bv_);
|
2002-07-17 04:13:41 +00:00
|
|
|
owner_->view_state_changed();
|
2001-02-23 16:10:03 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_BOLD:
|
2001-08-02 18:46:53 +00:00
|
|
|
bold(bv_);
|
2002-07-17 04:13:41 +00:00
|
|
|
owner_->view_state_changed();
|
2001-02-23 16:10:03 +00:00
|
|
|
break;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2001-02-23 16:10:03 +00:00
|
|
|
case LFUN_NOUN:
|
2001-08-02 18:46:53 +00:00
|
|
|
noun(bv_);
|
2002-07-17 04:13:41 +00:00
|
|
|
owner_->view_state_changed();
|
2001-02-23 16:10:03 +00:00
|
|
|
break;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2001-02-23 16:10:03 +00:00
|
|
|
case LFUN_CODE:
|
2001-08-02 18:46:53 +00:00
|
|
|
code(bv_);
|
2002-07-17 04:13:41 +00:00
|
|
|
owner_->view_state_changed();
|
2001-02-23 16:10:03 +00:00
|
|
|
break;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2001-02-23 16:10:03 +00:00
|
|
|
case LFUN_SANS:
|
2001-08-02 18:46:53 +00:00
|
|
|
sans(bv_);
|
2002-07-17 04:13:41 +00:00
|
|
|
owner_->view_state_changed();
|
2001-02-23 16:10:03 +00:00
|
|
|
break;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2001-02-23 16:10:03 +00:00
|
|
|
case LFUN_ROMAN:
|
2001-08-02 18:46:53 +00:00
|
|
|
roman(bv_);
|
2002-07-17 04:13:41 +00:00
|
|
|
owner_->view_state_changed();
|
2001-02-23 16:10:03 +00:00
|
|
|
break;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2001-02-23 16:10:03 +00:00
|
|
|
case LFUN_DEFAULT:
|
2001-08-02 18:46:53 +00:00
|
|
|
styleReset(bv_);
|
2002-07-17 04:13:41 +00:00
|
|
|
owner_->view_state_changed();
|
2001-02-23 16:10:03 +00:00
|
|
|
break;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2001-02-23 16:10:03 +00:00
|
|
|
case LFUN_UNDERLINE:
|
2001-08-02 18:46:53 +00:00
|
|
|
underline(bv_);
|
2002-07-17 04:13:41 +00:00
|
|
|
owner_->view_state_changed();
|
2001-02-23 16:10:03 +00:00
|
|
|
break;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2001-02-23 16:10:03 +00:00
|
|
|
case LFUN_FONT_SIZE:
|
2002-08-07 08:11:41 +00:00
|
|
|
fontSize(bv_, ev.argument);
|
2002-07-17 04:13:41 +00:00
|
|
|
owner_->view_state_changed();
|
2001-02-23 16:10:03 +00:00
|
|
|
break;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2001-02-23 16:10:03 +00:00
|
|
|
case LFUN_FONT_STATE:
|
2002-08-13 14:40:38 +00:00
|
|
|
owner_->getLyXFunc().setMessage(currentState(bv_));
|
2001-02-23 16:10:03 +00:00
|
|
|
break;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2003-02-27 16:24:14 +00:00
|
|
|
case LFUN_INSERT_LABEL: {
|
|
|
|
// Try and generate a valid label
|
|
|
|
string const contents = ev.argument.empty() ?
|
|
|
|
getPossibleLabel(*bv_) : ev.argument;
|
|
|
|
InsetCommandParams icp("label", contents);
|
|
|
|
string data = InsetCommandMailer::params2string("label", icp);
|
|
|
|
owner_->getDialogs().show("label", data, 0);
|
|
|
|
}
|
|
|
|
break;
|
2001-11-09 13:44:48 +00:00
|
|
|
|
2001-02-23 16:10:03 +00:00
|
|
|
case LFUN_BOOKMARK_SAVE:
|
2002-08-07 08:11:41 +00:00
|
|
|
savePosition(strToUnsignedInt(ev.argument));
|
2001-02-23 16:10:03 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_BOOKMARK_GOTO:
|
2002-08-07 08:11:41 +00:00
|
|
|
restorePosition(strToUnsignedInt(ev.argument));
|
2001-02-23 16:10:03 +00:00
|
|
|
break;
|
|
|
|
|
2003-03-29 10:29:38 +00:00
|
|
|
case LFUN_REF_GOTO: {
|
2002-08-07 08:11:41 +00:00
|
|
|
string label = ev.argument;
|
2001-02-23 16:10:03 +00:00
|
|
|
if (label.empty()) {
|
2002-03-21 17:27:08 +00:00
|
|
|
InsetRef * inset =
|
2001-02-23 16:10:03 +00:00
|
|
|
static_cast<InsetRef*>(getInsetByCode(Inset::REF_CODE));
|
|
|
|
if (inset) {
|
2002-03-21 17:27:08 +00:00
|
|
|
label = inset->getContents();
|
2001-02-23 16:10:03 +00:00
|
|
|
savePosition(0);
|
|
|
|
}
|
|
|
|
}
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2003-03-29 10:29:38 +00:00
|
|
|
if (!label.empty())
|
|
|
|
bv_->gotoLabel(label);
|
2001-02-23 16:10:03 +00:00
|
|
|
}
|
2001-05-29 09:50:02 +00:00
|
|
|
break;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2001-02-23 16:10:03 +00:00
|
|
|
// --- accented characters ---------------------------
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2001-02-23 16:10:03 +00:00
|
|
|
case LFUN_UMLAUT:
|
|
|
|
case LFUN_CIRCUMFLEX:
|
|
|
|
case LFUN_GRAVE:
|
|
|
|
case LFUN_ACUTE:
|
|
|
|
case LFUN_TILDE:
|
|
|
|
case LFUN_CEDILLA:
|
|
|
|
case LFUN_MACRON:
|
|
|
|
case LFUN_DOT:
|
|
|
|
case LFUN_UNDERDOT:
|
|
|
|
case LFUN_UNDERBAR:
|
|
|
|
case LFUN_CARON:
|
|
|
|
case LFUN_SPECIAL_CARON:
|
|
|
|
case LFUN_BREVE:
|
|
|
|
case LFUN_TIE:
|
|
|
|
case LFUN_HUNG_UMLAUT:
|
|
|
|
case LFUN_CIRCLE:
|
|
|
|
case LFUN_OGONEK:
|
2002-08-07 08:11:41 +00:00
|
|
|
if (ev.argument.empty()) {
|
2001-05-16 07:53:23 +00:00
|
|
|
// As always...
|
2002-08-13 14:40:38 +00:00
|
|
|
owner_->getLyXFunc().handleKeyFunc(ev.action);
|
2001-05-16 07:53:23 +00:00
|
|
|
} else {
|
2002-08-13 14:40:38 +00:00
|
|
|
owner_->getLyXFunc().handleKeyFunc(ev.action);
|
|
|
|
owner_->getIntl().getTransManager()
|
2002-08-07 08:11:41 +00:00
|
|
|
.TranslateAndInsert(ev.argument[0], bv_->getLyXText());
|
2003-03-19 14:45:22 +00:00
|
|
|
update(bv_->getLyXText(), BufferView::SELECT);
|
2001-05-16 07:53:23 +00:00
|
|
|
}
|
2001-02-23 16:10:03 +00:00
|
|
|
break;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2001-07-06 12:09:32 +00:00
|
|
|
case LFUN_MATH_MACRO:
|
2002-03-21 17:27:08 +00:00
|
|
|
case LFUN_MATH_DELIM:
|
2001-02-23 16:10:03 +00:00
|
|
|
case LFUN_INSERT_MATRIX:
|
|
|
|
case LFUN_INSERT_MATH:
|
2001-07-06 12:09:32 +00:00
|
|
|
case LFUN_MATH_IMPORT_SELECTION: // Imports LaTeX from the X selection
|
|
|
|
case LFUN_MATH_DISPLAY: // Open or create a displayed math inset
|
2002-03-21 17:27:08 +00:00
|
|
|
case LFUN_MATH_MODE: // Open or create an inlined math inset
|
2003-02-26 19:28:38 +00:00
|
|
|
mathDispatch(ev);
|
2001-10-19 15:13:49 +00:00
|
|
|
break;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2003-02-27 13:26:07 +00:00
|
|
|
case LFUN_INSET_APPLY: {
|
|
|
|
string const name = ev.getArg(0);
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2003-03-25 21:27:07 +00:00
|
|
|
InsetBase * inset = owner_->getDialogs().getOpenInset(name);
|
|
|
|
if (inset) {
|
2003-02-26 15:01:10 +00:00
|
|
|
// This works both for 'original' and 'mathed' insets.
|
2003-02-26 19:28:38 +00:00
|
|
|
// Note that the localDispatch performs updateInset
|
|
|
|
// also.
|
2003-03-04 14:31:04 +00:00
|
|
|
FuncRequest fr(bv_, LFUN_INSET_MODIFY, ev.argument);
|
2003-03-25 21:27:07 +00:00
|
|
|
inset->localDispatch(fr);
|
2003-02-25 14:51:38 +00:00
|
|
|
} else {
|
2003-03-25 21:27:07 +00:00
|
|
|
FuncRequest fr(bv_, LFUN_INSET_INSERT, ev.argument);
|
|
|
|
dispatch(fr);
|
2003-02-25 14:51:38 +00:00
|
|
|
}
|
2003-03-25 21:27:07 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_INSET_INSERT: {
|
|
|
|
Inset * inset = createInset(ev);
|
|
|
|
if (inset && insertInset(inset)) {
|
|
|
|
updateInset(inset);
|
2003-02-25 14:51:38 +00:00
|
|
|
|
2003-03-25 21:27:07 +00:00
|
|
|
string const name = ev.getArg(0);
|
|
|
|
if (name == "bibitem") {
|
|
|
|
// We need to do a redraw because the maximum
|
|
|
|
// InsetBibitem width could have changed
|
2003-02-26 19:28:38 +00:00
|
|
|
#warning please check you mean repaint() not update(),
|
|
|
|
#warning and whether the repaint() is needed at all
|
2003-03-25 21:27:07 +00:00
|
|
|
bv_->repaint();
|
|
|
|
bv_->fitCursor();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
delete inset;
|
2003-02-25 14:51:38 +00:00
|
|
|
}
|
2001-02-23 16:10:03 +00:00
|
|
|
}
|
|
|
|
break;
|
2003-03-30 21:42:09 +00:00
|
|
|
|
2001-05-04 10:36:36 +00:00
|
|
|
case LFUN_FLOAT_LIST:
|
2002-08-27 15:51:19 +00:00
|
|
|
if (tclass.floats().typeExist(ev.argument)) {
|
2002-08-07 08:11:41 +00:00
|
|
|
Inset * inset = new InsetFloatList(ev.argument);
|
2002-05-01 22:17:09 +00:00
|
|
|
if (!insertInset(inset, tclass.defaultLayoutName()))
|
2002-04-28 14:00:48 +00:00
|
|
|
delete inset;
|
|
|
|
} else {
|
|
|
|
lyxerr << "Non-existent float type: "
|
2002-08-07 08:11:41 +00:00
|
|
|
<< ev.argument << endl;
|
2002-04-28 14:00:48 +00:00
|
|
|
}
|
|
|
|
break;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2003-03-13 13:56:25 +00:00
|
|
|
case LFUN_LAYOUT_PARAGRAPH: {
|
2003-04-09 09:15:20 +00:00
|
|
|
Paragraph const * par = &*bv_->getLyXText()->cursor.par();
|
2003-03-13 13:56:25 +00:00
|
|
|
if (!par)
|
|
|
|
break;
|
|
|
|
|
|
|
|
string data;
|
|
|
|
params2string(*par, data);
|
|
|
|
|
|
|
|
data = "show\n" + data;
|
|
|
|
bv_->owner()->getDialogs().show("paragraph", data);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case LFUN_PARAGRAPH_UPDATE: {
|
2003-04-09 09:15:20 +00:00
|
|
|
Paragraph const * par = &*bv_->getLyXText()->cursor.par();
|
2003-03-13 13:56:25 +00:00
|
|
|
if (!par)
|
|
|
|
break;
|
|
|
|
|
|
|
|
string data;
|
|
|
|
params2string(*par, data);
|
|
|
|
|
|
|
|
// Will the paragraph accept changes from the dialog?
|
|
|
|
Inset * const inset = par->inInset();
|
|
|
|
bool const accept =
|
|
|
|
!(inset && inset->forceDefaultParagraphs(inset));
|
|
|
|
|
|
|
|
data = "update " + tostr(accept) + '\n' + data;
|
|
|
|
bv_->owner()->getDialogs().update("paragraph", data);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case LFUN_PARAGRAPH_APPLY:
|
|
|
|
setParagraphParams(*bv_, ev.argument);
|
|
|
|
break;
|
2003-03-17 16:25:00 +00:00
|
|
|
|
2001-07-29 10:42:11 +00:00
|
|
|
case LFUN_THESAURUS_ENTRY:
|
|
|
|
{
|
2002-08-07 08:11:41 +00:00
|
|
|
string arg = ev.argument;
|
2001-07-29 10:42:11 +00:00
|
|
|
|
|
|
|
if (arg.empty()) {
|
2001-09-12 10:41:25 +00:00
|
|
|
arg = bv_->getLyXText()->selectionAsString(buffer_,
|
|
|
|
false);
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2001-07-29 10:42:11 +00:00
|
|
|
// FIXME
|
|
|
|
if (arg.size() > 100 || arg.empty()) {
|
|
|
|
// Get word or selection
|
2003-03-17 16:25:00 +00:00
|
|
|
bv_->getLyXText()->selectWordWhenUnderCursor(LyXText::WHOLE_WORD);
|
2001-09-12 10:41:25 +00:00
|
|
|
arg = bv_->getLyXText()->selectionAsString(buffer_, false);
|
2001-07-29 10:42:11 +00:00
|
|
|
// FIXME: where is getLyXText()->unselect(bv_) ?
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-03-26 12:17:20 +00:00
|
|
|
bv_->owner()->getDialogs().show("thesaurus", arg);
|
2001-07-29 10:42:11 +00:00
|
|
|
}
|
|
|
|
break;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
case LFUN_TRACK_CHANGES:
|
|
|
|
trackChanges();
|
|
|
|
break;
|
2003-03-02 12:16:00 +00:00
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
case LFUN_MERGE_CHANGES:
|
2003-03-09 21:03:43 +00:00
|
|
|
owner_->getDialogs().show("changes");
|
2003-02-08 19:18:01 +00:00
|
|
|
break;
|
2003-03-02 12:16:00 +00:00
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
case LFUN_ACCEPT_ALL_CHANGES: {
|
2003-03-19 14:45:22 +00:00
|
|
|
update(BufferView::SELECT);
|
2003-03-17 16:25:00 +00:00
|
|
|
bv_->text->setCursor(&(*bv_->buffer()->paragraphs.begin()), 0);
|
2003-03-02 12:16:00 +00:00
|
|
|
#warning FIXME changes
|
2003-02-08 19:18:01 +00:00
|
|
|
//moveCursorUpdate(false);
|
|
|
|
|
|
|
|
while (lyxfind::findNextChange(bv_)) {
|
2003-03-17 16:25:00 +00:00
|
|
|
bv_->getLyXText()->acceptChange();
|
2003-02-08 19:18:01 +00:00
|
|
|
}
|
2003-03-19 14:45:22 +00:00
|
|
|
update(BufferView::SELECT);
|
2003-02-08 19:18:01 +00:00
|
|
|
break;
|
|
|
|
}
|
2003-03-02 12:16:00 +00:00
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
case LFUN_REJECT_ALL_CHANGES: {
|
2003-03-19 14:45:22 +00:00
|
|
|
update(BufferView::SELECT);
|
2003-03-17 16:25:00 +00:00
|
|
|
bv_->text->setCursor(&(*bv_->buffer()->paragraphs.begin()), 0);
|
2003-03-02 12:16:00 +00:00
|
|
|
#warning FIXME changes
|
2003-02-08 19:18:01 +00:00
|
|
|
//moveCursorUpdate(false);
|
|
|
|
|
|
|
|
while (lyxfind::findNextChange(bv_)) {
|
2003-03-17 16:25:00 +00:00
|
|
|
bv_->getLyXText()->rejectChange();
|
2003-02-08 19:18:01 +00:00
|
|
|
}
|
2003-03-19 14:45:22 +00:00
|
|
|
update(BufferView::SELECT);
|
2003-02-08 19:18:01 +00:00
|
|
|
break;
|
|
|
|
}
|
2003-03-02 12:16:00 +00:00
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
case LFUN_ACCEPT_CHANGE: {
|
2003-03-17 16:25:00 +00:00
|
|
|
bv_->getLyXText()->acceptChange();
|
2003-03-19 14:45:22 +00:00
|
|
|
update(BufferView::SELECT);
|
2003-02-08 19:18:01 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case LFUN_REJECT_CHANGE: {
|
2003-03-17 16:25:00 +00:00
|
|
|
bv_->getLyXText()->rejectChange();
|
2003-03-19 14:45:22 +00:00
|
|
|
update(BufferView::SELECT);
|
2003-02-08 19:18:01 +00:00
|
|
|
break;
|
|
|
|
}
|
2003-03-02 12:16:00 +00:00
|
|
|
|
2001-02-23 16:10:03 +00:00
|
|
|
case LFUN_UNKNOWN_ACTION:
|
2002-08-20 15:26:52 +00:00
|
|
|
ev.errorMessage(N_("Unknown function!"));
|
2001-02-23 16:10:03 +00:00
|
|
|
break;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2001-02-23 16:10:03 +00:00
|
|
|
default:
|
2002-08-28 08:30:27 +00:00
|
|
|
return bv_->getLyXText()->dispatch(FuncRequest(ev, bv_));
|
2001-02-23 16:10:03 +00:00
|
|
|
} // end of switch
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2001-05-18 07:37:14 +00:00
|
|
|
|
|
|
|
|
2001-06-04 23:57:32 +00:00
|
|
|
bool BufferView::Pimpl::insertInset(Inset * inset, string const & lout)
|
|
|
|
{
|
|
|
|
// if we are in a locking inset we should try to insert the
|
|
|
|
// inset there otherwise this is a illegal function now
|
|
|
|
if (bv_->theLockingInset()) {
|
2001-07-19 08:52:59 +00:00
|
|
|
if (bv_->theLockingInset()->insetAllowed(inset))
|
2002-08-29 13:05:55 +00:00
|
|
|
return bv_->theLockingInset()->insertInset(bv_, inset);
|
2001-06-04 23:57:32 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// not quite sure if we want this...
|
2001-07-06 15:57:54 +00:00
|
|
|
setCursorParUndo(bv_);
|
|
|
|
freezeUndo();
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2001-06-04 23:57:32 +00:00
|
|
|
beforeChange(bv_->text);
|
|
|
|
if (!lout.empty()) {
|
2003-03-19 14:45:22 +00:00
|
|
|
update(BufferView::SELECT);
|
2003-03-17 16:25:00 +00:00
|
|
|
bv_->text->breakParagraph(bv_->buffer()->paragraphs);
|
2003-03-19 14:45:22 +00:00
|
|
|
update(BufferView::SELECT);
|
2001-06-04 23:57:32 +00:00
|
|
|
|
2002-08-10 15:21:07 +00:00
|
|
|
if (!bv_->text->cursor.par()->empty()) {
|
2001-06-25 00:06:33 +00:00
|
|
|
bv_->text->cursorLeft(bv_);
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2003-03-17 16:25:00 +00:00
|
|
|
bv_->text->breakParagraph(bv_->buffer()->paragraphs);
|
2003-03-19 14:45:22 +00:00
|
|
|
update(BufferView::SELECT);
|
2001-06-04 23:57:32 +00:00
|
|
|
}
|
|
|
|
|
2002-03-02 16:39:54 +00:00
|
|
|
string lres = lout;
|
|
|
|
LyXTextClass const & tclass =
|
2002-07-21 21:21:06 +00:00
|
|
|
buffer_->params.getLyXTextClass();
|
2002-03-02 16:39:54 +00:00
|
|
|
bool hasLayout = tclass.hasLayout(lres);
|
|
|
|
string lay = tclass.defaultLayoutName();
|
|
|
|
|
|
|
|
if (hasLayout != false) {
|
2001-06-04 23:57:32 +00:00
|
|
|
// layout found
|
2002-03-02 16:39:54 +00:00
|
|
|
lay = lres;
|
2001-06-04 23:57:32 +00:00
|
|
|
} else {
|
2002-03-02 16:39:54 +00:00
|
|
|
// layout not fount using default
|
|
|
|
lay = tclass.defaultLayoutName();
|
2001-06-04 23:57:32 +00:00
|
|
|
}
|
2002-03-02 16:39:54 +00:00
|
|
|
|
2003-03-17 16:25:00 +00:00
|
|
|
bv_->text->setLayout(lay);
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2003-03-17 16:25:00 +00:00
|
|
|
bv_->text->setParagraph(0, 0,
|
2001-06-04 23:57:32 +00:00
|
|
|
0, 0,
|
|
|
|
VSpace(VSpace::NONE), VSpace(VSpace::NONE),
|
2001-08-16 10:14:48 +00:00
|
|
|
Spacing(),
|
2002-03-21 17:27:08 +00:00
|
|
|
LYX_ALIGN_LAYOUT,
|
2001-06-04 23:57:32 +00:00
|
|
|
string(),
|
|
|
|
0);
|
2003-03-19 14:45:22 +00:00
|
|
|
update(BufferView::SELECT);
|
2001-06-04 23:57:32 +00:00
|
|
|
}
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2003-03-17 16:25:00 +00:00
|
|
|
bv_->text->insertInset(inset);
|
2003-03-19 14:45:22 +00:00
|
|
|
update(BufferView::SELECT);
|
2001-06-04 23:57:32 +00:00
|
|
|
|
2001-07-06 15:57:54 +00:00
|
|
|
unFreezeUndo();
|
2001-06-04 23:57:32 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-03-19 14:45:22 +00:00
|
|
|
void BufferView::Pimpl::updateInset(Inset * inset)
|
2001-06-04 23:57:32 +00:00
|
|
|
{
|
2002-03-08 11:42:30 +00:00
|
|
|
if (!inset || !available())
|
2001-06-04 23:57:32 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
// first check for locking insets
|
|
|
|
if (bv_->theLockingInset()) {
|
|
|
|
if (bv_->theLockingInset() == inset) {
|
2003-03-17 16:25:00 +00:00
|
|
|
if (bv_->text->updateInset(inset)) {
|
2001-06-04 23:57:32 +00:00
|
|
|
update();
|
|
|
|
updateScrollbar();
|
|
|
|
return;
|
|
|
|
}
|
2001-06-28 10:25:20 +00:00
|
|
|
} else if (bv_->theLockingInset()->updateInsetInInset(bv_, inset)) {
|
2003-03-17 16:25:00 +00:00
|
|
|
if (bv_->text->updateInset(bv_->theLockingInset())) {
|
2001-06-04 23:57:32 +00:00
|
|
|
update();
|
|
|
|
updateScrollbar();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2002-03-08 11:42:30 +00:00
|
|
|
// then check if the inset is a top_level inset (has no owner)
|
|
|
|
// if yes do the update as always otherwise we have to update the
|
|
|
|
// toplevel inset where this inset is inside
|
|
|
|
Inset * tl_inset = inset;
|
2002-08-20 13:00:25 +00:00
|
|
|
while (tl_inset->owner())
|
2002-03-08 11:42:30 +00:00
|
|
|
tl_inset = tl_inset->owner();
|
|
|
|
if (tl_inset == inset) {
|
2003-03-19 14:45:22 +00:00
|
|
|
update(BufferView::UPDATE);
|
2003-03-17 16:25:00 +00:00
|
|
|
if (bv_->text->updateInset(inset)) {
|
2003-03-19 14:45:22 +00:00
|
|
|
update(BufferView::SELECT);
|
2001-06-04 23:57:32 +00:00
|
|
|
return;
|
|
|
|
}
|
2002-03-08 11:42:30 +00:00
|
|
|
} else if (static_cast<UpdatableInset *>(tl_inset)
|
|
|
|
->updateInsetInInset(bv_, inset))
|
|
|
|
{
|
2003-03-17 16:25:00 +00:00
|
|
|
if (bv_->text->updateInset(tl_inset)) {
|
2002-08-20 13:00:25 +00:00
|
|
|
update();
|
|
|
|
updateScrollbar();
|
|
|
|
}
|
2001-06-04 23:57:32 +00:00
|
|
|
}
|
|
|
|
}
|