2000-04-08 17:02:02 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
2001-02-28 11:56:36 +00:00
|
|
|
#include <ctime>
|
2000-04-09 22:48:51 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/wait.h>
|
2001-03-08 16:53:47 +00:00
|
|
|
#include <locale.h>
|
2000-04-08 17:02:02 +00:00
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "BufferView_pimpl.h"
|
|
|
|
#include "WorkArea.h"
|
|
|
|
#include "lyxscreen.h"
|
|
|
|
#include "lyxtext.h"
|
|
|
|
#include "lyxrow.h"
|
|
|
|
#include "LyXView.h"
|
|
|
|
#include "commandtags.h"
|
2001-06-27 14:10:35 +00:00
|
|
|
#include "lyxfunc.h"
|
2001-07-29 15:34:18 +00:00
|
|
|
#include "debug.h"
|
2000-04-08 17:02:02 +00:00
|
|
|
#include "font.h"
|
2000-04-12 14:20:08 +00:00
|
|
|
#include "bufferview_funcs.h"
|
2000-04-08 17:02:02 +00:00
|
|
|
#include "TextCache.h"
|
|
|
|
#include "bufferlist.h"
|
2000-04-09 22:48:51 +00:00
|
|
|
#include "lyx_gui_misc.h"
|
|
|
|
#include "lyxrc.h"
|
|
|
|
#include "intl.h"
|
2000-04-26 13:57:28 +00:00
|
|
|
#include "support/LAssert.h"
|
2001-07-29 15:34:18 +00:00
|
|
|
#include "support/lstrings.h"
|
2000-06-12 11:27:15 +00:00
|
|
|
#include "frontends/Dialogs.h"
|
2001-02-23 16:10:03 +00:00
|
|
|
#include "insets/insetbib.h"
|
|
|
|
#include "insets/insettext.h"
|
|
|
|
/// added for Dispatch functions
|
|
|
|
#include "lyx_cb.h"
|
2001-03-07 14:25:31 +00:00
|
|
|
#include "frontends/FileDialog.h"
|
2001-02-23 16:10:03 +00:00
|
|
|
#include "lyx_main.h"
|
|
|
|
#include "FloatList.h"
|
|
|
|
#include "support/filetools.h"
|
|
|
|
#include "support/lyxfunctional.h"
|
|
|
|
#include "insets/inseturl.h"
|
|
|
|
#include "insets/insetlatexaccent.h"
|
|
|
|
#include "insets/insettoc.h"
|
|
|
|
#include "insets/insetref.h"
|
|
|
|
#include "insets/insetparent.h"
|
|
|
|
#include "insets/insetindex.h"
|
2001-07-20 09:57:23 +00:00
|
|
|
#include "insets/insetnote.h"
|
2001-02-23 16:10:03 +00:00
|
|
|
#include "insets/insetinclude.h"
|
|
|
|
#include "insets/insetcite.h"
|
|
|
|
#include "insets/insetert.h"
|
|
|
|
#include "insets/insetexternal.h"
|
|
|
|
#include "insets/insetgraphics.h"
|
|
|
|
#include "insets/insetfoot.h"
|
|
|
|
#include "insets/insetmarginal.h"
|
|
|
|
#include "insets/insetminipage.h"
|
|
|
|
#include "insets/insetfloat.h"
|
|
|
|
#include "insets/insettabular.h"
|
2001-07-24 22:08:49 +00:00
|
|
|
#if 0
|
2001-02-23 16:10:03 +00:00
|
|
|
#include "insets/insettheorem.h"
|
2001-07-24 22:08:49 +00:00
|
|
|
#include "insets/insetlist.h"
|
|
|
|
#endif
|
2001-02-23 16:10:03 +00:00
|
|
|
#include "insets/insetcaption.h"
|
2001-05-04 10:36:36 +00:00
|
|
|
#include "insets/insetfloatlist.h"
|
2001-05-29 09:50:02 +00:00
|
|
|
#include "insets/insetspecialchar.h"
|
2001-04-17 15:15:59 +00:00
|
|
|
#include "gettext.h"
|
2001-06-25 00:06:33 +00:00
|
|
|
#include "ParagraphParameters.h"
|
2001-07-06 15:57:54 +00:00
|
|
|
#include "undo_funcs.h"
|
2001-07-06 12:09:32 +00:00
|
|
|
#include "mathed/formulabase.h"
|
2001-04-17 15:15:59 +00:00
|
|
|
|
2001-02-23 16:10:03 +00:00
|
|
|
extern LyXTextClass::size_type current_layout;
|
|
|
|
extern int greek_kb_flag;
|
2000-05-20 01:38:25 +00:00
|
|
|
|
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-03-16 12:08:14 +00:00
|
|
|
using SigC::slot;
|
2000-04-08 17:02:02 +00:00
|
|
|
|
2000-04-12 14:20:08 +00:00
|
|
|
/* the selection possible is needed, that only motion events are
|
|
|
|
* used, where the bottom press event was on the drawing area too */
|
|
|
|
bool selection_possible = false;
|
|
|
|
|
2000-04-08 17:02:02 +00:00
|
|
|
extern BufferList bufferlist;
|
|
|
|
extern char ascii_type;
|
|
|
|
|
2001-03-16 12:08:14 +00:00
|
|
|
extern bool math_insert_greek(BufferView *, char);
|
2001-07-13 11:50:39 +00:00
|
|
|
extern void sigchldchecker(pid_t pid, int * status);
|
2000-07-05 14:57:48 +00:00
|
|
|
extern int bibitemMaxWidth(BufferView *, LyXFont const &);
|
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 {
|
|
|
|
|
2001-06-04 23:57:32 +00:00
|
|
|
const unsigned int saved_positions_num = 20;
|
|
|
|
|
2001-03-17 02:06:21 +00:00
|
|
|
inline
|
2000-04-09 22:48:51 +00:00
|
|
|
void waitForX()
|
|
|
|
{
|
|
|
|
XSync(fl_get_display(), 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-04-14 19:20:33 +00:00
|
|
|
void SetXtermCursor(Window win)
|
|
|
|
{
|
|
|
|
static Cursor cursor;
|
|
|
|
static bool cursor_undefined = true;
|
|
|
|
if (cursor_undefined){
|
2000-10-11 21:06:43 +00:00
|
|
|
cursor = XCreateFontCursor(fl_get_display(), XC_xterm);
|
|
|
|
XFlush(fl_get_display());
|
2000-04-14 19:20:33 +00:00
|
|
|
cursor_undefined = false;
|
|
|
|
}
|
2000-10-11 21:06:43 +00:00
|
|
|
XDefineCursor(fl_get_display(), win, cursor);
|
|
|
|
XFlush(fl_get_display());
|
2000-04-14 19:20:33 +00:00
|
|
|
}
|
|
|
|
|
2001-03-17 02:06:21 +00:00
|
|
|
} // anon namespace
|
|
|
|
|
2000-04-14 19:20:33 +00:00
|
|
|
|
2000-04-08 17:02:02 +00:00
|
|
|
BufferView::Pimpl::Pimpl(BufferView * b, LyXView * o,
|
|
|
|
int xpos, int ypos, int width, int height)
|
2001-03-06 19:29:58 +00:00
|
|
|
: bv_(b), owner_(o), buffer_(0),
|
|
|
|
current_scrollbar_value(0), cursor_timeout(400),
|
2001-06-04 23:57:32 +00:00
|
|
|
workarea_(xpos, ypos, width, height), using_xterm_cursor(false),
|
|
|
|
inset_slept(false)
|
2000-04-08 17:02:02 +00:00
|
|
|
{
|
2000-08-14 15:31:16 +00:00
|
|
|
// Setup the signals
|
2001-03-06 19:29:58 +00:00
|
|
|
workarea_.scrollCB.connect(slot(this, &BufferView::Pimpl::scrollCB));
|
|
|
|
workarea_.workAreaExpose
|
2000-08-14 15:31:16 +00:00
|
|
|
.connect(slot(this, &BufferView::Pimpl::workAreaExpose));
|
2001-03-06 19:29:58 +00:00
|
|
|
workarea_.workAreaEnter
|
2000-08-14 15:31:16 +00:00
|
|
|
.connect(slot(this, &BufferView::Pimpl::enterView));
|
2001-03-06 19:29:58 +00:00
|
|
|
workarea_.workAreaLeave
|
2000-08-14 15:31:16 +00:00
|
|
|
.connect(slot(this, &BufferView::Pimpl::leaveView));
|
2001-03-06 19:29:58 +00:00
|
|
|
workarea_.workAreaButtonPress
|
2000-08-14 15:31:16 +00:00
|
|
|
.connect(slot(this, &BufferView::Pimpl::workAreaButtonPress));
|
2001-03-06 19:29:58 +00:00
|
|
|
workarea_.workAreaButtonRelease
|
2000-08-14 15:31:16 +00:00
|
|
|
.connect(slot(this,
|
|
|
|
&BufferView::Pimpl::workAreaButtonRelease));
|
2001-03-06 19:29:58 +00:00
|
|
|
workarea_.workAreaMotionNotify
|
2000-08-14 15:31:16 +00:00
|
|
|
.connect(slot(this, &BufferView::Pimpl::workAreaMotionNotify));
|
2001-03-06 19:29:58 +00:00
|
|
|
workarea_.workAreaDoubleClick
|
2000-08-14 15:31:16 +00:00
|
|
|
.connect(slot(this, &BufferView::Pimpl::doubleClick));
|
2001-03-06 19:29:58 +00:00
|
|
|
workarea_.workAreaTripleClick
|
2000-08-14 15:31:16 +00:00
|
|
|
.connect(slot(this, &BufferView::Pimpl::tripleClick));
|
2001-03-06 19:29:58 +00:00
|
|
|
workarea_.workAreaKeyPress
|
2000-08-14 15:31:16 +00:00
|
|
|
.connect(slot(this, &BufferView::Pimpl::workAreaKeyPress));
|
|
|
|
|
2000-06-21 12:41:18 +00:00
|
|
|
cursor_timeout.timeout.connect(slot(this,
|
|
|
|
&BufferView::Pimpl::cursorToggle));
|
2000-06-08 23:16:16 +00:00
|
|
|
cursor_timeout.start();
|
2001-03-06 19:29:58 +00:00
|
|
|
workarea_.setFocus();
|
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
|
|
|
|
|
|
|
Painter & BufferView::Pimpl::painter()
|
|
|
|
{
|
2001-03-06 19:29:58 +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 ("
|
|
|
|
<< b << ")" << endl;
|
|
|
|
if (buffer_) {
|
2001-06-04 23:57:32 +00:00
|
|
|
insetSleep();
|
2000-04-09 22:48:51 +00:00
|
|
|
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);
|
2001-03-06 19:29:58 +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");
|
|
|
|
|
|
|
|
bv_->text = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set current buffer
|
|
|
|
buffer_ = b;
|
|
|
|
|
|
|
|
if (bufferlist.getState() == BufferList::CLOSING) return;
|
|
|
|
|
|
|
|
// Nuke old image
|
|
|
|
// screen is always deleted when the buffer is changed.
|
2001-03-06 19:29:58 +00:00
|
|
|
screen_.reset(0);
|
2000-04-09 22:48:51 +00:00
|
|
|
|
|
|
|
// If we are closing the buffer, use the first buffer as current
|
|
|
|
if (!buffer_) {
|
|
|
|
buffer_ = bufferlist.first();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (buffer_) {
|
|
|
|
lyxerr[Debug::INFO] << "Buffer addr: " << buffer_ << endl;
|
|
|
|
buffer_->addUser(bv_);
|
|
|
|
// 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();
|
2000-06-12 11:27:15 +00:00
|
|
|
} else {
|
2000-04-09 22:48:51 +00:00
|
|
|
updateScreen();
|
|
|
|
updateScrollbar();
|
|
|
|
}
|
2001-07-04 07:19:09 +00:00
|
|
|
bv_->text->first = screen_->topCursorVisible(bv_->text);
|
2000-07-24 13:53:19 +00:00
|
|
|
owner_->updateMenubar();
|
2000-07-25 10:46:18 +00:00
|
|
|
owner_->updateToolbar();
|
2000-10-10 11:50:43 +00:00
|
|
|
// Similarly, buffer-dependent dialogs should be updated or
|
|
|
|
// hidden. This should go here because some dialogs (eg ToC)
|
|
|
|
// require bv_->text.
|
2000-10-13 05:57:05 +00:00
|
|
|
owner_->getDialogs()->updateBufferDependent(true);
|
2000-04-09 22:48:51 +00:00
|
|
|
redraw();
|
2001-06-04 23:57:32 +00:00
|
|
|
insetWakeup();
|
2000-04-09 22:48:51 +00:00
|
|
|
} else {
|
|
|
|
lyxerr[Debug::INFO] << " No Buffer!" << endl;
|
2000-07-24 13:53:19 +00:00
|
|
|
owner_->updateMenubar();
|
2000-07-25 10:46:18 +00:00
|
|
|
owner_->updateToolbar();
|
2000-10-10 11:50:43 +00:00
|
|
|
owner_->getDialogs()->hideBufferDependent();
|
2000-04-09 22:48:51 +00:00
|
|
|
updateScrollbar();
|
2001-03-06 19:29:58 +00:00
|
|
|
workarea_.redraw();
|
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();
|
|
|
|
}
|
|
|
|
// should update layoutchoice even if we don't have a buffer.
|
|
|
|
owner_->updateLayoutChoice();
|
2001-04-17 15:15:59 +00:00
|
|
|
|
2000-04-09 22:48:51 +00:00
|
|
|
owner_->updateWindowTitle();
|
|
|
|
}
|
|
|
|
|
2000-05-20 21:37:05 +00:00
|
|
|
|
2000-04-09 22:48:51 +00:00
|
|
|
void BufferView::Pimpl::resize(int xpos, int ypos, int width, int height)
|
|
|
|
{
|
2001-03-06 19:29:58 +00:00
|
|
|
workarea_.resize(xpos, ypos, width, height);
|
2001-02-14 08:38:21 +00:00
|
|
|
update(bv_->text, SELECT);
|
2000-04-09 22:48:51 +00:00
|
|
|
redraw();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::Pimpl::resize()
|
|
|
|
{
|
|
|
|
if (buffer_)
|
|
|
|
resizeCurrentBuffer();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::Pimpl::redraw()
|
|
|
|
{
|
|
|
|
lyxerr[Debug::INFO] << "BufferView::redraw()" << endl;
|
2001-03-06 19:29:58 +00:00
|
|
|
workarea_.redraw();
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-09-28 14:05:24 +00:00
|
|
|
bool BufferView::Pimpl::fitCursor(LyXText * text)
|
2000-04-09 22:48:51 +00:00
|
|
|
{
|
2001-04-24 15:25:26 +00:00
|
|
|
lyx::Assert(screen_.get());
|
2001-06-15 16:18:43 +00:00
|
|
|
|
2001-07-20 14:18:48 +00:00
|
|
|
bool ret;
|
|
|
|
|
|
|
|
if (bv_->theLockingInset()) {
|
|
|
|
bv_->theLockingInset()->fitInsetCursor(bv_);
|
|
|
|
ret = true;
|
|
|
|
} else {
|
|
|
|
ret = screen_->fitCursor(text, bv_);
|
|
|
|
}
|
2001-06-15 16:18:43 +00:00
|
|
|
|
2001-07-20 14:18:48 +00:00
|
|
|
bv_->owner()->getDialogs()->updateParagraph();
|
2000-09-28 14:05:24 +00:00
|
|
|
if (ret)
|
|
|
|
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) {
|
|
|
|
resize();
|
|
|
|
owner_->updateLayoutChoice();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int BufferView::Pimpl::resizeCurrentBuffer()
|
|
|
|
{
|
|
|
|
lyxerr[Debug::INFO] << "resizeCurrentBuffer" << endl;
|
|
|
|
|
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;
|
2001-02-19 16:01:31 +00:00
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
Paragraph::size_type pos = 0;
|
|
|
|
Paragraph::size_type selstartpos = 0;
|
|
|
|
Paragraph::size_type selendpos = 0;
|
2001-03-08 12:58:40 +00:00
|
|
|
bool selection = false;
|
|
|
|
bool mark_set = false;
|
2000-04-09 22:48:51 +00:00
|
|
|
|
2001-07-03 15:19:04 +00:00
|
|
|
owner_->prohibitInput();
|
2000-04-09 22:48:51 +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) {
|
2000-06-08 23:16:16 +00:00
|
|
|
par = bv_->text->cursor.par();
|
|
|
|
pos = bv_->text->cursor.pos();
|
2001-05-31 02:23:46 +00:00
|
|
|
selstartpar = bv_->text->selection.start.par();
|
|
|
|
selstartpos = bv_->text->selection.start.pos();
|
|
|
|
selendpar = bv_->text->selection.end.par();
|
|
|
|
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();
|
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.
|
2001-03-06 19:29:58 +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";
|
2001-03-06 19:29:58 +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");
|
|
|
|
} 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_);
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
updateScreen();
|
|
|
|
|
|
|
|
if (par) {
|
2001-05-31 02:23:46 +00:00
|
|
|
bv_->text->selection.set(true);
|
2000-04-09 22:48:51 +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) {
|
2001-06-25 00:06:33 +00:00
|
|
|
bv_->text->setCursor(bv_, selstartpar, selstartpos);
|
2001-05-31 02:23:46 +00:00
|
|
|
bv_->text->selection.cursor = bv_->text->cursor;
|
2001-06-25 00:06:33 +00:00
|
|
|
bv_->text->setCursor(bv_, selendpar, selendpos);
|
|
|
|
bv_->text->setSelection(bv_);
|
|
|
|
bv_->text->setCursor(bv_, par, pos);
|
2000-04-09 22:48:51 +00:00
|
|
|
} else {
|
2001-06-25 00:06:33 +00:00
|
|
|
bv_->text->setCursor(bv_, 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
|
|
|
}
|
2001-07-04 07:19:09 +00:00
|
|
|
bv_->text->first = screen_->topCursorVisible(bv_->text);
|
2000-07-14 14:57:20 +00:00
|
|
|
buffer_->resizeInsets(bv_);
|
|
|
|
// this will scroll the screen such that the cursor becomes visible
|
2000-04-09 22:48:51 +00:00
|
|
|
updateScrollbar();
|
|
|
|
redraw();
|
2001-04-17 15:15:59 +00:00
|
|
|
|
2001-06-04 23:57:32 +00:00
|
|
|
setState();
|
2001-07-03 15:19:04 +00:00
|
|
|
owner_->allowInput();
|
2000-04-09 22:48:51 +00:00
|
|
|
|
2001-06-15 14:43:54 +00:00
|
|
|
/// clear the "Formatting Document" message
|
|
|
|
owner_->message("");
|
|
|
|
|
2001-03-12 12:44:56 +00:00
|
|
|
/// get rid of the splash screen if it's not gone already
|
|
|
|
owner_->getDialogs()->destroySplash();
|
2001-02-12 14:09:09 +00:00
|
|
|
|
2000-04-09 22:48:51 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-04-08 17:02:02 +00:00
|
|
|
void BufferView::Pimpl::updateScreen()
|
|
|
|
{
|
|
|
|
// Regenerate the screen.
|
2001-03-06 19:29:58 +00:00
|
|
|
screen_.reset(new LyXScreen(workarea_));
|
2000-04-08 17:02:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-04-09 22:48:51 +00:00
|
|
|
void BufferView::Pimpl::updateScrollbar()
|
|
|
|
{
|
|
|
|
/* If the text is smaller than the working area, the scrollbar
|
|
|
|
* maximum must be the working area height. No scrolling will
|
|
|
|
* be possible */
|
2001-06-04 23:57:32 +00:00
|
|
|
if (!bv_->text) {
|
2001-03-06 19:29:58 +00:00
|
|
|
workarea_.setScrollbar(0, 1.0);
|
2000-04-09 22:48:51 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2001-07-04 07:19:09 +00:00
|
|
|
long const text_height = bv_->text->height;
|
2000-04-09 22:48:51 +00:00
|
|
|
|
2001-07-03 22:44:37 +00:00
|
|
|
double const lineh = bv_->text->defaultHeight();
|
2001-07-20 09:33:28 +00:00
|
|
|
double const slider_size =
|
|
|
|
(text_height == 0) ? 1.0 : 1.0 / double(text_height);
|
2001-06-04 23:57:32 +00:00
|
|
|
|
2001-07-20 09:33:28 +00:00
|
|
|
static long old_text_height = 0;
|
|
|
|
static double old_lineh = 0;
|
|
|
|
static double old_slider_size = 0;
|
2001-06-29 06:30:53 +00:00
|
|
|
|
2001-07-03 22:44:37 +00:00
|
|
|
if (text_height != old_text_height) {
|
|
|
|
workarea_.setScrollbarBounds(0, text_height - workarea_.height());
|
|
|
|
old_text_height = text_height;
|
|
|
|
}
|
|
|
|
if (lineh != old_lineh) {
|
|
|
|
workarea_.setScrollbarIncrements(lineh);
|
|
|
|
old_lineh = lineh;
|
|
|
|
}
|
|
|
|
if (current_scrollbar_value != bv_->text->first
|
|
|
|
|| slider_size != old_slider_size) {
|
|
|
|
current_scrollbar_value = bv_->text->first;
|
|
|
|
workarea_.setScrollbar(current_scrollbar_value, slider_size);
|
|
|
|
old_slider_size = slider_size;
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Callback for scrollbar slider
|
|
|
|
void BufferView::Pimpl::scrollCB(double value)
|
|
|
|
{
|
2001-02-07 16:44:49 +00:00
|
|
|
if (!buffer_) return;
|
2000-04-09 22:48:51 +00:00
|
|
|
|
|
|
|
current_scrollbar_value = long(value);
|
|
|
|
if (current_scrollbar_value < 0)
|
|
|
|
current_scrollbar_value = 0;
|
|
|
|
|
2001-03-06 19:29:58 +00:00
|
|
|
if (!screen_.get())
|
2000-04-09 22:48:51 +00:00
|
|
|
return;
|
|
|
|
|
2001-07-04 07:19:09 +00:00
|
|
|
screen_->draw(bv_->text, bv_, current_scrollbar_value);
|
2000-04-09 22:48:51 +00:00
|
|
|
|
2001-02-07 16:44:49 +00:00
|
|
|
if (!lyxrc.cursor_follows_scrollbar) {
|
|
|
|
waitForX();
|
|
|
|
return;
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
2001-02-07 16:44:49 +00:00
|
|
|
|
|
|
|
LyXText * vbt = bv_->text;
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
int const height = vbt->defaultHeight();
|
2001-02-07 16:44:49 +00:00
|
|
|
int const first = static_cast<int>((bv_->text->first + height));
|
2001-03-06 19:29:58 +00:00
|
|
|
int const last = static_cast<int>((bv_->text->first + workarea_.height() - height));
|
2001-02-07 16:44:49 +00:00
|
|
|
|
|
|
|
if (vbt->cursor.y() < first)
|
2001-06-25 00:06:33 +00:00
|
|
|
vbt->setCursorFromCoordinates(bv_, 0, first);
|
2001-02-07 16:44:49 +00:00
|
|
|
else if (vbt->cursor.y() > last)
|
2001-06-25 00:06:33 +00:00
|
|
|
vbt->setCursorFromCoordinates(bv_, 0, last);
|
2001-02-07 16:44:49 +00:00
|
|
|
|
2000-04-09 22:48:51 +00:00
|
|
|
waitForX();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-04-08 17:02:02 +00:00
|
|
|
int BufferView::Pimpl::scrollUp(long time)
|
|
|
|
{
|
2001-02-07 16:44:49 +00:00
|
|
|
if (!buffer_) return 0;
|
2001-03-06 19:29:58 +00:00
|
|
|
if (!screen_.get()) return 0;
|
2000-04-08 17:02:02 +00:00
|
|
|
|
2001-03-06 19:29:58 +00:00
|
|
|
double value = workarea_.getScrollbarValue();
|
2000-04-08 17:02:02 +00:00
|
|
|
|
|
|
|
if (value == 0) return 0;
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
float add_value = (bv_->text->defaultHeight()
|
2000-04-08 17:02:02 +00:00
|
|
|
+ float(time) * float(time) * 0.125);
|
|
|
|
|
2001-03-06 19:29:58 +00:00
|
|
|
if (add_value > workarea_.height())
|
|
|
|
add_value = float(workarea_.height() -
|
2001-06-25 00:06:33 +00:00
|
|
|
bv_->text->defaultHeight());
|
2000-04-08 17:02:02 +00:00
|
|
|
|
|
|
|
value -= add_value;
|
|
|
|
|
|
|
|
if (value < 0)
|
|
|
|
value = 0;
|
|
|
|
|
2001-03-06 19:29:58 +00:00
|
|
|
workarea_.setScrollbarValue(value);
|
2000-04-08 17:02:02 +00:00
|
|
|
|
2000-12-29 12:48:02 +00:00
|
|
|
scrollCB(value);
|
2000-04-08 17:02:02 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int BufferView::Pimpl::scrollDown(long time)
|
|
|
|
{
|
2001-02-07 16:44:49 +00:00
|
|
|
if (!buffer_) return 0;
|
2001-03-06 19:29:58 +00:00
|
|
|
if (!screen_.get()) return 0;
|
2000-04-08 17:02:02 +00:00
|
|
|
|
2001-03-06 19:29:58 +00:00
|
|
|
double value = workarea_.getScrollbarValue();
|
|
|
|
pair<float, float> p = workarea_.getScrollbarBounds();
|
2001-06-04 23:57:32 +00:00
|
|
|
double const max = p.second;
|
2000-04-08 17:02:02 +00:00
|
|
|
|
|
|
|
if (value == max) return 0;
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
float add_value = (bv_->text->defaultHeight()
|
2000-04-08 17:02:02 +00:00
|
|
|
+ float(time) * float(time) * 0.125);
|
|
|
|
|
2001-03-06 19:29:58 +00:00
|
|
|
if (add_value > workarea_.height())
|
|
|
|
add_value = float(workarea_.height() -
|
2001-06-25 00:06:33 +00:00
|
|
|
bv_->text->defaultHeight());
|
2000-04-08 17:02:02 +00:00
|
|
|
|
|
|
|
value += add_value;
|
|
|
|
|
|
|
|
if (value > max)
|
|
|
|
value = max;
|
|
|
|
|
2001-03-06 19:29:58 +00:00
|
|
|
workarea_.setScrollbarValue(value);
|
2000-04-08 17:02:02 +00:00
|
|
|
|
2000-12-29 12:48:02 +00:00
|
|
|
scrollCB(value);
|
2000-04-08 17:02:02 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-08-14 15:31:16 +00:00
|
|
|
void BufferView::Pimpl::workAreaKeyPress(KeySym keysym, unsigned int state)
|
|
|
|
{
|
|
|
|
bv_->owner()->getLyXFunc()->processKeySym(keysym, state);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-04-08 17:02:02 +00:00
|
|
|
void BufferView::Pimpl::workAreaMotionNotify(int x, int y, unsigned int state)
|
|
|
|
{
|
2000-04-19 14:42:19 +00:00
|
|
|
// Only use motion with button 1
|
2000-05-20 21:37:05 +00:00
|
|
|
if (!(state & Button1MotionMask))
|
|
|
|
return;
|
|
|
|
|
2001-03-06 19:29:58 +00:00
|
|
|
if (!buffer_ || !screen_.get()) return;
|
2000-04-19 14:42:19 +00:00
|
|
|
|
2000-04-08 17:02:02 +00:00
|
|
|
// Check for inset locking
|
2000-10-03 13:55:48 +00:00
|
|
|
if (bv_->theLockingInset()) {
|
2000-04-08 17:02:02 +00:00
|
|
|
LyXCursor cursor = bv_->text->cursor;
|
2001-06-25 00:06:33 +00:00
|
|
|
LyXFont font = bv_->text->getFont(buffer_,
|
2000-12-05 14:15:44 +00:00
|
|
|
cursor.par(), cursor.pos());
|
|
|
|
int width = bv_->theLockingInset()->width(bv_, font);
|
|
|
|
int inset_x = font.isVisibleRightToLeft()
|
|
|
|
? cursor.x() - width : cursor.x();
|
|
|
|
int start_x = inset_x + bv_->theLockingInset()->scroll();
|
2000-10-03 13:55:48 +00:00
|
|
|
bv_->theLockingInset()->
|
2001-06-28 10:25:20 +00:00
|
|
|
insetMotionNotify(bv_,
|
2000-12-05 14:15:44 +00:00
|
|
|
x - start_x,
|
2000-06-22 14:55:46 +00:00
|
|
|
y - cursor.y() + bv_->text->first,
|
2000-04-08 17:02:02 +00:00
|
|
|
state);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2001-06-04 23:57:32 +00:00
|
|
|
/* The test for not selection possible is needed, that only motion
|
|
|
|
events are used, where the bottom press event was on
|
|
|
|
the drawing area too */
|
2001-02-07 16:44:49 +00:00
|
|
|
if (!selection_possible)
|
|
|
|
return;
|
|
|
|
|
2001-07-04 07:19:09 +00:00
|
|
|
screen_->hideCursor();
|
2000-04-08 17:02:02 +00:00
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
bv_->text->setCursorFromCoordinates(bv_, x, y + bv_->text->first);
|
2000-04-08 17:02:02 +00:00
|
|
|
|
2001-05-31 02:23:46 +00:00
|
|
|
if (!bv_->text->selection.set())
|
2001-02-14 08:38:21 +00:00
|
|
|
update(bv_->text, BufferView::UPDATE); // Maybe an empty line was deleted
|
2000-04-08 17:02:02 +00:00
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
bv_->text->setSelection(bv_);
|
2001-07-04 07:19:09 +00:00
|
|
|
screen_->toggleToggle(bv_->text, bv_);
|
2001-02-07 16:44:49 +00:00
|
|
|
fitCursor(bv_->text);
|
2001-07-04 07:19:09 +00:00
|
|
|
screen_->showCursor(bv_->text, bv_);
|
2000-04-08 17:02:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Single-click on work area
|
2000-04-09 22:48:51 +00:00
|
|
|
void BufferView::Pimpl::workAreaButtonPress(int xpos, int ypos,
|
|
|
|
unsigned int button)
|
2000-04-08 17:02:02 +00:00
|
|
|
{
|
2001-03-06 19:29:58 +00:00
|
|
|
if (!buffer_ || !screen_.get()) return;
|
2000-04-08 17:02:02 +00:00
|
|
|
|
2000-07-04 11:30:07 +00:00
|
|
|
Inset * inset_hit = checkInsetHit(bv_->text, xpos, ypos, button);
|
2000-04-08 17:02:02 +00:00
|
|
|
|
|
|
|
// ok ok, this is a hack.
|
|
|
|
if (button == 4 || button == 5) {
|
|
|
|
switch (button) {
|
|
|
|
case 4:
|
2000-07-04 20:32:37 +00:00
|
|
|
scrollUp(lyxrc.wheel_jump); // default 100, set in lyxrc
|
2000-04-08 17:02:02 +00:00
|
|
|
break;
|
|
|
|
case 5:
|
2000-07-04 20:32:37 +00:00
|
|
|
scrollDown(lyxrc.wheel_jump);
|
2000-04-08 17:02:02 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-10-03 13:55:48 +00:00
|
|
|
if (bv_->theLockingInset()) {
|
2000-04-08 17:02:02 +00:00
|
|
|
// We are in inset locking mode
|
|
|
|
|
|
|
|
/* Check whether the inset was hit. If not reset mode,
|
|
|
|
otherwise give the event to the inset */
|
2000-10-03 13:55:48 +00:00
|
|
|
if (inset_hit == bv_->theLockingInset()) {
|
|
|
|
bv_->theLockingInset()->
|
2001-06-28 10:25:20 +00:00
|
|
|
insetButtonPress(bv_,
|
2000-04-08 17:02:02 +00:00
|
|
|
xpos, ypos,
|
|
|
|
button);
|
|
|
|
return;
|
|
|
|
} else {
|
2000-10-03 13:55:48 +00:00
|
|
|
bv_->unlockInset(bv_->theLockingInset());
|
2000-04-08 17:02:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!inset_hit)
|
|
|
|
selection_possible = true;
|
2001-07-04 07:19:09 +00:00
|
|
|
screen_->hideCursor();
|
2000-06-08 23:16:16 +00:00
|
|
|
|
2000-09-23 04:57:18 +00:00
|
|
|
int const screen_first = bv_->text->first;
|
2000-04-08 17:02:02 +00:00
|
|
|
|
|
|
|
// Middle button press pastes if we have a selection
|
|
|
|
bool paste_internally = false;
|
|
|
|
if (button == 2
|
2001-05-31 02:23:46 +00:00
|
|
|
&& bv_->text->selection.set()) {
|
2001-07-16 15:42:57 +00:00
|
|
|
owner_->getLyXFunc()->dispatch(LFUN_COPY);
|
2000-04-08 17:02:02 +00:00
|
|
|
paste_internally = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Clear the selection
|
2001-07-04 07:19:09 +00:00
|
|
|
screen_->toggleSelection(bv_->text, bv_);
|
2001-06-25 00:06:33 +00:00
|
|
|
bv_->text->clearSelection(bv_);
|
|
|
|
bv_->text->fullRebreak(bv_);
|
2001-07-04 07:19:09 +00:00
|
|
|
screen_->update(bv_->text, bv_);
|
2000-04-09 22:48:51 +00:00
|
|
|
updateScrollbar();
|
2000-04-08 17:02:02 +00:00
|
|
|
|
|
|
|
// Single left click in math inset?
|
|
|
|
if ((inset_hit != 0) &&
|
2001-06-28 10:25:20 +00:00
|
|
|
(inset_hit->editable()==Inset::HIGHLY_EDITABLE)) {
|
2000-04-08 17:02:02 +00:00
|
|
|
// Highly editable inset, like math
|
|
|
|
UpdatableInset * inset = static_cast<UpdatableInset *>(inset_hit);
|
|
|
|
selection_possible = false;
|
|
|
|
owner_->updateLayoutChoice();
|
2001-06-28 10:25:20 +00:00
|
|
|
owner_->message(inset->editMessage());
|
|
|
|
inset->insetButtonPress(bv_, xpos, ypos, button);
|
|
|
|
inset->edit(bv_, xpos, ypos, button);
|
2000-04-08 17:02:02 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Right click on a footnote flag opens float menu
|
|
|
|
if (button == 3) {
|
|
|
|
selection_possible = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!inset_hit) // otherwise it was already set in checkInsetHit(...)
|
2001-06-25 00:06:33 +00:00
|
|
|
bv_->text->setCursorFromCoordinates(bv_, xpos, ypos + screen_first);
|
2001-07-06 15:57:54 +00:00
|
|
|
finishUndo();
|
2001-05-31 02:23:46 +00:00
|
|
|
bv_->text->selection.cursor = bv_->text->cursor;
|
2000-06-08 23:16:16 +00:00
|
|
|
bv_->text->cursor.x_fix(bv_->text->cursor.x());
|
2000-04-08 17:02:02 +00:00
|
|
|
|
|
|
|
owner_->updateLayoutChoice();
|
2000-09-28 14:05:24 +00:00
|
|
|
if (fitCursor(bv_->text)) {
|
2000-04-08 17:02:02 +00:00
|
|
|
selection_possible = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Insert primary selection with middle mouse
|
|
|
|
// if there is a local selection in the current buffer,
|
|
|
|
// insert this
|
|
|
|
if (button == 2) {
|
|
|
|
if (paste_internally)
|
2001-07-16 15:42:57 +00:00
|
|
|
owner_->getLyXFunc()->dispatch(LFUN_PASTE);
|
2000-04-08 17:02:02 +00:00
|
|
|
else
|
2001-07-16 15:42:57 +00:00
|
|
|
owner_->getLyXFunc()->dispatch(LFUN_PASTESELECTION,
|
2000-04-08 17:02:02 +00:00
|
|
|
"paragraph");
|
|
|
|
selection_possible = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::Pimpl::doubleClick(int /*x*/, int /*y*/, unsigned int button)
|
|
|
|
{
|
|
|
|
// select a word
|
2001-02-14 08:38:21 +00:00
|
|
|
if (!buffer_)
|
|
|
|
return;
|
|
|
|
|
|
|
|
LyXText * text = bv_->getLyXText();
|
|
|
|
|
|
|
|
if (text->bv_owner && bv_->theLockingInset())
|
|
|
|
return;
|
|
|
|
|
2001-03-06 19:29:58 +00:00
|
|
|
if (screen_.get() && button == 1) {
|
2001-02-22 14:09:20 +00:00
|
|
|
if (text->bv_owner) {
|
2001-07-04 07:19:09 +00:00
|
|
|
screen_->hideCursor();
|
|
|
|
screen_->toggleSelection(text, bv_);
|
2001-07-27 16:07:33 +00:00
|
|
|
text->selectWord(bv_, LyXText::WHOLE_WORD_STRICT);
|
2001-07-04 07:19:09 +00:00
|
|
|
screen_->toggleSelection(text, bv_, false);
|
2001-02-22 14:09:20 +00:00
|
|
|
} else {
|
2001-07-27 16:07:33 +00:00
|
|
|
text->selectWord(bv_, LyXText::WHOLE_WORD_STRICT);
|
2001-02-22 14:09:20 +00:00
|
|
|
}
|
2001-02-14 08:38:21 +00:00
|
|
|
/* This will fit the cursor on the screen
|
|
|
|
* if necessary */
|
|
|
|
update(text, BufferView::SELECT|BufferView::FITCUR);
|
|
|
|
}
|
2000-04-08 17:02:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::Pimpl::tripleClick(int /*x*/, int /*y*/, unsigned int button)
|
|
|
|
{
|
|
|
|
// select a line
|
2001-02-14 08:38:21 +00:00
|
|
|
if (buffer_)
|
|
|
|
return;
|
|
|
|
|
|
|
|
LyXText * text = bv_->getLyXText();
|
|
|
|
|
|
|
|
if (text->bv_owner && bv_->theLockingInset())
|
|
|
|
return;
|
|
|
|
|
2001-03-06 19:29:58 +00:00
|
|
|
if (screen_.get() && (button == 1)) {
|
2001-07-04 07:19:09 +00:00
|
|
|
screen_->hideCursor();
|
|
|
|
screen_->toggleSelection(text, bv_);
|
2001-06-25 00:06:33 +00:00
|
|
|
text->cursorHome(bv_);
|
2001-05-31 02:23:46 +00:00
|
|
|
text->selection.cursor = text->cursor;
|
2001-06-25 00:06:33 +00:00
|
|
|
text->cursorEnd(bv_);
|
|
|
|
text->setSelection(bv_);
|
2001-07-04 07:19:09 +00:00
|
|
|
screen_->toggleSelection(text, bv_, false);
|
2000-04-08 17:02:02 +00:00
|
|
|
/* This will fit the cursor on the screen
|
|
|
|
* if necessary */
|
2001-02-14 08:38:21 +00:00
|
|
|
update(text, BufferView::SELECT|BufferView::FITCUR);
|
2000-04-08 17:02:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-04-14 19:20:33 +00:00
|
|
|
void BufferView::Pimpl::enterView()
|
|
|
|
{
|
|
|
|
if (active() && available()) {
|
2001-03-06 19:29:58 +00:00
|
|
|
SetXtermCursor(workarea_.getWin());
|
2000-04-14 19:20:33 +00:00
|
|
|
using_xterm_cursor = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::Pimpl::leaveView()
|
|
|
|
{
|
|
|
|
if (using_xterm_cursor) {
|
2001-03-06 19:29:58 +00:00
|
|
|
XUndefineCursor(fl_get_display(), workarea_.getWin());
|
2000-04-14 19:20:33 +00:00
|
|
|
using_xterm_cursor = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-04-26 13:57:28 +00:00
|
|
|
void BufferView::Pimpl::workAreaButtonRelease(int x, int y,
|
|
|
|
unsigned int button)
|
2000-04-08 17:02:02 +00:00
|
|
|
{
|
2001-03-06 19:29:58 +00:00
|
|
|
if (!buffer_ || !screen_.get()) return;
|
2000-04-08 17:02:02 +00:00
|
|
|
|
|
|
|
// If we hit an inset, we have the inset coordinates in these
|
|
|
|
// and inset_hit points to the inset. If we do not hit an
|
|
|
|
// inset, inset_hit is 0, and inset_x == x, inset_y == y.
|
2000-07-04 11:30:07 +00:00
|
|
|
Inset * inset_hit = checkInsetHit(bv_->text, x, y, button);
|
2000-04-08 17:02:02 +00:00
|
|
|
|
2000-10-03 13:55:48 +00:00
|
|
|
if (bv_->theLockingInset()) {
|
2000-04-08 17:02:02 +00:00
|
|
|
// We are in inset locking mode.
|
|
|
|
|
|
|
|
/* LyX does a kind of work-area grabbing for insets.
|
|
|
|
Only a ButtonPress Event outside the inset will
|
2001-06-28 10:25:20 +00:00
|
|
|
force a insetUnlock. */
|
2000-10-03 13:55:48 +00:00
|
|
|
bv_->theLockingInset()->
|
2001-06-28 10:25:20 +00:00
|
|
|
insetButtonRelease(bv_, x, y, button);
|
2000-04-08 17:02:02 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
selection_possible = false;
|
|
|
|
|
2001-03-16 15:15:32 +00:00
|
|
|
if (button == 2)
|
|
|
|
return;
|
2000-04-08 17:02:02 +00:00
|
|
|
|
2001-06-04 23:57:32 +00:00
|
|
|
setState();
|
2000-07-20 11:39:14 +00:00
|
|
|
owner_->showState();
|
2000-04-08 17:02:02 +00:00
|
|
|
|
|
|
|
// Did we hit an editable inset?
|
2001-02-07 16:44:49 +00:00
|
|
|
if (inset_hit) {
|
2000-04-08 17:02:02 +00:00
|
|
|
// Inset like error, notes and figures
|
|
|
|
selection_possible = false;
|
2000-04-26 13:57:28 +00:00
|
|
|
|
|
|
|
// CHECK fix this proper in 0.13
|
|
|
|
|
2000-04-08 17:02:02 +00:00
|
|
|
// Following a ref shouldn't issue
|
|
|
|
// a push on the undo-stack
|
|
|
|
// anylonger, now that we have
|
|
|
|
// keybindings for following
|
|
|
|
// references and returning from
|
|
|
|
// references. IMHO though, it
|
|
|
|
// should be the inset's own business
|
|
|
|
// to push or not push on the undo
|
|
|
|
// stack. They don't *have* to
|
|
|
|
// alter the document...
|
|
|
|
// (Joacim)
|
|
|
|
// ...or maybe the SetCursorParUndo()
|
|
|
|
// below isn't necessary at all anylonger?
|
2001-06-28 10:25:20 +00:00
|
|
|
if (inset_hit->lyxCode() == Inset::REF_CODE) {
|
2001-07-06 15:57:54 +00:00
|
|
|
setCursorParUndo(bv_);
|
2000-04-08 17:02:02 +00:00
|
|
|
}
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
owner_->message(inset_hit->editMessage());
|
2001-04-17 15:15:59 +00:00
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
if (inset_hit->editable()==Inset::HIGHLY_EDITABLE) {
|
2000-04-08 17:02:02 +00:00
|
|
|
// Highly editable inset, like math
|
|
|
|
UpdatableInset *inset = (UpdatableInset *)inset_hit;
|
2001-06-28 10:25:20 +00:00
|
|
|
inset->insetButtonRelease(bv_, x, y, button);
|
2000-04-08 17:02:02 +00:00
|
|
|
} else {
|
2001-06-28 10:25:20 +00:00
|
|
|
inset_hit->insetButtonRelease(bv_, x, y, button);
|
|
|
|
inset_hit->edit(bv_, x, y, button);
|
2000-04-08 17:02:02 +00:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2001-03-11 00:21:13 +00:00
|
|
|
// check whether we want to open a float
|
|
|
|
if (bv_->text) {
|
|
|
|
bool hit = false;
|
|
|
|
char c = ' ';
|
|
|
|
if (bv_->text->cursor.pos() <
|
|
|
|
bv_->text->cursor.par()->size()) {
|
|
|
|
c = bv_->text->cursor.par()->
|
2001-06-25 00:06:33 +00:00
|
|
|
getChar(bv_->text->cursor.pos());
|
2001-03-11 00:21:13 +00:00
|
|
|
}
|
|
|
|
if (bv_->text->cursor.pos() - 1 >= 0) {
|
|
|
|
c = bv_->text->cursor.par()->
|
2001-06-25 00:06:33 +00:00
|
|
|
getChar(bv_->text->cursor.pos() - 1);
|
2001-03-11 00:21:13 +00:00
|
|
|
}
|
|
|
|
if (hit == true) {
|
|
|
|
selection_possible = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2001-05-03 14:31:33 +00:00
|
|
|
|
2000-04-08 17:02:02 +00:00
|
|
|
// Maybe we want to edit a bibitem ale970302
|
2000-06-08 23:16:16 +00:00
|
|
|
if (bv_->text->cursor.par()->bibkey && x < 20 +
|
2000-07-05 14:57:48 +00:00
|
|
|
bibitemMaxWidth(bv_, textclasslist.
|
|
|
|
TextClass(buffer_->
|
|
|
|
params.textclass).defaultfont())) {
|
2001-06-28 10:25:20 +00:00
|
|
|
bv_->text->cursor.par()->bibkey->edit(bv_, 0, 0, 0);
|
2000-04-08 17:02:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Returns an inset if inset was hit. 0 otherwise.
|
|
|
|
* If hit, the coordinates are changed relative to the inset.
|
|
|
|
* Otherwise coordinates are not changed, and false is returned.
|
|
|
|
*/
|
2000-07-04 11:30:07 +00:00
|
|
|
Inset * BufferView::Pimpl::checkInsetHit(LyXText * text, int & x, int & y,
|
2000-04-24 20:58:23 +00:00
|
|
|
unsigned int /* button */)
|
2000-04-08 17:02:02 +00:00
|
|
|
{
|
2001-03-06 19:29:58 +00:00
|
|
|
if (!screen_.get())
|
2000-04-08 17:02:02 +00:00
|
|
|
return 0;
|
|
|
|
|
2000-10-03 13:55:48 +00:00
|
|
|
int y_tmp = y + text->first;
|
2000-04-08 17:02:02 +00:00
|
|
|
|
|
|
|
LyXCursor cursor;
|
2001-06-25 00:06:33 +00:00
|
|
|
text->setCursorFromCoordinates(bv_, cursor, x, y_tmp);
|
|
|
|
text->setCursor(bv_, cursor, cursor.par(),cursor.pos(),true);
|
2001-03-28 09:28:48 +00:00
|
|
|
|
2000-08-07 15:21:05 +00:00
|
|
|
|
2001-03-11 00:21:13 +00:00
|
|
|
if (cursor.pos() < cursor.par()->size()
|
2001-06-25 00:06:33 +00:00
|
|
|
&& cursor.par()->getChar(cursor.pos()) == Paragraph::META_INSET
|
|
|
|
&& cursor.par()->getInset(cursor.pos())
|
2001-06-28 10:25:20 +00:00
|
|
|
&& cursor.par()->getInset(cursor.pos())->editable()) {
|
2000-04-08 17:02:02 +00:00
|
|
|
|
|
|
|
// Check whether the inset really was hit
|
2001-06-25 00:06:33 +00:00
|
|
|
Inset * tmpinset = cursor.par()->getInset(cursor.pos());
|
|
|
|
LyXFont font = text->getFont(buffer_,
|
2000-06-12 11:27:15 +00:00
|
|
|
cursor.par(), cursor.pos());
|
2001-04-04 21:23:36 +00:00
|
|
|
int const width = tmpinset->width(bv_, font);
|
|
|
|
int const inset_x = font.isVisibleRightToLeft()
|
2000-12-05 14:15:44 +00:00
|
|
|
? cursor.x() - width : cursor.x();
|
2001-04-04 21:23:36 +00:00
|
|
|
int const start_x = inset_x + tmpinset->scroll();
|
|
|
|
int const end_x = inset_x + width;
|
2000-04-08 17:02:02 +00:00
|
|
|
|
|
|
|
if (x > start_x && x < end_x
|
2000-07-05 14:57:48 +00:00
|
|
|
&& y_tmp > cursor.y() - tmpinset->ascent(bv_, font)
|
2001-04-04 21:23:36 +00:00
|
|
|
&& y_tmp < cursor.y() + tmpinset->descent(bv_, font)) {
|
2001-06-25 00:06:33 +00:00
|
|
|
text->setCursor(bv_, cursor.par(),cursor.pos(), true);
|
2000-04-08 17:02:02 +00:00
|
|
|
x = x - start_x;
|
|
|
|
// The origin of an inset is on the baseline
|
2000-07-04 11:30:07 +00:00
|
|
|
y = y_tmp - (text->cursor.y());
|
2000-04-08 17:02:02 +00:00
|
|
|
return tmpinset;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-06-08 23:16:16 +00:00
|
|
|
if ((cursor.pos() - 1 >= 0) &&
|
2001-06-25 00:06:33 +00:00
|
|
|
(cursor.par()->getChar(cursor.pos()-1) == Paragraph::META_INSET) &&
|
|
|
|
(cursor.par()->getInset(cursor.pos() - 1)) &&
|
2001-06-28 10:25:20 +00:00
|
|
|
(cursor.par()->getInset(cursor.pos() - 1)->editable())) {
|
2001-06-25 00:06:33 +00:00
|
|
|
Inset * tmpinset = cursor.par()->getInset(cursor.pos()-1);
|
|
|
|
LyXFont font = text->getFont(buffer_, cursor.par(),
|
2000-06-12 11:27:15 +00:00
|
|
|
cursor.pos()-1);
|
2001-04-04 21:23:36 +00:00
|
|
|
int const width = tmpinset->width(bv_, font);
|
|
|
|
int const inset_x = font.isVisibleRightToLeft()
|
2000-12-05 14:15:44 +00:00
|
|
|
? cursor.x() : cursor.x() - width;
|
2001-04-04 21:23:36 +00:00
|
|
|
int const start_x = inset_x + tmpinset->scroll();
|
|
|
|
int const end_x = inset_x + width;
|
2000-12-05 14:15:44 +00:00
|
|
|
|
2000-04-08 17:02:02 +00:00
|
|
|
if (x > start_x && x < end_x
|
2000-07-05 14:57:48 +00:00
|
|
|
&& y_tmp > cursor.y() - tmpinset->ascent(bv_, font)
|
|
|
|
&& y_tmp < cursor.y() + tmpinset->descent(bv_, font)) {
|
2000-04-20 13:48:34 +00:00
|
|
|
#if 0
|
2000-10-03 13:55:48 +00:00
|
|
|
if (move_cursor && (tmpinset != bv_->theLockingInset()))
|
2000-04-20 13:48:34 +00:00
|
|
|
#endif
|
2001-06-25 00:06:33 +00:00
|
|
|
text->setCursor(bv_, cursor.par(),
|
2001-05-08 13:28:44 +00:00
|
|
|
cursor.pos() - 1, true);
|
2000-04-08 17:02:02 +00:00
|
|
|
x = x - start_x;
|
|
|
|
// The origin of an inset is on the baseline
|
2000-07-04 11:30:07 +00:00
|
|
|
y = y_tmp - (text->cursor.y());
|
2000-04-08 17:02:02 +00:00
|
|
|
return tmpinset;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::Pimpl::workAreaExpose()
|
|
|
|
{
|
2001-06-04 23:57:32 +00:00
|
|
|
static int work_area_width;
|
|
|
|
static unsigned int work_area_height;
|
2000-04-08 17:02:02 +00:00
|
|
|
|
2001-04-04 21:23:36 +00:00
|
|
|
bool const widthChange = workarea_.workWidth() != work_area_width;
|
|
|
|
bool const heightChange = workarea_.height() != work_area_height;
|
2000-04-08 17:02:02 +00:00
|
|
|
|
|
|
|
// update from work area
|
2001-03-06 19:29:58 +00:00
|
|
|
work_area_width = workarea_.workWidth();
|
|
|
|
work_area_height = workarea_.height();
|
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
|
|
|
|
owner_->resize();
|
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();
|
|
|
|
} else if (heightChange) {
|
|
|
|
// Rebuild image of current screen
|
|
|
|
updateScreen();
|
|
|
|
// fitCursor() ensures we don't jump back
|
|
|
|
// to the start of the document on vertical
|
|
|
|
// resize
|
2000-09-28 14:05:24 +00:00
|
|
|
fitCursor(bv_->text);
|
2000-04-08 17:02:02 +00:00
|
|
|
|
|
|
|
// The main window size has changed, repaint most stuff
|
2000-04-09 22:48:51 +00:00
|
|
|
redraw();
|
2001-03-06 19:29:58 +00:00
|
|
|
} else if (screen_.get())
|
2001-07-04 07:19:09 +00:00
|
|
|
screen_->redraw(bv_->text, bv_);
|
2000-04-08 17:02:02 +00:00
|
|
|
} else {
|
|
|
|
// Grey box when we don't have a buffer
|
2001-03-06 19:29:58 +00:00
|
|
|
workarea_.greyOut();
|
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()
|
|
|
|
{
|
2001-06-14 10:44:21 +00:00
|
|
|
if (screen_.get() &&
|
2001-06-14 14:10:25 +00:00
|
|
|
(!bv_->theLockingInset() || !bv_->theLockingInset()->nodraw()))
|
2001-06-14 10:44:21 +00:00
|
|
|
{
|
2001-07-04 07:19:09 +00:00
|
|
|
screen_->update(bv_->text, bv_);
|
2001-06-14 10:44:21 +00:00
|
|
|
}
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
|
|
|
|
2000-04-26 13:57:28 +00:00
|
|
|
// Values used when calling update:
|
|
|
|
// -3 - update
|
|
|
|
// -2 - update, move sel_cursor if selection, fitcursor
|
|
|
|
// -1 - update, move sel_cursor if selection, fitcursor, mark dirty
|
|
|
|
// 0 - update, move sel_cursor if selection, fitcursor
|
|
|
|
// 1 - update, move sel_cursor if selection, fitcursor, mark dirty
|
|
|
|
// 3 - update, move sel_cursor if selection
|
|
|
|
//
|
|
|
|
// update -
|
|
|
|
// a simple redraw of the parts that need refresh
|
|
|
|
//
|
|
|
|
// move sel_cursor if selection -
|
|
|
|
// the text's sel_cursor is moved if there is selection is progress
|
|
|
|
//
|
|
|
|
// fitcursor -
|
|
|
|
// fitCursor() is called and the scrollbar updated
|
|
|
|
//
|
|
|
|
// mark dirty -
|
|
|
|
// the buffer is marked dirty.
|
|
|
|
//
|
|
|
|
// enum {
|
|
|
|
// UPDATE = 0,
|
|
|
|
// SELECT = 1,
|
|
|
|
// FITCUR = 2,
|
|
|
|
// CHANGE = 4
|
|
|
|
// };
|
|
|
|
//
|
|
|
|
// UPDATE_ONLY = UPDATE;
|
|
|
|
// UPDATE_SELECT = UPDATE | SELECT;
|
|
|
|
// UPDATE_SELECT_MOVE = UPDATE | SELECT | FITCUR;
|
|
|
|
// UPDATE_SELECT_MOVE_AFTER_CHANGE = UPDATE | SELECT | FITCUR | CHANGE;
|
|
|
|
//
|
|
|
|
// update(-3) -> update(0) -> update(0) -> update(UPDATE)
|
|
|
|
// update(-2) -> update(1 + 2) -> update(3) -> update(SELECT|FITCUR)
|
|
|
|
// update(-1) -> update(1 + 2 + 4) -> update(7) -> update(SELECT|FITCUR|CHANGE)
|
|
|
|
// update(1) -> update(1 + 2 + 4) -> update(7) -> update(SELECT|FITCUR|CHANGE)
|
|
|
|
// update(3) -> update(1) -> update(1) -> update(SELECT)
|
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
|
|
|
{
|
|
|
|
owner_->updateLayoutChoice();
|
|
|
|
|
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
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
text->fullRebreak(bv_);
|
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);
|
2001-06-04 23:57:32 +00:00
|
|
|
updateInset(text->inset_owner, true);
|
2001-07-20 14:18:48 +00:00
|
|
|
} else {
|
2001-02-14 08:38:21 +00:00
|
|
|
update();
|
2001-07-20 14:18:48 +00:00
|
|
|
}
|
|
|
|
|
2000-04-26 13:57:28 +00:00
|
|
|
if ((f & FITCUR)) {
|
2001-02-14 08:38:21 +00:00
|
|
|
fitCursor(text);
|
2001-07-20 14:18:48 +00:00
|
|
|
}
|
2000-04-26 13:57:28 +00:00
|
|
|
|
|
|
|
if ((f & CHANGE)) {
|
2001-04-17 15:15:59 +00:00
|
|
|
buffer_->markDirty();
|
2000-04-26 13:57:28 +00:00
|
|
|
}
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Callback for cursor timer
|
|
|
|
void BufferView::Pimpl::cursorToggle()
|
|
|
|
{
|
|
|
|
// Quite a nice place for asyncron Inset updating, isn't it?
|
|
|
|
// Actually no! This is run even if no buffer exist... so (Lgb)
|
|
|
|
if (!buffer_) {
|
2001-02-07 16:44:49 +00:00
|
|
|
cursor_timeout.restart();
|
|
|
|
return;
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
2001-02-07 16:44:49 +00:00
|
|
|
|
|
|
|
int status = 1;
|
2001-06-04 23:57:32 +00:00
|
|
|
int const pid = waitpid(static_cast<pid_t>(0), &status, WNOHANG);
|
2001-02-07 16:44:49 +00:00
|
|
|
if (pid == -1) // error find out what is wrong
|
|
|
|
; // ignore it for now.
|
|
|
|
else if (pid > 0)
|
2001-07-13 11:50:39 +00:00
|
|
|
sigchldchecker(pid, &status);
|
2000-04-09 22:48:51 +00:00
|
|
|
|
|
|
|
updatelist.update(bv_);
|
|
|
|
|
2001-03-06 19:29:58 +00:00
|
|
|
if (!screen_.get()) {
|
2001-02-07 16:44:49 +00:00
|
|
|
cursor_timeout.restart();
|
|
|
|
return;
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
|
|
|
|
2000-10-03 13:55:48 +00:00
|
|
|
if (!bv_->theLockingInset()) {
|
2001-07-04 07:19:09 +00:00
|
|
|
screen_->cursorToggle(bv_->text, bv_);
|
2000-04-09 22:48:51 +00:00
|
|
|
} else {
|
2001-06-28 10:25:20 +00:00
|
|
|
bv_->theLockingInset()->toggleInsetCursor(bv_);
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
2000-06-28 16:03:01 +00:00
|
|
|
|
2000-06-08 23:16:16 +00:00
|
|
|
cursor_timeout.restart();
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-10-10 10:38:11 +00:00
|
|
|
void BufferView::Pimpl::cursorPrevious(LyXText * text)
|
2000-04-09 22:48:51 +00:00
|
|
|
{
|
2000-10-10 10:38:11 +00:00
|
|
|
if (!text->cursor.row()->previous())
|
|
|
|
return;
|
2000-04-09 22:48:51 +00:00
|
|
|
|
2000-10-10 10:38:11 +00:00
|
|
|
int y = text->first;
|
|
|
|
if (text->inset_owner)
|
|
|
|
y += bv_->text->first;
|
|
|
|
Row * cursorrow = text->cursor.row();
|
2001-06-25 00:06:33 +00:00
|
|
|
text->setCursorFromCoordinates(bv_, bv_->text->cursor.x_fix(), y);
|
2001-07-06 15:57:54 +00:00
|
|
|
finishUndo();
|
2000-04-09 22:48:51 +00:00
|
|
|
// This is to allow jumping over large insets
|
2000-10-10 10:38:11 +00:00
|
|
|
if ((cursorrow == text->cursor.row()))
|
2001-06-25 00:06:33 +00:00
|
|
|
text->cursorUp(bv_);
|
2000-04-09 22:48:51 +00:00
|
|
|
|
2000-10-10 10:38:11 +00:00
|
|
|
if (text->inset_owner ||
|
2001-03-06 19:29:58 +00:00
|
|
|
text->cursor.row()->height() < workarea_.height())
|
2001-07-04 07:19:09 +00:00
|
|
|
screen_->draw(bv_->text, bv_,
|
2000-10-10 10:38:11 +00:00
|
|
|
text->cursor.y()
|
|
|
|
- text->cursor.row()->baseline()
|
|
|
|
+ text->cursor.row()->height()
|
2001-03-06 19:29:58 +00:00
|
|
|
- workarea_.height() + 1 );
|
2000-04-26 13:57:28 +00:00
|
|
|
updateScrollbar();
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-10-10 10:38:11 +00:00
|
|
|
void BufferView::Pimpl::cursorNext(LyXText * text)
|
2000-04-09 22:48:51 +00:00
|
|
|
{
|
2000-10-10 10:38:11 +00:00
|
|
|
if (!text->cursor.row()->next())
|
|
|
|
return;
|
2000-04-09 22:48:51 +00:00
|
|
|
|
2001-03-06 19:29:58 +00:00
|
|
|
int y = text->first + workarea_.height();
|
2000-10-10 10:38:11 +00:00
|
|
|
// if (text->inset_owner)
|
|
|
|
// y += bv_->text->first;
|
2001-06-25 00:06:33 +00:00
|
|
|
text->getRowNearY(y);
|
2000-10-30 08:14:36 +00:00
|
|
|
|
2000-10-10 10:38:11 +00:00
|
|
|
Row * cursorrow = text->cursor.row();
|
2001-06-25 00:06:33 +00:00
|
|
|
text->setCursorFromCoordinates(bv_, text->cursor.x_fix(), y); // + workarea_->height());
|
2001-07-06 15:57:54 +00:00
|
|
|
finishUndo();
|
2000-04-09 22:48:51 +00:00
|
|
|
// This is to allow jumping over large insets
|
2000-06-08 23:16:16 +00:00
|
|
|
if ((cursorrow == bv_->text->cursor.row()))
|
2001-06-25 00:06:33 +00:00
|
|
|
text->cursorDown(bv_);
|
2000-04-09 22:48:51 +00:00
|
|
|
|
2000-10-10 10:38:11 +00:00
|
|
|
if (text->inset_owner ||
|
2001-03-06 19:29:58 +00:00
|
|
|
text->cursor.row()->height() < workarea_.height())
|
2001-07-04 07:19:09 +00:00
|
|
|
screen_->draw(bv_->text, bv_, text->cursor.y() -
|
2000-10-10 10:38:11 +00:00
|
|
|
text->cursor.row()->baseline());
|
2000-04-26 13:57:28 +00:00
|
|
|
updateScrollbar();
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool BufferView::Pimpl::available() const
|
|
|
|
{
|
|
|
|
if (buffer_ && bv_->text) return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-02-14 10:11:22 +00:00
|
|
|
void BufferView::Pimpl::beforeChange(LyXText * text)
|
2000-04-09 22:48:51 +00:00
|
|
|
{
|
|
|
|
toggleSelection();
|
2001-06-25 00:06:33 +00:00
|
|
|
text->clearSelection(bv_);
|
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;
|
|
|
|
str << _("Saved bookmark") << ' ' << i;
|
|
|
|
owner_->message(str.str().c_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) ?
|
|
|
|
bufferlist.getBuffer(fname) :
|
|
|
|
bufferlist.loadLyXFile(fname); // don't ask, just load it
|
2000-11-04 10:00:12 +00:00
|
|
|
if (b != 0 ) buffer(b);
|
2000-08-08 13:55:26 +00:00
|
|
|
}
|
|
|
|
|
2001-07-09 09:16:00 +00:00
|
|
|
Paragraph * par = buffer_->getParFromID(saved_positions[i].par_id);
|
2001-01-28 18:31:36 +00:00
|
|
|
if (!par)
|
|
|
|
return;
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
bv_->text->setCursor(bv_, 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
|
|
|
|
2001-02-14 08:38:21 +00:00
|
|
|
update(bv_->text, BufferView::SELECT|BufferView::FITCUR);
|
2001-04-17 15:15:59 +00:00
|
|
|
if (i > 0) {
|
2001-06-14 17:58:49 +00:00
|
|
|
ostringstream str;
|
|
|
|
str << _("Moved to bookmark") << ' ' << i;
|
|
|
|
owner_->message(str.str().c_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
|
|
|
|
|
|
|
void BufferView::Pimpl::setState()
|
|
|
|
{
|
|
|
|
if (!lyxrc.rtl_support)
|
|
|
|
return;
|
|
|
|
|
2000-12-17 06:09:35 +00:00
|
|
|
LyXText * text = bv_->getLyXText();
|
2001-06-27 14:10:35 +00:00
|
|
|
if (text->real_current_font.isRightToLeft()
|
|
|
|
#ifndef NO_LATEX
|
|
|
|
&&
|
|
|
|
text->real_current_font.latex() != LyXFont::ON
|
|
|
|
#endif
|
|
|
|
) {
|
2001-03-16 12:08:14 +00:00
|
|
|
if (owner_->getIntl()->keymap == Intl::PRIMARY)
|
2000-04-09 22:48:51 +00:00
|
|
|
owner_->getIntl()->KeyMapSec();
|
|
|
|
} else {
|
2001-03-16 12:08:14 +00:00
|
|
|
if (owner_->getIntl()->keymap == Intl::SECONDARY)
|
2000-04-09 22:48:51 +00:00
|
|
|
owner_->getIntl()->KeyMapPrim();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::Pimpl::insetSleep()
|
|
|
|
{
|
2001-06-04 23:57:32 +00:00
|
|
|
if (bv_->theLockingInset() && !inset_slept) {
|
2001-06-28 10:25:20 +00:00
|
|
|
bv_->theLockingInset()->getCursorPos(bv_, bv_->slx, bv_->sly);
|
|
|
|
bv_->theLockingInset()->insetUnlock(bv_);
|
2001-06-04 23:57:32 +00:00
|
|
|
inset_slept = true;
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::Pimpl::insetWakeup()
|
|
|
|
{
|
2001-06-04 23:57:32 +00:00
|
|
|
if (bv_->theLockingInset() && inset_slept) {
|
2001-06-28 10:25:20 +00:00
|
|
|
bv_->theLockingInset()->edit(bv_, bv_->slx, bv_->sly, 0);
|
2001-06-04 23:57:32 +00:00
|
|
|
inset_slept = false;
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::Pimpl::insetUnlock()
|
|
|
|
{
|
2000-10-03 13:55:48 +00:00
|
|
|
if (bv_->theLockingInset()) {
|
2001-06-04 23:57:32 +00:00
|
|
|
if (!inset_slept)
|
2001-06-28 10:25:20 +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();
|
2001-06-04 23:57:32 +00:00
|
|
|
inset_slept = false;
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool BufferView::Pimpl::focus() const
|
|
|
|
{
|
2001-03-06 19:29:58 +00:00
|
|
|
return workarea_.hasFocus();
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::Pimpl::focus(bool f)
|
|
|
|
{
|
2001-03-06 19:29:58 +00:00
|
|
|
if (f) workarea_.setFocus();
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool BufferView::Pimpl::active() const
|
|
|
|
{
|
2001-03-06 19:29:58 +00:00
|
|
|
return workarea_.active();
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool BufferView::Pimpl::belowMouse() const
|
|
|
|
{
|
2001-03-06 19:29:58 +00:00
|
|
|
return workarea_.belowMouse();
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::Pimpl::showCursor()
|
|
|
|
{
|
2001-07-20 14:18:48 +00:00
|
|
|
if (screen_.get()) {
|
|
|
|
if (bv_->theLockingInset())
|
|
|
|
bv_->theLockingInset()->showInsetCursor(bv_);
|
|
|
|
else
|
|
|
|
screen_->showCursor(bv_->text, bv_);
|
|
|
|
}
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::Pimpl::hideCursor()
|
|
|
|
{
|
2001-07-20 14:18:48 +00:00
|
|
|
if (screen_.get()) {
|
|
|
|
if (!bv_->theLockingInset())
|
|
|
|
// bv_->theLockingInset()->hideInsetCursor(bv_);
|
|
|
|
// else
|
|
|
|
screen_->hideCursor();
|
|
|
|
}
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::Pimpl::toggleSelection(bool b)
|
|
|
|
{
|
2001-07-17 15:39:12 +00:00
|
|
|
if (screen_.get()) {
|
|
|
|
if (bv_->theLockingInset())
|
|
|
|
bv_->theLockingInset()->toggleSelection(bv_, b);
|
2001-07-04 07:19:09 +00:00
|
|
|
screen_->toggleSelection(bv_->text, bv_, b);
|
2001-07-17 15:39:12 +00:00
|
|
|
}
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::Pimpl::toggleToggle()
|
|
|
|
{
|
2001-03-06 19:29:58 +00:00
|
|
|
if (screen_.get())
|
2001-07-04 07:19:09 +00:00
|
|
|
screen_->toggleToggle(bv_->text, bv_);
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::Pimpl::center()
|
|
|
|
{
|
2001-02-14 10:11:22 +00:00
|
|
|
beforeChange(bv_->text);
|
2001-03-06 19:29:58 +00:00
|
|
|
if (bv_->text->cursor.y() > static_cast<int>((workarea_.height() / 2))) {
|
2001-07-04 07:19:09 +00:00
|
|
|
screen_->draw(bv_->text, bv_, bv_->text->cursor.y() - workarea_.height() / 2);
|
2000-04-09 22:48:51 +00:00
|
|
|
} else {
|
2001-07-04 07:19:09 +00:00
|
|
|
screen_->draw(bv_->text, bv_, 0);
|
2000-04-09 22:48:51 +00:00
|
|
|
}
|
2001-02-14 08:38:21 +00:00
|
|
|
update(bv_->text, BufferView::SELECT|BufferView::FITCUR);
|
2000-04-09 22:48:51 +00:00
|
|
|
redraw();
|
|
|
|
}
|
2000-05-20 01:38:25 +00:00
|
|
|
|
|
|
|
|
2000-05-20 21:37:05 +00:00
|
|
|
void BufferView::Pimpl::pasteClipboard(bool asPara)
|
2000-05-20 01:38:25 +00:00
|
|
|
{
|
2001-02-07 16:44:49 +00:00
|
|
|
if (!buffer_) return;
|
2000-05-20 01:38:25 +00:00
|
|
|
|
2001-07-04 07:19:09 +00:00
|
|
|
screen_->hideCursor();
|
2001-02-14 10:11:22 +00:00
|
|
|
beforeChange(bv_->text);
|
2000-05-20 01:38:25 +00:00
|
|
|
|
2001-03-06 19:29:58 +00:00
|
|
|
string const clip(workarea_.getClipboard());
|
2000-05-20 01:38:25 +00:00
|
|
|
|
|
|
|
if (clip.empty()) return;
|
|
|
|
|
|
|
|
if (asPara) {
|
2001-06-25 00:06:33 +00:00
|
|
|
bv_->text->insertStringAsParagraphs(bv_, clip);
|
2000-05-20 01:38:25 +00:00
|
|
|
} else {
|
2001-06-25 00:06:33 +00:00
|
|
|
bv_->text->insertStringAsLines(bv_, clip);
|
2000-05-20 01:38:25 +00:00
|
|
|
}
|
2001-02-14 08:38:21 +00:00
|
|
|
update(bv_->text, BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
|
2000-05-20 01:38:25 +00:00
|
|
|
}
|
2000-05-20 21:37:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
void BufferView::Pimpl::stuffClipboard(string const & stuff) const
|
|
|
|
{
|
2001-03-06 19:29:58 +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
|
|
|
|
|
|
|
inline
|
|
|
|
void BufferView::Pimpl::moveCursorUpdate(bool selecting)
|
|
|
|
{
|
2001-05-29 09:50:02 +00:00
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
2001-05-31 02:23:46 +00:00
|
|
|
if (selecting || lt->selection.mark()) {
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->setSelection(bv_);
|
2001-05-29 09:50:02 +00:00
|
|
|
if (lt->bv_owner)
|
2001-06-04 23:57:32 +00:00
|
|
|
toggleToggle();
|
2001-02-23 16:10:03 +00:00
|
|
|
}
|
2001-05-29 09:50:02 +00:00
|
|
|
update(lt, BufferView::SELECT|BufferView::FITCUR);
|
2001-02-23 16:10:03 +00:00
|
|
|
showCursor();
|
|
|
|
|
|
|
|
/* ---> Everytime the cursor is moved, show the current font state. */
|
|
|
|
// should this too me moved out of this func?
|
|
|
|
//owner->showState();
|
2001-06-04 23:57:32 +00:00
|
|
|
setState();
|
2001-02-23 16:10:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Inset * BufferView::Pimpl::getInsetByCode(Inset::Code code)
|
|
|
|
{
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::Pimpl::MenuInsertLyXFile(string const & filen)
|
|
|
|
{
|
|
|
|
string filename = filen;
|
|
|
|
|
|
|
|
if (filename.empty()) {
|
|
|
|
// Launch a file browser
|
|
|
|
string initpath = lyxrc.document_path;
|
|
|
|
|
|
|
|
if (available()) {
|
|
|
|
string const trypath = owner_->buffer()->filepath;
|
|
|
|
// 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;
|
|
|
|
}
|
|
|
|
|
2001-05-29 09:50:02 +00:00
|
|
|
FileDialog fileDlg(bv_->owner(),
|
|
|
|
_("Select LyX document to insert"),
|
2001-03-07 14:25:31 +00:00
|
|
|
LFUN_FILE_INSERT,
|
2001-05-29 09:50:02 +00:00
|
|
|
make_pair(string(_("Documents")),
|
|
|
|
string(lyxrc.document_path)),
|
|
|
|
make_pair(string(_("Examples")),
|
|
|
|
string(AddPath(system_lyxdir, "examples"))));
|
|
|
|
|
|
|
|
FileDialog::Result result =
|
|
|
|
fileDlg.Select(initpath,
|
|
|
|
_("*.lyx| LyX Documents (*.lyx)"));
|
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));
|
|
|
|
|
|
|
|
ostringstream s1;
|
|
|
|
s1 << _("Inserting document") << ' '
|
|
|
|
<< disp_fn << " ...";
|
|
|
|
owner_->message(s1.str().c_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;
|
|
|
|
str << _("Document") << ' ' << disp_fn
|
|
|
|
<< ' ' << _("inserted.");
|
|
|
|
owner_->message(str.str().c_str());
|
2001-02-23 16:10:03 +00:00
|
|
|
} else {
|
2001-06-14 17:58:49 +00:00
|
|
|
ostringstream str;
|
|
|
|
str << _("Could not insert document") << ' '
|
|
|
|
<< disp_fn;
|
|
|
|
owner_->message(str.str().c_str());
|
2001-02-23 16:10:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool BufferView::Pimpl::Dispatch(kb_action action, string const & argument)
|
|
|
|
{
|
2001-06-28 10:25:20 +00:00
|
|
|
lyxerr[Debug::ACTION] << "BufferView::Pimpl::Dispatch: action["
|
|
|
|
<< action <<"] arg[" << argument << "]" << endl;
|
|
|
|
|
2001-02-23 16:10:03 +00:00
|
|
|
switch (action) {
|
|
|
|
// --- Misc -------------------------------------------
|
|
|
|
case LFUN_APPENDIX:
|
2001-05-29 09:50:02 +00:00
|
|
|
{
|
2001-02-23 16:10:03 +00:00
|
|
|
if (available()) {
|
2001-05-29 09:50:02 +00:00
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
lt->toggleAppendix(bv_);
|
|
|
|
update(lt,
|
|
|
|
BufferView::SELECT
|
|
|
|
| BufferView::FITCUR
|
|
|
|
| BufferView::CHANGE);
|
2001-02-23 16:10:03 +00:00
|
|
|
}
|
2001-05-29 09:50:02 +00:00
|
|
|
}
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
case LFUN_TOC_INSERT:
|
|
|
|
{
|
|
|
|
InsetCommandParams p;
|
2001-05-04 10:36:36 +00:00
|
|
|
p.setCmdName("tableofcontents");
|
2001-04-27 07:58:56 +00:00
|
|
|
Inset * inset = new InsetTOC(p);
|
2001-06-04 23:57:32 +00:00
|
|
|
if (!insertInset(inset, "Standard"))
|
2001-02-23 16:10:03 +00:00
|
|
|
delete inset;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case LFUN_TABULAR_FEATURE:
|
|
|
|
case LFUN_SCROLL_INSET:
|
|
|
|
// this is not handled here as this funktion is only aktive
|
|
|
|
// if we have a locking_inset and that one is (or contains)
|
|
|
|
// a tabular-inset
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_INSET_GRAPHICS:
|
|
|
|
{
|
|
|
|
Inset * new_inset = new InsetGraphics;
|
2001-06-04 23:57:32 +00:00
|
|
|
if (!insertInset(new_inset)) {
|
2001-02-23 16:10:03 +00:00
|
|
|
delete new_inset;
|
|
|
|
} else {
|
|
|
|
// this is need because you don't use a inset->Edit()
|
2001-06-04 23:57:32 +00:00
|
|
|
updateInset(new_inset, true);
|
2001-07-20 14:18:48 +00:00
|
|
|
new_inset->edit(bv_);
|
2001-02-23 16:10:03 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case LFUN_PASTE:
|
|
|
|
bv_->paste();
|
|
|
|
setState();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_PASTESELECTION:
|
|
|
|
{
|
|
|
|
bool asPara = false;
|
|
|
|
if (argument == "paragraph") asPara = true;
|
|
|
|
pasteClipboard(asPara);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_CUT:
|
|
|
|
bv_->cut();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_COPY:
|
|
|
|
bv_->copy();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_LAYOUT_COPY:
|
|
|
|
bv_->copyEnvironment();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_LAYOUT_PASTE:
|
|
|
|
bv_->pasteEnvironment();
|
|
|
|
setState();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_GOTOERROR:
|
2001-06-04 23:57:32 +00:00
|
|
|
gotoInset(Inset::ERROR_CODE, false);
|
2001-02-23 16:10:03 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_GOTONOTE:
|
2001-06-04 23:57:32 +00:00
|
|
|
gotoInset(Inset::IGNORE_CODE, false);
|
2001-02-23 16:10:03 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_REFERENCE_GOTO:
|
|
|
|
{
|
|
|
|
vector<Inset::Code> tmp;
|
|
|
|
tmp.push_back(Inset::LABEL_CODE);
|
|
|
|
tmp.push_back(Inset::REF_CODE);
|
2001-06-04 23:57:32 +00:00
|
|
|
gotoInset(tmp, true);
|
2001-02-23 16:10:03 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case LFUN_HYPHENATION:
|
2001-07-20 09:38:19 +00:00
|
|
|
specialChar(InsetSpecialChar::HYPHENATION);
|
|
|
|
break;
|
|
|
|
|
2001-07-20 13:04:36 +00:00
|
|
|
case LFUN_LIGATURE_BREAK:
|
|
|
|
specialChar(InsetSpecialChar::LIGATURE_BREAK);
|
2001-02-23 16:10:03 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_LDOTS:
|
2001-07-20 09:38:19 +00:00
|
|
|
specialChar(InsetSpecialChar::LDOTS);
|
2001-02-23 16:10:03 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_END_OF_SENTENCE:
|
2001-07-20 09:38:19 +00:00
|
|
|
specialChar(InsetSpecialChar::END_OF_SENTENCE);
|
2001-02-23 16:10:03 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_MENU_SEPARATOR:
|
2001-07-20 09:38:19 +00:00
|
|
|
specialChar(InsetSpecialChar::MENU_SEPARATOR);
|
2001-02-23 16:10:03 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_HFILL:
|
2001-05-29 09:50:02 +00:00
|
|
|
hfill();
|
2001-02-23 16:10:03 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_DEPTH:
|
2001-05-29 09:50:02 +00:00
|
|
|
changeDepth(bv_, bv_->getLyXText(), 0);
|
2001-02-23 16:10:03 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_DEPTH_MIN:
|
2001-05-29 09:50:02 +00:00
|
|
|
changeDepth(bv_, bv_->getLyXText(), -1);
|
2001-02-23 16:10:03 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_DEPTH_PLUS:
|
2001-05-29 09:50:02 +00:00
|
|
|
changeDepth(bv_, bv_->getLyXText(), 1);
|
2001-02-23 16:10:03 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_FREE:
|
2001-02-26 15:17:19 +00:00
|
|
|
owner_->getDialogs()->setUserFreeFont();
|
2001-02-23 16:10:03 +00:00
|
|
|
break;
|
2001-06-27 14:10:35 +00:00
|
|
|
|
|
|
|
#ifndef NO_LATEX
|
2001-02-23 16:10:03 +00:00
|
|
|
case LFUN_TEX:
|
|
|
|
Tex(bv_);
|
|
|
|
setState();
|
|
|
|
owner_->showState();
|
|
|
|
break;
|
2001-06-27 14:10:35 +00:00
|
|
|
#endif
|
|
|
|
|
2001-02-23 16:10:03 +00:00
|
|
|
case LFUN_FILE_INSERT:
|
|
|
|
{
|
|
|
|
MenuInsertLyXFile(argument);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2001-03-07 14:25:31 +00:00
|
|
|
case LFUN_FILE_INSERT_ASCII_PARA:
|
|
|
|
InsertAsciiFile(bv_, argument, true);
|
|
|
|
break;
|
|
|
|
|
2001-02-23 16:10:03 +00:00
|
|
|
case LFUN_FILE_INSERT_ASCII:
|
2001-03-07 14:25:31 +00:00
|
|
|
InsertAsciiFile(bv_, argument, false);
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
case LFUN_LAYOUT:
|
|
|
|
{
|
2001-06-27 14:10:35 +00:00
|
|
|
lyxerr[Debug::INFO] << "LFUN_LAYOUT: (arg) "
|
|
|
|
<< argument << endl;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
// Derive layout number from given argument (string)
|
|
|
|
// and current buffer's textclass (number). */
|
|
|
|
LyXTextClassList::ClassList::size_type tclass =
|
|
|
|
buffer_->params.textclass;
|
|
|
|
pair <bool, LyXTextClass::size_type> layout =
|
|
|
|
textclasslist.NumberOfLayout(tclass, argument);
|
|
|
|
|
|
|
|
// If the entry is obsolete, use the new one instead.
|
|
|
|
if (layout.first) {
|
|
|
|
string obs = textclasslist.Style(tclass,layout.second)
|
|
|
|
.obsoleted_by();
|
|
|
|
if (!obs.empty())
|
|
|
|
layout =
|
|
|
|
textclasslist.NumberOfLayout(tclass, obs);
|
|
|
|
}
|
|
|
|
|
|
|
|
// see if we found the layout number:
|
|
|
|
if (!layout.first) {
|
|
|
|
owner_->getLyXFunc()->setErrorMessage(
|
|
|
|
string(N_("Layout ")) + argument +
|
|
|
|
N_(" not known"));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (current_layout != layout.second) {
|
2001-05-29 09:50:02 +00:00
|
|
|
LyXText * lt = bv_->getLyXText();
|
2001-02-23 16:10:03 +00:00
|
|
|
hideCursor();
|
|
|
|
current_layout = layout.second;
|
2001-05-29 09:50:02 +00:00
|
|
|
update(lt,
|
|
|
|
BufferView::SELECT
|
|
|
|
| BufferView::FITCUR);
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->setLayout(bv_, layout.second);
|
2001-02-23 16:10:03 +00:00
|
|
|
owner_->setLayout(layout.second);
|
2001-05-29 09:50:02 +00:00
|
|
|
update(lt,
|
|
|
|
BufferView::SELECT
|
|
|
|
| BufferView::FITCUR
|
|
|
|
| BufferView::CHANGE);
|
2001-02-23 16:10:03 +00:00
|
|
|
setState();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_LANGUAGE:
|
|
|
|
Lang(bv_, argument);
|
|
|
|
setState();
|
|
|
|
owner_->showState();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_EMPH:
|
|
|
|
Emph(bv_);
|
|
|
|
owner_->showState();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_BOLD:
|
|
|
|
Bold(bv_);
|
|
|
|
owner_->showState();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_NOUN:
|
|
|
|
Noun(bv_);
|
|
|
|
owner_->showState();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_CODE:
|
|
|
|
Code(bv_);
|
|
|
|
owner_->showState();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_SANS:
|
|
|
|
Sans(bv_);
|
|
|
|
owner_->showState();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_ROMAN:
|
|
|
|
Roman(bv_);
|
|
|
|
owner_->showState();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_DEFAULT:
|
|
|
|
StyleReset(bv_);
|
|
|
|
owner_->showState();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_UNDERLINE:
|
|
|
|
Underline(bv_);
|
|
|
|
owner_->showState();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_FONT_SIZE:
|
|
|
|
FontSize(bv_, argument);
|
|
|
|
owner_->showState();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_FONT_STATE:
|
|
|
|
owner_->getLyXFunc()->setMessage(CurrentState(bv_));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_UPCASE_WORD:
|
2001-05-29 09:50:02 +00:00
|
|
|
{
|
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
|
|
|
update(lt,
|
|
|
|
BufferView::SELECT
|
|
|
|
| BufferView::FITCUR);
|
2001-06-27 14:10:35 +00:00
|
|
|
lt->changeCase(bv_, LyXText::text_uppercase);
|
2001-05-29 09:50:02 +00:00
|
|
|
if (lt->inset_owner)
|
2001-06-04 23:57:32 +00:00
|
|
|
updateInset(lt->inset_owner, true);
|
2001-05-29 09:50:02 +00:00
|
|
|
update(lt,
|
|
|
|
BufferView::SELECT
|
|
|
|
| BufferView::FITCUR
|
|
|
|
| BufferView::CHANGE);
|
|
|
|
}
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
case LFUN_LOWCASE_WORD:
|
2001-05-29 09:50:02 +00:00
|
|
|
{
|
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
|
|
|
update(lt, BufferView::SELECT|BufferView::FITCUR);
|
2001-06-27 14:10:35 +00:00
|
|
|
lt->changeCase(bv_, LyXText::text_lowercase);
|
2001-05-29 09:50:02 +00:00
|
|
|
if (lt->inset_owner)
|
2001-06-04 23:57:32 +00:00
|
|
|
updateInset(lt->inset_owner, true);
|
2001-05-29 09:50:02 +00:00
|
|
|
update(lt,
|
|
|
|
BufferView::SELECT
|
|
|
|
| BufferView::FITCUR
|
|
|
|
| BufferView::CHANGE);
|
|
|
|
}
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
case LFUN_CAPITALIZE_WORD:
|
2001-05-29 09:50:02 +00:00
|
|
|
{
|
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
|
|
|
update(lt, BufferView::SELECT|BufferView::FITCUR);
|
2001-06-27 14:10:35 +00:00
|
|
|
lt->changeCase(bv_, LyXText::text_capitalization);
|
2001-05-29 09:50:02 +00:00
|
|
|
if (lt->inset_owner)
|
2001-06-04 23:57:32 +00:00
|
|
|
updateInset(lt->inset_owner, true);
|
2001-05-29 09:50:02 +00:00
|
|
|
update(lt,
|
|
|
|
BufferView::SELECT
|
|
|
|
| BufferView::FITCUR
|
|
|
|
| BufferView::CHANGE);
|
|
|
|
}
|
|
|
|
break;
|
2001-04-25 19:33:52 +00:00
|
|
|
|
|
|
|
case LFUN_TRANSPOSE_CHARS:
|
2001-05-29 09:50:02 +00:00
|
|
|
{
|
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
|
|
|
update(lt, BufferView::SELECT|BufferView::FITCUR);
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->transposeChars(*bv_);
|
2001-05-29 09:50:02 +00:00
|
|
|
if (lt->inset_owner)
|
2001-06-04 23:57:32 +00:00
|
|
|
updateInset(lt->inset_owner, true);
|
2001-05-29 09:50:02 +00:00
|
|
|
update(lt,
|
|
|
|
BufferView::SELECT
|
|
|
|
| BufferView::FITCUR
|
|
|
|
| BufferView::CHANGE);
|
|
|
|
}
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
2001-04-25 19:33:52 +00:00
|
|
|
|
2001-02-23 16:10:03 +00:00
|
|
|
case LFUN_INSERT_LABEL:
|
|
|
|
MenuInsertLabel(bv_, argument);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_REF_INSERT:
|
|
|
|
if (argument.empty()) {
|
|
|
|
InsetCommandParams p("ref");
|
|
|
|
owner_->getDialogs()->createRef(p.getAsString());
|
|
|
|
} else {
|
|
|
|
InsetCommandParams p;
|
|
|
|
p.setFromString(argument);
|
|
|
|
|
|
|
|
InsetRef * inset = new InsetRef(p, *buffer_);
|
2001-06-04 23:57:32 +00:00
|
|
|
if (!insertInset(inset))
|
2001-02-23 16:10:03 +00:00
|
|
|
delete inset;
|
|
|
|
else
|
2001-06-04 23:57:32 +00:00
|
|
|
updateInset(inset, true);
|
2001-02-23 16:10:03 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_BOOKMARK_SAVE:
|
|
|
|
savePosition(strToUnsignedInt(argument));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_BOOKMARK_GOTO:
|
|
|
|
restorePosition(strToUnsignedInt(argument));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_REF_GOTO:
|
|
|
|
{
|
|
|
|
string label(argument);
|
|
|
|
if (label.empty()) {
|
|
|
|
InsetRef * inset =
|
|
|
|
static_cast<InsetRef*>(getInsetByCode(Inset::REF_CODE));
|
|
|
|
if (inset) {
|
|
|
|
label = inset->getContents();
|
|
|
|
savePosition(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!label.empty()) {
|
|
|
|
//bv_->savePosition(0);
|
|
|
|
if (!bv_->gotoLabel(label))
|
|
|
|
WriteAlert(_("Error"),
|
|
|
|
_("Couldn't find this label"),
|
|
|
|
_("in current document."));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
// --- Cursor Movements -----------------------------
|
|
|
|
case LFUN_RIGHT:
|
|
|
|
{
|
2001-05-29 09:50:02 +00:00
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
|
|
|
bool is_rtl = lt->cursor.par()->isRightToLeftPar(buffer_->params);
|
2001-05-31 02:23:46 +00:00
|
|
|
if (!lt->selection.mark())
|
2001-05-29 09:50:02 +00:00
|
|
|
beforeChange(lt);
|
|
|
|
update(lt, BufferView::SELECT|BufferView::FITCUR);
|
2001-02-23 16:10:03 +00:00
|
|
|
if (is_rtl)
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->cursorLeft(bv_, false);
|
2001-05-29 09:50:02 +00:00
|
|
|
if (lt->cursor.pos() < lt->cursor.par()->size()
|
2001-06-25 00:06:33 +00:00
|
|
|
&& lt->cursor.par()->getChar(lt->cursor.pos())
|
|
|
|
== Paragraph::META_INSET
|
|
|
|
&& lt->cursor.par()->getInset(lt->cursor.pos())
|
2001-06-28 10:25:20 +00:00
|
|
|
&& lt->cursor.par()->getInset(lt->cursor.pos())->editable() == Inset::HIGHLY_EDITABLE){
|
2001-06-25 00:06:33 +00:00
|
|
|
Inset * tmpinset = lt->cursor.par()->getInset(lt->cursor.pos());
|
2001-06-28 10:25:20 +00:00
|
|
|
owner_->getLyXFunc()->setMessage(tmpinset->editMessage());
|
2001-07-20 14:18:48 +00:00
|
|
|
if (is_rtl)
|
|
|
|
tmpinset->edit(bv_, false);
|
|
|
|
else
|
|
|
|
tmpinset->edit(bv_);
|
2001-02-23 16:10:03 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!is_rtl)
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->cursorRight(bv_, false);
|
2001-07-06 15:57:54 +00:00
|
|
|
finishUndo();
|
2001-02-23 16:10:03 +00:00
|
|
|
moveCursorUpdate(false);
|
|
|
|
owner_->showState();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_LEFT:
|
|
|
|
{
|
|
|
|
// This is soooo ugly. Isn`t it possible to make
|
|
|
|
// it simpler? (Lgb)
|
2001-05-29 09:50:02 +00:00
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
bool is_rtl = lt->cursor.par()->isRightToLeftPar(buffer_->params);
|
2001-05-31 02:23:46 +00:00
|
|
|
if (!lt->selection.mark())
|
2001-05-29 09:50:02 +00:00
|
|
|
beforeChange(lt);
|
|
|
|
update(lt, BufferView::SELECT|BufferView::FITCUR);
|
2001-06-01 15:10:26 +00:00
|
|
|
LyXCursor const cur = lt->cursor;
|
2001-02-23 16:10:03 +00:00
|
|
|
if (!is_rtl)
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->cursorLeft(bv_, false);
|
2001-05-29 09:50:02 +00:00
|
|
|
if ((is_rtl || cur != lt->cursor) && // only if really moved!
|
|
|
|
lt->cursor.pos() < lt->cursor.par()->size() &&
|
2001-06-25 00:06:33 +00:00
|
|
|
(lt->cursor.par()->getChar(lt->cursor.pos()) ==
|
|
|
|
Paragraph::META_INSET) &&
|
|
|
|
lt->cursor.par()->getInset(lt->cursor.pos()) &&
|
2001-06-28 10:25:20 +00:00
|
|
|
(lt->cursor.par()->getInset(lt->cursor.pos())->editable()
|
2001-02-23 16:10:03 +00:00
|
|
|
== Inset::HIGHLY_EDITABLE))
|
|
|
|
{
|
2001-06-25 00:06:33 +00:00
|
|
|
Inset * tmpinset = lt->cursor.par()->getInset(lt->cursor.pos());
|
2001-06-28 10:25:20 +00:00
|
|
|
owner_->getLyXFunc()->setMessage(tmpinset->editMessage());
|
2001-07-20 14:18:48 +00:00
|
|
|
if (is_rtl)
|
|
|
|
tmpinset->edit(bv_);
|
|
|
|
else
|
|
|
|
tmpinset->edit(bv_, false);
|
2001-02-23 16:10:03 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (is_rtl)
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->cursorRight(bv_, false);
|
2001-02-23 16:10:03 +00:00
|
|
|
|
2001-07-06 15:57:54 +00:00
|
|
|
finishUndo();
|
2001-02-23 16:10:03 +00:00
|
|
|
moveCursorUpdate(false);
|
|
|
|
owner_->showState();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_UP:
|
2001-05-29 09:50:02 +00:00
|
|
|
{
|
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
2001-05-31 02:23:46 +00:00
|
|
|
if (!lt->selection.mark())
|
2001-05-29 09:50:02 +00:00
|
|
|
beforeChange(lt);
|
|
|
|
update(lt, BufferView::UPDATE);
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->cursorUp(bv_);
|
2001-07-06 15:57:54 +00:00
|
|
|
finishUndo();
|
2001-02-23 16:10:03 +00:00
|
|
|
moveCursorUpdate(false);
|
|
|
|
owner_->showState();
|
2001-05-29 09:50:02 +00:00
|
|
|
}
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
case LFUN_DOWN:
|
2001-05-29 09:50:02 +00:00
|
|
|
{
|
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
2001-05-31 02:23:46 +00:00
|
|
|
if (!lt->selection.mark())
|
2001-05-29 09:50:02 +00:00
|
|
|
beforeChange(lt);
|
|
|
|
update(lt, BufferView::UPDATE);
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->cursorDown(bv_);
|
2001-07-06 15:57:54 +00:00
|
|
|
finishUndo();
|
2001-02-23 16:10:03 +00:00
|
|
|
moveCursorUpdate(false);
|
|
|
|
owner_->showState();
|
2001-05-29 09:50:02 +00:00
|
|
|
}
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
case LFUN_UP_PARAGRAPH:
|
2001-05-29 09:50:02 +00:00
|
|
|
{
|
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
2001-05-31 02:23:46 +00:00
|
|
|
if (!lt->selection.mark())
|
2001-05-29 09:50:02 +00:00
|
|
|
beforeChange(lt);
|
|
|
|
update(lt, BufferView::UPDATE);
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->cursorUpParagraph(bv_);
|
2001-07-06 15:57:54 +00:00
|
|
|
finishUndo();
|
2001-02-23 16:10:03 +00:00
|
|
|
moveCursorUpdate(false);
|
|
|
|
owner_->showState();
|
2001-05-29 09:50:02 +00:00
|
|
|
}
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
case LFUN_DOWN_PARAGRAPH:
|
2001-05-29 09:50:02 +00:00
|
|
|
{
|
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
2001-05-31 02:23:46 +00:00
|
|
|
if (!lt->selection.mark())
|
2001-05-29 09:50:02 +00:00
|
|
|
beforeChange(lt);
|
|
|
|
update(lt, BufferView::UPDATE);
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->cursorDownParagraph(bv_);
|
2001-07-06 15:57:54 +00:00
|
|
|
finishUndo();
|
2001-02-23 16:10:03 +00:00
|
|
|
moveCursorUpdate(false);
|
|
|
|
owner_->showState();
|
2001-05-29 09:50:02 +00:00
|
|
|
}
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
case LFUN_PRIOR:
|
2001-05-29 09:50:02 +00:00
|
|
|
{
|
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
2001-05-31 02:23:46 +00:00
|
|
|
if (!lt->selection.mark())
|
2001-05-29 09:50:02 +00:00
|
|
|
beforeChange(lt);
|
|
|
|
update(lt, BufferView::UPDATE);
|
|
|
|
cursorPrevious(lt);
|
2001-07-06 15:57:54 +00:00
|
|
|
finishUndo();
|
2001-02-23 16:10:03 +00:00
|
|
|
moveCursorUpdate(false);
|
|
|
|
owner_->showState();
|
2001-05-29 09:50:02 +00:00
|
|
|
}
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
case LFUN_NEXT:
|
2001-05-29 09:50:02 +00:00
|
|
|
{
|
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
2001-05-31 02:23:46 +00:00
|
|
|
if (!lt->selection.mark())
|
2001-05-29 09:50:02 +00:00
|
|
|
beforeChange(lt);
|
|
|
|
update(lt, BufferView::UPDATE);
|
|
|
|
cursorNext(lt);
|
2001-07-06 15:57:54 +00:00
|
|
|
finishUndo();
|
2001-02-23 16:10:03 +00:00
|
|
|
moveCursorUpdate(false);
|
|
|
|
owner_->showState();
|
2001-05-29 09:50:02 +00:00
|
|
|
}
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
case LFUN_HOME:
|
2001-05-29 09:50:02 +00:00
|
|
|
{
|
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
2001-05-31 02:23:46 +00:00
|
|
|
if (!lt->selection.mark())
|
2001-05-29 09:50:02 +00:00
|
|
|
beforeChange(lt);
|
|
|
|
update(lt, BufferView::SELECT|BufferView::FITCUR);
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->cursorHome(bv_);
|
2001-07-06 15:57:54 +00:00
|
|
|
finishUndo();
|
2001-02-23 16:10:03 +00:00
|
|
|
moveCursorUpdate(false);
|
|
|
|
owner_->showState();
|
2001-05-29 09:50:02 +00:00
|
|
|
}
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
case LFUN_END:
|
2001-05-29 09:50:02 +00:00
|
|
|
{
|
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
2001-05-31 02:23:46 +00:00
|
|
|
if (!lt->selection.mark())
|
2001-05-29 09:50:02 +00:00
|
|
|
beforeChange(lt);
|
|
|
|
update(lt,
|
2001-02-23 16:10:03 +00:00
|
|
|
BufferView::SELECT|BufferView::FITCUR);
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->cursorEnd(bv_);
|
2001-07-06 15:57:54 +00:00
|
|
|
finishUndo();
|
2001-02-23 16:10:03 +00:00
|
|
|
moveCursorUpdate(false);
|
|
|
|
owner_->showState();
|
2001-05-29 09:50:02 +00:00
|
|
|
}
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
case LFUN_SHIFT_TAB:
|
|
|
|
case LFUN_TAB:
|
2001-05-29 09:50:02 +00:00
|
|
|
{
|
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
2001-05-31 02:23:46 +00:00
|
|
|
if (!lt->selection.mark())
|
2001-05-29 09:50:02 +00:00
|
|
|
beforeChange(lt);
|
|
|
|
update(lt,
|
2001-02-23 16:10:03 +00:00
|
|
|
BufferView::SELECT|BufferView::FITCUR);
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->cursorTab(bv_);
|
2001-07-06 15:57:54 +00:00
|
|
|
finishUndo();
|
2001-02-23 16:10:03 +00:00
|
|
|
moveCursorUpdate(false);
|
|
|
|
owner_->showState();
|
2001-05-29 09:50:02 +00:00
|
|
|
}
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
case LFUN_WORDRIGHT:
|
2001-05-29 09:50:02 +00:00
|
|
|
{
|
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
2001-05-31 02:23:46 +00:00
|
|
|
if (!lt->selection.mark())
|
2001-05-29 09:50:02 +00:00
|
|
|
beforeChange(lt);
|
|
|
|
update(lt, BufferView::SELECT|BufferView::FITCUR);
|
|
|
|
if (lt->cursor.par()->isRightToLeftPar(buffer_->params))
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->cursorLeftOneWord(bv_);
|
2001-02-23 16:10:03 +00:00
|
|
|
else
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->cursorRightOneWord(bv_);
|
2001-07-06 15:57:54 +00:00
|
|
|
finishUndo();
|
2001-02-23 16:10:03 +00:00
|
|
|
moveCursorUpdate(false);
|
|
|
|
owner_->showState();
|
2001-05-29 09:50:02 +00:00
|
|
|
}
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
case LFUN_WORDLEFT:
|
2001-05-29 09:50:02 +00:00
|
|
|
{
|
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
2001-05-31 02:23:46 +00:00
|
|
|
if (!lt->selection.mark())
|
2001-05-29 09:50:02 +00:00
|
|
|
beforeChange(lt);
|
|
|
|
update(lt, BufferView::SELECT|BufferView::FITCUR);
|
|
|
|
if (lt->cursor.par()->isRightToLeftPar(buffer_->params))
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->cursorRightOneWord(bv_);
|
2001-02-23 16:10:03 +00:00
|
|
|
else
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->cursorLeftOneWord(bv_);
|
2001-07-06 15:57:54 +00:00
|
|
|
finishUndo();
|
2001-02-23 16:10:03 +00:00
|
|
|
moveCursorUpdate(false);
|
|
|
|
owner_->showState();
|
2001-05-29 09:50:02 +00:00
|
|
|
}
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
case LFUN_BEGINNINGBUF:
|
2001-05-29 09:50:02 +00:00
|
|
|
{
|
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
2001-05-31 02:23:46 +00:00
|
|
|
if (!lt->selection.mark())
|
2001-05-29 09:50:02 +00:00
|
|
|
beforeChange(lt);
|
|
|
|
update(lt,
|
2001-02-23 16:10:03 +00:00
|
|
|
BufferView::SELECT|BufferView::FITCUR);
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->cursorTop(bv_);
|
2001-07-06 15:57:54 +00:00
|
|
|
finishUndo();
|
2001-02-23 16:10:03 +00:00
|
|
|
moveCursorUpdate(false);
|
|
|
|
owner_->showState();
|
2001-05-29 09:50:02 +00:00
|
|
|
}
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
case LFUN_ENDBUF:
|
2001-05-29 09:50:02 +00:00
|
|
|
{
|
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
2001-05-31 02:23:46 +00:00
|
|
|
if (!lt->selection.mark())
|
2001-05-29 09:50:02 +00:00
|
|
|
beforeChange(lt);
|
|
|
|
update(lt,
|
2001-02-23 16:10:03 +00:00
|
|
|
BufferView::SELECT|BufferView::FITCUR);
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->cursorBottom(bv_);
|
2001-07-06 15:57:54 +00:00
|
|
|
finishUndo();
|
2001-02-23 16:10:03 +00:00
|
|
|
moveCursorUpdate(false);
|
|
|
|
owner_->showState();
|
2001-05-29 09:50:02 +00:00
|
|
|
}
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
/* cursor selection ---------------------------- */
|
|
|
|
case LFUN_RIGHTSEL:
|
2001-05-29 09:50:02 +00:00
|
|
|
{
|
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
|
|
|
update(lt,
|
2001-02-23 16:10:03 +00:00
|
|
|
BufferView::SELECT|BufferView::FITCUR);
|
2001-05-29 09:50:02 +00:00
|
|
|
if (lt->cursor.par()->isRightToLeftPar(buffer_->params))
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->cursorLeft(bv_);
|
2001-02-23 16:10:03 +00:00
|
|
|
else
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->cursorRight(bv_);
|
2001-07-06 15:57:54 +00:00
|
|
|
finishUndo();
|
2001-02-23 16:10:03 +00:00
|
|
|
moveCursorUpdate(true);
|
|
|
|
owner_->showState();
|
2001-05-29 09:50:02 +00:00
|
|
|
}
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
case LFUN_LEFTSEL:
|
2001-05-29 09:50:02 +00:00
|
|
|
{
|
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
|
|
|
update(lt,
|
2001-02-23 16:10:03 +00:00
|
|
|
BufferView::SELECT|BufferView::FITCUR);
|
2001-05-29 09:50:02 +00:00
|
|
|
if (lt->cursor.par()->isRightToLeftPar(buffer_->params))
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->cursorRight(bv_);
|
2001-02-23 16:10:03 +00:00
|
|
|
else
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->cursorLeft(bv_);
|
2001-07-06 15:57:54 +00:00
|
|
|
finishUndo();
|
2001-02-23 16:10:03 +00:00
|
|
|
moveCursorUpdate(true);
|
|
|
|
owner_->showState();
|
2001-05-29 09:50:02 +00:00
|
|
|
}
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
case LFUN_UPSEL:
|
2001-05-29 09:50:02 +00:00
|
|
|
{
|
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
|
|
|
update(lt,
|
2001-02-23 16:10:03 +00:00
|
|
|
BufferView::SELECT|BufferView::FITCUR);
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->cursorUp(bv_);
|
2001-07-06 15:57:54 +00:00
|
|
|
finishUndo();
|
2001-02-23 16:10:03 +00:00
|
|
|
moveCursorUpdate(true);
|
|
|
|
owner_->showState();
|
2001-05-29 09:50:02 +00:00
|
|
|
}
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
case LFUN_DOWNSEL:
|
2001-05-29 09:50:02 +00:00
|
|
|
{
|
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
|
|
|
update(lt,
|
2001-02-23 16:10:03 +00:00
|
|
|
BufferView::SELECT|BufferView::FITCUR);
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->cursorDown(bv_);
|
2001-07-06 15:57:54 +00:00
|
|
|
finishUndo();
|
2001-02-23 16:10:03 +00:00
|
|
|
moveCursorUpdate(true);
|
|
|
|
owner_->showState();
|
2001-05-29 09:50:02 +00:00
|
|
|
}
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
case LFUN_UP_PARAGRAPHSEL:
|
2001-05-29 09:50:02 +00:00
|
|
|
{
|
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
|
|
|
update(lt,
|
2001-02-23 16:10:03 +00:00
|
|
|
BufferView::SELECT|BufferView::FITCUR);
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->cursorUpParagraph(bv_);
|
2001-07-06 15:57:54 +00:00
|
|
|
finishUndo();
|
2001-02-23 16:10:03 +00:00
|
|
|
moveCursorUpdate(true);
|
|
|
|
owner_->showState();
|
2001-05-29 09:50:02 +00:00
|
|
|
}
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
case LFUN_DOWN_PARAGRAPHSEL:
|
2001-05-29 09:50:02 +00:00
|
|
|
{
|
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
|
|
|
update(lt,
|
2001-02-23 16:10:03 +00:00
|
|
|
BufferView::SELECT|BufferView::FITCUR);
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->cursorDownParagraph(bv_);
|
2001-07-06 15:57:54 +00:00
|
|
|
finishUndo();
|
2001-02-23 16:10:03 +00:00
|
|
|
moveCursorUpdate(true);
|
|
|
|
owner_->showState();
|
2001-05-29 09:50:02 +00:00
|
|
|
}
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
case LFUN_PRIORSEL:
|
2001-05-29 09:50:02 +00:00
|
|
|
{
|
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
|
|
|
update(lt, BufferView::SELECT|BufferView::FITCUR);
|
|
|
|
cursorPrevious(lt);
|
2001-07-06 15:57:54 +00:00
|
|
|
finishUndo();
|
2001-02-23 16:10:03 +00:00
|
|
|
moveCursorUpdate(true);
|
|
|
|
owner_->showState();
|
2001-05-29 09:50:02 +00:00
|
|
|
}
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
case LFUN_NEXTSEL:
|
2001-05-29 09:50:02 +00:00
|
|
|
{
|
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
|
|
|
update(lt, BufferView::SELECT|BufferView::FITCUR);
|
|
|
|
cursorNext(lt);
|
2001-07-06 15:57:54 +00:00
|
|
|
finishUndo();
|
2001-02-23 16:10:03 +00:00
|
|
|
moveCursorUpdate(true);
|
|
|
|
owner_->showState();
|
2001-05-29 09:50:02 +00:00
|
|
|
}
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
case LFUN_HOMESEL:
|
2001-05-29 09:50:02 +00:00
|
|
|
{
|
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
|
|
|
update(lt, BufferView::SELECT|BufferView::FITCUR);
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->cursorHome(bv_);
|
2001-07-06 15:57:54 +00:00
|
|
|
finishUndo();
|
2001-02-23 16:10:03 +00:00
|
|
|
moveCursorUpdate(true);
|
|
|
|
owner_->showState();
|
2001-05-29 09:50:02 +00:00
|
|
|
}
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
case LFUN_ENDSEL:
|
2001-05-29 09:50:02 +00:00
|
|
|
{
|
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
|
|
|
update(lt, BufferView::SELECT|BufferView::FITCUR);
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->cursorEnd(bv_);
|
2001-07-06 15:57:54 +00:00
|
|
|
finishUndo();
|
2001-02-23 16:10:03 +00:00
|
|
|
moveCursorUpdate(true);
|
|
|
|
owner_->showState();
|
2001-05-29 09:50:02 +00:00
|
|
|
}
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
case LFUN_WORDRIGHTSEL:
|
2001-05-29 09:50:02 +00:00
|
|
|
{
|
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
|
|
|
update(lt, BufferView::SELECT|BufferView::FITCUR);
|
|
|
|
if (lt->cursor.par()->isRightToLeftPar(buffer_->params))
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->cursorLeftOneWord(bv_);
|
2001-02-23 16:10:03 +00:00
|
|
|
else
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->cursorRightOneWord(bv_);
|
2001-07-06 15:57:54 +00:00
|
|
|
finishUndo();
|
2001-02-23 16:10:03 +00:00
|
|
|
moveCursorUpdate(true);
|
|
|
|
owner_->showState();
|
2001-05-29 09:50:02 +00:00
|
|
|
}
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
case LFUN_WORDLEFTSEL:
|
2001-05-29 09:50:02 +00:00
|
|
|
{
|
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
|
|
|
update(lt, BufferView::SELECT|BufferView::FITCUR);
|
|
|
|
if (lt->cursor.par()->isRightToLeftPar(buffer_->params))
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->cursorRightOneWord(bv_);
|
2001-02-23 16:10:03 +00:00
|
|
|
else
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->cursorLeftOneWord(bv_);
|
2001-07-06 15:57:54 +00:00
|
|
|
finishUndo();
|
2001-02-23 16:10:03 +00:00
|
|
|
moveCursorUpdate(true);
|
|
|
|
owner_->showState();
|
2001-05-29 09:50:02 +00:00
|
|
|
}
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
case LFUN_BEGINNINGBUFSEL:
|
2001-05-29 09:50:02 +00:00
|
|
|
{
|
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
|
|
|
if (lt->inset_owner)
|
2001-02-23 16:10:03 +00:00
|
|
|
break;
|
2001-05-29 09:50:02 +00:00
|
|
|
update(lt, BufferView::SELECT|BufferView::FITCUR);
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->cursorTop(bv_);
|
2001-07-06 15:57:54 +00:00
|
|
|
finishUndo();
|
2001-02-23 16:10:03 +00:00
|
|
|
moveCursorUpdate(true);
|
|
|
|
owner_->showState();
|
2001-05-29 09:50:02 +00:00
|
|
|
}
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
case LFUN_ENDBUFSEL:
|
2001-05-29 09:50:02 +00:00
|
|
|
{
|
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
|
|
|
if (lt->inset_owner)
|
2001-02-23 16:10:03 +00:00
|
|
|
break;
|
2001-05-29 09:50:02 +00:00
|
|
|
update(lt,
|
2001-02-23 16:10:03 +00:00
|
|
|
BufferView::SELECT|BufferView::FITCUR);
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->cursorBottom(bv_);
|
2001-07-06 15:57:54 +00:00
|
|
|
finishUndo();
|
2001-02-23 16:10:03 +00:00
|
|
|
moveCursorUpdate(true);
|
|
|
|
owner_->showState();
|
2001-05-29 09:50:02 +00:00
|
|
|
}
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
// --- text changing commands ------------------------
|
|
|
|
case LFUN_BREAKLINE:
|
2001-05-29 09:50:02 +00:00
|
|
|
{
|
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
|
|
|
beforeChange(lt);
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->insertChar(bv_, Paragraph::META_NEWLINE);
|
2001-05-29 09:50:02 +00:00
|
|
|
update(lt,
|
|
|
|
BufferView::SELECT
|
|
|
|
| BufferView::FITCUR
|
|
|
|
| BufferView::CHANGE);
|
2001-02-23 16:10:03 +00:00
|
|
|
moveCursorUpdate(false);
|
2001-05-29 09:50:02 +00:00
|
|
|
}
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
case LFUN_PROTECTEDSPACE:
|
|
|
|
{
|
2001-05-29 09:50:02 +00:00
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
2001-05-08 17:08:44 +00:00
|
|
|
LyXLayout const & style = textclasslist
|
|
|
|
.Style(buffer_->params.textclass,
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->cursor.par()->getLayout());
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
if (style.free_spacing) {
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->insertChar(bv_, ' ');
|
2001-05-29 09:50:02 +00:00
|
|
|
update(lt,
|
2001-05-08 17:08:44 +00:00
|
|
|
BufferView::SELECT
|
|
|
|
| BufferView::FITCUR
|
|
|
|
| BufferView::CHANGE);
|
2001-02-23 16:10:03 +00:00
|
|
|
} else {
|
2001-05-29 09:50:02 +00:00
|
|
|
protectedBlank(lt);
|
2001-02-23 16:10:03 +00:00
|
|
|
}
|
|
|
|
moveCursorUpdate(false);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_SETMARK:
|
2001-05-29 09:50:02 +00:00
|
|
|
{
|
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
2001-05-31 02:23:46 +00:00
|
|
|
if (lt->selection.mark()) {
|
2001-05-29 09:50:02 +00:00
|
|
|
beforeChange(lt);
|
|
|
|
update(lt,
|
|
|
|
BufferView::SELECT
|
|
|
|
| BufferView::FITCUR);
|
2001-02-23 16:10:03 +00:00
|
|
|
owner_->getLyXFunc()->setMessage(N_("Mark removed"));
|
|
|
|
} else {
|
2001-05-29 09:50:02 +00:00
|
|
|
beforeChange(lt);
|
2001-05-31 02:23:46 +00:00
|
|
|
lt->selection.mark(true);
|
2001-05-29 09:50:02 +00:00
|
|
|
update(lt,
|
|
|
|
BufferView::SELECT
|
|
|
|
| BufferView::FITCUR);
|
2001-02-23 16:10:03 +00:00
|
|
|
owner_->getLyXFunc()->setMessage(N_("Mark set"));
|
|
|
|
}
|
2001-05-31 02:23:46 +00:00
|
|
|
lt->selection.cursor = lt->cursor;
|
2001-05-29 09:50:02 +00:00
|
|
|
}
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
case LFUN_DELETE:
|
2001-05-29 09:50:02 +00:00
|
|
|
{
|
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
2001-05-31 02:23:46 +00:00
|
|
|
if (!lt->selection.set()) {
|
2001-05-29 09:50:02 +00:00
|
|
|
lt->Delete(bv_);
|
2001-05-31 02:23:46 +00:00
|
|
|
lt->selection.cursor = lt->cursor;
|
2001-05-29 09:50:02 +00:00
|
|
|
update(lt,
|
2001-05-08 17:08:44 +00:00
|
|
|
BufferView::SELECT
|
|
|
|
| BufferView::FITCUR
|
|
|
|
| BufferView::CHANGE);
|
2001-02-23 16:10:03 +00:00
|
|
|
// It is possible to make it a lot faster still
|
|
|
|
// just comment out the line below...
|
|
|
|
showCursor();
|
|
|
|
} else {
|
|
|
|
bv_->cut();
|
|
|
|
}
|
|
|
|
moveCursorUpdate(false);
|
|
|
|
owner_->showState();
|
|
|
|
setState();
|
2001-05-29 09:50:02 +00:00
|
|
|
}
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
case LFUN_DELETE_SKIP:
|
|
|
|
{
|
2001-05-29 09:50:02 +00:00
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
2001-02-23 16:10:03 +00:00
|
|
|
// Reverse the effect of LFUN_BREAKPARAGRAPH_SKIP.
|
|
|
|
|
2001-05-29 09:50:02 +00:00
|
|
|
LyXCursor cursor = lt->cursor;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
2001-05-31 02:23:46 +00:00
|
|
|
if (!lt->selection.set()) {
|
2001-03-11 00:21:13 +00:00
|
|
|
if (cursor.pos() == cursor.par()->size()) {
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->cursorRight(bv_);
|
2001-05-29 09:50:02 +00:00
|
|
|
cursor = lt->cursor;
|
2001-02-23 16:10:03 +00:00
|
|
|
if (cursor.pos() == 0
|
2001-06-25 00:06:33 +00:00
|
|
|
&& !(cursor.par()->params().spaceTop()
|
2001-02-23 16:10:03 +00:00
|
|
|
== VSpace (VSpace::NONE))) {
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->setParagraph
|
2001-02-23 16:10:03 +00:00
|
|
|
(bv_,
|
2001-06-25 00:06:33 +00:00
|
|
|
cursor.par()->params().lineTop(),
|
|
|
|
cursor.par()->params().lineBottom(),
|
|
|
|
cursor.par()->params().pagebreakTop(),
|
|
|
|
cursor.par()->params().pagebreakBottom(),
|
2001-02-23 16:10:03 +00:00
|
|
|
VSpace(VSpace::NONE),
|
2001-06-25 00:06:33 +00:00
|
|
|
cursor.par()->params().spaceBottom(),
|
|
|
|
cursor.par()->params().align(),
|
|
|
|
cursor.par()->params().labelWidthString(), 0);
|
|
|
|
lt->cursorLeft(bv_);
|
2001-05-29 09:50:02 +00:00
|
|
|
update(lt,
|
|
|
|
BufferView::SELECT
|
|
|
|
| BufferView::FITCUR
|
|
|
|
| BufferView::CHANGE);
|
2001-02-23 16:10:03 +00:00
|
|
|
} else {
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->cursorLeft(bv_);
|
2001-05-29 09:50:02 +00:00
|
|
|
lt->Delete(bv_);
|
2001-05-31 02:23:46 +00:00
|
|
|
lt->selection.cursor = lt->cursor;
|
2001-05-29 09:50:02 +00:00
|
|
|
update(lt,
|
|
|
|
BufferView::SELECT
|
|
|
|
| BufferView::FITCUR
|
|
|
|
| BufferView::CHANGE);
|
2001-02-23 16:10:03 +00:00
|
|
|
}
|
|
|
|
} else {
|
2001-05-29 09:50:02 +00:00
|
|
|
lt->Delete(bv_);
|
2001-05-31 02:23:46 +00:00
|
|
|
lt->selection.cursor = lt->cursor;
|
2001-05-29 09:50:02 +00:00
|
|
|
update(lt,
|
|
|
|
BufferView::SELECT
|
|
|
|
| BufferView::FITCUR
|
|
|
|
| BufferView::CHANGE);
|
2001-02-23 16:10:03 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
bv_->cut();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* -------> Delete word forward. */
|
|
|
|
case LFUN_DELETE_WORD_FORWARD:
|
2001-05-29 09:50:02 +00:00
|
|
|
update(bv_->getLyXText(), BufferView::SELECT|BufferView::FITCUR);
|
2001-06-25 00:06:33 +00:00
|
|
|
bv_->getLyXText()->deleteWordForward(bv_);
|
2001-05-29 09:50:02 +00:00
|
|
|
update(bv_->getLyXText(), BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
|
2001-02-23 16:10:03 +00:00
|
|
|
moveCursorUpdate(false);
|
|
|
|
owner_->showState();
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* -------> Delete word backward. */
|
|
|
|
case LFUN_DELETE_WORD_BACKWARD:
|
2001-05-31 02:23:46 +00:00
|
|
|
{
|
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
|
|
|
update(lt, BufferView::SELECT|BufferView::FITCUR);
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->deleteWordBackward(bv_);
|
2001-05-31 02:23:46 +00:00
|
|
|
update(lt,
|
|
|
|
BufferView::SELECT
|
|
|
|
| BufferView::FITCUR
|
|
|
|
| BufferView::CHANGE);
|
2001-02-23 16:10:03 +00:00
|
|
|
moveCursorUpdate(false);
|
|
|
|
owner_->showState();
|
2001-05-31 02:23:46 +00:00
|
|
|
}
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
/* -------> Kill to end of line. */
|
|
|
|
case LFUN_DELETE_LINE_FORWARD:
|
2001-05-31 02:23:46 +00:00
|
|
|
{
|
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
|
|
|
update(lt, BufferView::SELECT|BufferView::FITCUR);
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->deleteLineForward(bv_);
|
2001-05-31 02:23:46 +00:00
|
|
|
update(lt,
|
|
|
|
BufferView::SELECT
|
|
|
|
| BufferView::FITCUR
|
|
|
|
| BufferView::CHANGE);
|
2001-02-23 16:10:03 +00:00
|
|
|
moveCursorUpdate(false);
|
2001-05-31 02:23:46 +00:00
|
|
|
}
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
/* -------> Set mark off. */
|
|
|
|
case LFUN_MARK_OFF:
|
2001-05-31 02:23:46 +00:00
|
|
|
{
|
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
|
|
|
beforeChange(lt);
|
|
|
|
update(lt, BufferView::SELECT|BufferView::FITCUR);
|
|
|
|
lt->selection.cursor = lt->cursor;
|
2001-02-23 16:10:03 +00:00
|
|
|
owner_->getLyXFunc()->setMessage(N_("Mark off"));
|
2001-05-31 02:23:46 +00:00
|
|
|
}
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
/* -------> Set mark on. */
|
|
|
|
case LFUN_MARK_ON:
|
2001-05-31 02:23:46 +00:00
|
|
|
{
|
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
|
|
|
beforeChange(lt);
|
|
|
|
lt->selection.mark(true);
|
|
|
|
update(lt, BufferView::SELECT|BufferView::FITCUR);
|
|
|
|
lt->selection.cursor = lt->cursor;
|
2001-02-23 16:10:03 +00:00
|
|
|
owner_->getLyXFunc()->setMessage(N_("Mark on"));
|
2001-05-31 02:23:46 +00:00
|
|
|
}
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
case LFUN_BACKSPACE:
|
|
|
|
{
|
2001-05-29 09:50:02 +00:00
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
2001-05-31 02:23:46 +00:00
|
|
|
if (!lt->selection.set()) {
|
2001-02-23 16:10:03 +00:00
|
|
|
if (owner_->getIntl()->getTrans().backspace()) {
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->backspace(bv_);
|
2001-05-31 02:23:46 +00:00
|
|
|
lt->selection.cursor = lt->cursor;
|
2001-05-29 09:50:02 +00:00
|
|
|
update(lt,
|
|
|
|
BufferView::SELECT
|
|
|
|
| BufferView::FITCUR
|
|
|
|
| BufferView::CHANGE);
|
2001-02-23 16:10:03 +00:00
|
|
|
// It is possible to make it a lot faster still
|
|
|
|
// just comment out the line below...
|
|
|
|
showCursor();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
bv_->cut();
|
|
|
|
}
|
|
|
|
owner_->showState();
|
|
|
|
setState();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_BACKSPACE_SKIP:
|
|
|
|
{
|
|
|
|
// Reverse the effect of LFUN_BREAKPARAGRAPH_SKIP.
|
2001-05-29 09:50:02 +00:00
|
|
|
LyXText * lt = bv_->getLyXText();
|
2001-02-23 16:10:03 +00:00
|
|
|
|
2001-05-29 09:50:02 +00:00
|
|
|
LyXCursor cursor = lt->cursor;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
2001-05-31 02:23:46 +00:00
|
|
|
if (!lt->selection.set()) {
|
2001-02-23 16:10:03 +00:00
|
|
|
if (cursor.pos() == 0
|
2001-06-25 00:06:33 +00:00
|
|
|
&& !(cursor.par()->params().spaceTop()
|
2001-02-23 16:10:03 +00:00
|
|
|
== VSpace (VSpace::NONE))) {
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->setParagraph
|
2001-02-23 16:10:03 +00:00
|
|
|
(bv_,
|
2001-06-25 00:06:33 +00:00
|
|
|
cursor.par()->params().lineTop(),
|
|
|
|
cursor.par()->params().lineBottom(),
|
|
|
|
cursor.par()->params().pagebreakTop(),
|
|
|
|
cursor.par()->params().pagebreakBottom(),
|
|
|
|
VSpace(VSpace::NONE), cursor.par()->params().spaceBottom(),
|
|
|
|
cursor.par()->params().align(),
|
|
|
|
cursor.par()->params().labelWidthString(), 0);
|
2001-05-29 09:50:02 +00:00
|
|
|
update(lt,
|
|
|
|
BufferView::SELECT
|
|
|
|
| BufferView::FITCUR
|
|
|
|
| BufferView::CHANGE);
|
2001-02-23 16:10:03 +00:00
|
|
|
} else {
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->backspace(bv_);
|
2001-05-31 02:23:46 +00:00
|
|
|
lt->selection.cursor = cursor;
|
2001-05-29 09:50:02 +00:00
|
|
|
update(lt,
|
|
|
|
BufferView::SELECT
|
|
|
|
| BufferView::FITCUR
|
|
|
|
| BufferView::CHANGE);
|
2001-02-23 16:10:03 +00:00
|
|
|
}
|
|
|
|
} else
|
|
|
|
bv_->cut();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_BREAKPARAGRAPH:
|
|
|
|
{
|
2001-05-29 09:50:02 +00:00
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
|
|
|
beforeChange(lt);
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->breakParagraph(bv_, 0);
|
2001-05-29 09:50:02 +00:00
|
|
|
update(lt,
|
|
|
|
BufferView::SELECT
|
|
|
|
| BufferView::FITCUR
|
|
|
|
| BufferView::CHANGE);
|
2001-05-31 02:23:46 +00:00
|
|
|
lt->selection.cursor = lt->cursor;
|
2001-02-23 16:10:03 +00:00
|
|
|
setState();
|
|
|
|
owner_->showState();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case LFUN_BREAKPARAGRAPHKEEPLAYOUT:
|
|
|
|
{
|
2001-05-29 09:50:02 +00:00
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
|
|
|
beforeChange(lt);
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->breakParagraph(bv_, 1);
|
2001-05-29 09:50:02 +00:00
|
|
|
update(lt,
|
|
|
|
BufferView::SELECT
|
|
|
|
| BufferView::FITCUR
|
|
|
|
| BufferView::CHANGE);
|
2001-05-31 02:23:46 +00:00
|
|
|
lt->selection.cursor = lt->cursor;
|
2001-02-23 16:10:03 +00:00
|
|
|
setState();
|
|
|
|
owner_->showState();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case LFUN_BREAKPARAGRAPH_SKIP:
|
|
|
|
{
|
|
|
|
// When at the beginning of a paragraph, remove
|
|
|
|
// indentation and add a "defskip" at the top.
|
|
|
|
// Otherwise, do the same as LFUN_BREAKPARAGRAPH.
|
2001-05-29 09:50:02 +00:00
|
|
|
LyXText * lt = bv_->getLyXText();
|
2001-02-23 16:10:03 +00:00
|
|
|
|
2001-05-29 09:50:02 +00:00
|
|
|
LyXCursor cursor = lt->cursor;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
2001-05-29 09:50:02 +00:00
|
|
|
beforeChange(lt);
|
2001-02-23 16:10:03 +00:00
|
|
|
if (cursor.pos() == 0) {
|
2001-06-25 00:06:33 +00:00
|
|
|
if (cursor.par()->params().spaceTop() == VSpace(VSpace::NONE)) {
|
|
|
|
lt->setParagraph
|
2001-02-23 16:10:03 +00:00
|
|
|
(bv_,
|
2001-06-25 00:06:33 +00:00
|
|
|
cursor.par()->params().lineTop(),
|
|
|
|
cursor.par()->params().lineBottom(),
|
|
|
|
cursor.par()->params().pagebreakTop(),
|
|
|
|
cursor.par()->params().pagebreakBottom(),
|
|
|
|
VSpace(VSpace::DEFSKIP), cursor.par()->params().spaceBottom(),
|
|
|
|
cursor.par()->params().align(),
|
|
|
|
cursor.par()->params().labelWidthString(), 1);
|
2001-02-23 16:10:03 +00:00
|
|
|
//update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->breakParagraph(bv_, 0);
|
2001-02-23 16:10:03 +00:00
|
|
|
//update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
|
|
|
|
}
|
|
|
|
|
2001-05-29 09:50:02 +00:00
|
|
|
update(lt,
|
|
|
|
BufferView::SELECT
|
|
|
|
| BufferView::FITCUR
|
|
|
|
| BufferView::CHANGE);
|
2001-05-31 02:23:46 +00:00
|
|
|
lt->selection.cursor = cursor;
|
2001-02-23 16:10:03 +00:00
|
|
|
setState();
|
|
|
|
owner_->showState();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_PARAGRAPH_SPACING:
|
|
|
|
{
|
2001-05-29 09:50:02 +00:00
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
Paragraph * par = lt->cursor.par();
|
|
|
|
Spacing::Space cur_spacing = par->params().spacing().getSpace();
|
2001-02-23 16:10:03 +00:00
|
|
|
float cur_value = 1.0;
|
|
|
|
if (cur_spacing == Spacing::Other) {
|
2001-06-25 00:06:33 +00:00
|
|
|
cur_value = par->params().spacing().getValue();
|
2001-02-23 16:10:03 +00:00
|
|
|
}
|
|
|
|
|
2001-06-29 11:54:39 +00:00
|
|
|
istringstream istr(argument.c_str());
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
string tmp;
|
|
|
|
istr >> tmp;
|
|
|
|
Spacing::Space new_spacing = cur_spacing;
|
|
|
|
float new_value = cur_value;
|
|
|
|
if (tmp.empty()) {
|
|
|
|
lyxerr << "Missing argument to `paragraph-spacing'"
|
|
|
|
<< endl;
|
|
|
|
} else if (tmp == "single") {
|
|
|
|
new_spacing = Spacing::Single;
|
|
|
|
} else if (tmp == "onehalf") {
|
|
|
|
new_spacing = Spacing::Onehalf;
|
|
|
|
} else if (tmp == "double") {
|
|
|
|
new_spacing = Spacing::Double;
|
|
|
|
} else if (tmp == "other") {
|
|
|
|
new_spacing = Spacing::Other;
|
|
|
|
float tmpval = 0.0;
|
|
|
|
istr >> tmpval;
|
|
|
|
lyxerr << "new_value = " << tmpval << endl;
|
|
|
|
if (tmpval != 0.0)
|
|
|
|
new_value = tmpval;
|
|
|
|
} else if (tmp == "default") {
|
|
|
|
new_spacing = Spacing::Default;
|
|
|
|
} else {
|
|
|
|
lyxerr << _("Unknown spacing argument: ")
|
|
|
|
<< argument << endl;
|
|
|
|
}
|
|
|
|
if (cur_spacing != new_spacing || cur_value != new_value) {
|
2001-06-25 00:06:33 +00:00
|
|
|
par->params().spacing(Spacing(new_spacing, new_value));
|
|
|
|
lt->redoParagraph(bv_);
|
2001-05-29 09:50:02 +00:00
|
|
|
update(lt,
|
|
|
|
BufferView::SELECT
|
|
|
|
| BufferView::FITCUR
|
|
|
|
| BufferView::CHANGE);
|
2001-02-23 16:10:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2001-07-19 08:52:59 +00:00
|
|
|
case LFUN_INSET_TOGGLE:
|
2001-07-11 12:10:46 +00:00
|
|
|
{
|
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
hideCursor();
|
|
|
|
beforeChange(lt);
|
|
|
|
update(lt, BufferView::SELECT|BufferView::FITCUR);
|
2001-07-19 08:52:59 +00:00
|
|
|
lt->toggleInset(bv_);
|
2001-07-11 12:10:46 +00:00
|
|
|
update(lt, BufferView::SELECT|BufferView::FITCUR);
|
|
|
|
setState();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2001-02-23 16:10:03 +00:00
|
|
|
case LFUN_QUOTE:
|
2001-07-23 09:11:14 +00:00
|
|
|
smartQuote();
|
2001-02-23 16:10:03 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_HTMLURL:
|
|
|
|
case LFUN_URL:
|
|
|
|
{
|
|
|
|
InsetCommandParams p;
|
|
|
|
if (action == LFUN_HTMLURL)
|
|
|
|
p.setCmdName("htmlurl");
|
|
|
|
else
|
|
|
|
p.setCmdName("url");
|
2001-07-23 09:11:14 +00:00
|
|
|
owner_->getDialogs()->createUrl(p.getAsString());
|
2001-02-23 16:10:03 +00:00
|
|
|
}
|
|
|
|
break;
|
2001-05-23 16:15:14 +00:00
|
|
|
|
2001-02-23 16:10:03 +00:00
|
|
|
case LFUN_INSERT_URL:
|
|
|
|
{
|
|
|
|
InsetCommandParams p;
|
2001-07-23 09:11:14 +00:00
|
|
|
p.setFromString(argument);
|
2001-02-23 16:10:03 +00:00
|
|
|
|
2001-07-23 09:11:14 +00:00
|
|
|
InsetUrl * inset = new InsetUrl(p);
|
2001-06-04 23:57:32 +00:00
|
|
|
if (!insertInset(inset))
|
2001-02-23 16:10:03 +00:00
|
|
|
delete inset;
|
|
|
|
else
|
2001-07-23 09:11:14 +00:00
|
|
|
updateInset(inset, true);
|
2001-02-23 16:10:03 +00:00
|
|
|
}
|
|
|
|
break;
|
2001-05-23 16:15:14 +00:00
|
|
|
|
2001-02-23 16:10:03 +00:00
|
|
|
case LFUN_INSET_TEXT:
|
2001-07-23 09:11:14 +00:00
|
|
|
insertAndEditInset(new InsetText);
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
case LFUN_INSET_ERT:
|
2001-07-23 09:11:14 +00:00
|
|
|
insertAndEditInset(new InsetERT);
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
case LFUN_INSET_EXTERNAL:
|
2001-07-23 09:11:14 +00:00
|
|
|
insertAndEditInset(new InsetExternal);
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
case LFUN_INSET_FOOTNOTE:
|
2001-07-23 09:11:14 +00:00
|
|
|
insertAndEditInset(new InsetFoot);
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
case LFUN_INSET_MARGINAL:
|
2001-07-23 09:11:14 +00:00
|
|
|
insertAndEditInset(new InsetMarginal);
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
case LFUN_INSET_MINIPAGE:
|
2001-07-23 09:11:14 +00:00
|
|
|
insertAndEditInset(new InsetMinipage);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_INSERT_NOTE:
|
|
|
|
insertAndEditInset(new InsetNote);
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
case LFUN_INSET_FLOAT:
|
|
|
|
// check if the float type exist
|
|
|
|
if (floatList.typeExist(argument)) {
|
2001-07-23 09:11:14 +00:00
|
|
|
insertAndEditInset(new InsetFloat(argument));
|
2001-02-23 16:10:03 +00:00
|
|
|
} else {
|
|
|
|
lyxerr << "Non-existant float type: "
|
|
|
|
<< argument << endl;
|
|
|
|
}
|
2001-07-23 09:11:14 +00:00
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
2001-05-31 16:48:26 +00:00
|
|
|
case LFUN_INSET_WIDE_FLOAT:
|
|
|
|
{
|
|
|
|
// check if the float type exist
|
|
|
|
if (floatList.typeExist(argument)) {
|
|
|
|
InsetFloat * new_inset = new InsetFloat(argument);
|
|
|
|
new_inset->wide(true);
|
2001-06-04 23:57:32 +00:00
|
|
|
if (insertInset(new_inset))
|
2001-07-20 14:18:48 +00:00
|
|
|
new_inset->edit(bv_);
|
2001-05-31 16:48:26 +00:00
|
|
|
else
|
|
|
|
delete new_inset;
|
|
|
|
} else {
|
|
|
|
lyxerr << "Non-existant float type: "
|
|
|
|
<< argument << endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2001-07-24 22:08:49 +00:00
|
|
|
#if 0
|
2001-02-23 16:10:03 +00:00
|
|
|
case LFUN_INSET_LIST:
|
2001-07-23 09:11:14 +00:00
|
|
|
insertAndEditInset(new InsetList);
|
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
case LFUN_INSET_THEOREM:
|
2001-07-23 09:11:14 +00:00
|
|
|
insertAndEditInset(new InsetTheorem);
|
|
|
|
break;
|
2001-07-24 22:08:49 +00:00
|
|
|
#endif
|
|
|
|
|
2001-02-23 16:10:03 +00:00
|
|
|
case LFUN_INSET_CAPTION:
|
|
|
|
{
|
|
|
|
// Do we have a locking inset...
|
|
|
|
if (bv_->theLockingInset()) {
|
|
|
|
lyxerr << "Locking inset code: "
|
2001-06-28 10:25:20 +00:00
|
|
|
<< static_cast<int>(bv_->theLockingInset()->lyxCode());
|
2001-02-23 16:10:03 +00:00
|
|
|
InsetCaption * new_inset = new InsetCaption;
|
|
|
|
new_inset->setOwner(bv_->theLockingInset());
|
2001-06-28 10:25:20 +00:00
|
|
|
new_inset->setAutoBreakRows(true);
|
|
|
|
new_inset->setDrawFrame(0, InsetText::LOCKED);
|
|
|
|
new_inset->setFrameColor(0, LColor::captionframe);
|
2001-06-04 23:57:32 +00:00
|
|
|
if (insertInset(new_inset))
|
2001-07-20 14:18:48 +00:00
|
|
|
new_inset->edit(bv_);
|
2001-02-23 16:10:03 +00:00
|
|
|
else
|
|
|
|
delete new_inset;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_INSET_TABULAR:
|
|
|
|
{
|
2001-06-04 23:57:32 +00:00
|
|
|
int r = 2;
|
|
|
|
int c = 2;
|
2001-02-23 16:10:03 +00:00
|
|
|
if (!argument.empty())
|
|
|
|
::sscanf(argument.c_str(),"%d%d", &r, &c);
|
|
|
|
InsetTabular * new_inset =
|
|
|
|
new InsetTabular(*buffer_, r, c);
|
2001-06-04 23:57:32 +00:00
|
|
|
bool const rtl =
|
2001-05-29 09:50:02 +00:00
|
|
|
bv_->getLyXText()->real_current_font.isRightToLeft();
|
2001-05-18 07:37:14 +00:00
|
|
|
if (!open_new_inset(new_inset, rtl))
|
2001-02-23 16:10:03 +00:00
|
|
|
delete new_inset;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
// --- lyxserver commands ----------------------------
|
|
|
|
|
|
|
|
case LFUN_CHARATCURSOR:
|
|
|
|
{
|
2001-06-25 00:06:33 +00:00
|
|
|
Paragraph::size_type pos = bv_->getLyXText()->cursor.pos();
|
2001-05-29 09:50:02 +00:00
|
|
|
if (pos < bv_->getLyXText()->cursor.par()->size())
|
2001-02-23 16:10:03 +00:00
|
|
|
owner_->getLyXFunc()->setMessage(
|
2001-06-25 00:06:33 +00:00
|
|
|
tostr(bv_->getLyXText()->cursor.par()->getChar(pos)));
|
2001-02-23 16:10:03 +00:00
|
|
|
else
|
|
|
|
owner_->getLyXFunc()->setMessage("EOF");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_GETXY:
|
2001-05-29 09:50:02 +00:00
|
|
|
owner_->getLyXFunc()->setMessage(tostr(bv_->getLyXText()->cursor.x())
|
2001-02-23 16:10:03 +00:00
|
|
|
+ ' '
|
2001-05-29 09:50:02 +00:00
|
|
|
+ tostr(bv_->getLyXText()->cursor.y()));
|
2001-02-23 16:10:03 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_SETXY:
|
|
|
|
{
|
2001-06-27 14:10:35 +00:00
|
|
|
int x = 0;
|
|
|
|
int y = 0;
|
|
|
|
if (::sscanf(argument.c_str(), " %d %d", &x, &y) != 2) {
|
|
|
|
lyxerr << "SETXY: Could not parse coordinates in '"
|
|
|
|
<< argument << std::endl;
|
|
|
|
}
|
2001-06-25 00:06:33 +00:00
|
|
|
bv_->getLyXText()->setCursorFromCoordinates(bv_, x, y);
|
2001-02-23 16:10:03 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_GETLAYOUT:
|
2001-05-29 09:50:02 +00:00
|
|
|
owner_->getLyXFunc()->setMessage(tostr(bv_->getLyXText()->cursor.par()->layout));
|
2001-02-23 16:10:03 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_GETFONT:
|
|
|
|
{
|
2001-05-29 09:50:02 +00:00
|
|
|
LyXFont & font = bv_->getLyXText()->current_font;
|
2001-02-23 16:10:03 +00:00
|
|
|
if (font.shape() == LyXFont::ITALIC_SHAPE)
|
|
|
|
owner_->getLyXFunc()->setMessage("E");
|
|
|
|
else if (font.shape() == LyXFont::SMALLCAPS_SHAPE)
|
|
|
|
owner_->getLyXFunc()->setMessage("N");
|
|
|
|
else
|
|
|
|
owner_->getLyXFunc()->setMessage("0");
|
|
|
|
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_GETLATEX:
|
|
|
|
{
|
2001-06-27 14:10:35 +00:00
|
|
|
#ifndef NO_LATEX
|
2001-05-29 09:50:02 +00:00
|
|
|
LyXFont & font = bv_->getLyXText()->current_font;
|
2001-02-23 16:10:03 +00:00
|
|
|
if (font.latex() == LyXFont::ON)
|
|
|
|
owner_->getLyXFunc()->setMessage("L");
|
|
|
|
else
|
2001-06-27 14:10:35 +00:00
|
|
|
#endif
|
2001-02-23 16:10:03 +00:00
|
|
|
owner_->getLyXFunc()->setMessage("0");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
// --- accented characters ---------------------------
|
|
|
|
|
|
|
|
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:
|
2001-05-16 07:53:23 +00:00
|
|
|
if (argument.empty()) {
|
|
|
|
// As always...
|
|
|
|
owner_->getLyXFunc()->handleKeyFunc(action);
|
|
|
|
} else {
|
|
|
|
owner_->getLyXFunc()->handleKeyFunc(action);
|
|
|
|
owner_->getIntl()->getTrans()
|
2001-05-29 09:50:02 +00:00
|
|
|
.TranslateAndInsert(argument[0], bv_->getLyXText());
|
|
|
|
update(bv_->getLyXText(),
|
2001-05-16 07:53:23 +00:00
|
|
|
BufferView::SELECT
|
|
|
|
| BufferView::FITCUR
|
|
|
|
| BufferView::CHANGE);
|
|
|
|
}
|
2001-02-23 16:10:03 +00:00
|
|
|
break;
|
|
|
|
|
2001-07-06 12:09:32 +00:00
|
|
|
case LFUN_MATH_MACRO:
|
|
|
|
mathDispatchMathMacro(bv_, argument);
|
|
|
|
break;
|
|
|
|
|
2001-02-23 16:10:03 +00:00
|
|
|
case LFUN_MATH_DELIM:
|
2001-07-06 12:09:32 +00:00
|
|
|
mathDispatchMathDelim(bv_, argument);
|
|
|
|
break;
|
|
|
|
|
2001-02-23 16:10:03 +00:00
|
|
|
case LFUN_INSERT_MATRIX:
|
2001-07-06 12:09:32 +00:00
|
|
|
mathDispatchInsertMatrix(bv_, argument);
|
|
|
|
break;
|
|
|
|
|
2001-02-23 16:10:03 +00:00
|
|
|
case LFUN_INSERT_MATH:
|
2001-07-06 12:09:32 +00:00
|
|
|
mathDispatchInsertMath(bv_, argument);
|
2001-02-23 16:10:03 +00:00
|
|
|
break;
|
|
|
|
|
2001-07-06 12:09:32 +00:00
|
|
|
case LFUN_MATH_IMPORT_SELECTION: // Imports LaTeX from the X selection
|
|
|
|
mathDispatchMathImportSelection(bv_, argument);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_MATH_DISPLAY: // Open or create a displayed math inset
|
|
|
|
mathDispatchMathDisplay(bv_, argument);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_MATH_MODE: // Open or create an inlined math inset
|
|
|
|
mathDispatchMathMode(bv_, argument);
|
|
|
|
break;
|
|
|
|
|
2001-02-23 16:10:03 +00:00
|
|
|
case LFUN_CITATION_INSERT:
|
|
|
|
{
|
|
|
|
InsetCommandParams p;
|
|
|
|
p.setFromString( argument );
|
|
|
|
|
|
|
|
InsetCitation * inset = new InsetCitation( p );
|
2001-06-04 23:57:32 +00:00
|
|
|
if (!insertInset(inset))
|
2001-02-23 16:10:03 +00:00
|
|
|
delete inset;
|
|
|
|
else
|
2001-06-04 23:57:32 +00:00
|
|
|
updateInset( inset, true );
|
2001-02-23 16:10:03 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_INSERT_BIBTEX:
|
|
|
|
{
|
|
|
|
// ale970405+lasgoutt970425
|
|
|
|
// The argument can be up to two tokens separated
|
|
|
|
// by a space. The first one is the bibstyle.
|
|
|
|
string const db = token(argument, ' ', 0);
|
|
|
|
string bibstyle = token(argument, ' ', 1);
|
|
|
|
if (bibstyle.empty())
|
|
|
|
bibstyle = "plain";
|
|
|
|
|
|
|
|
InsetCommandParams p( "BibTeX", db, bibstyle );
|
|
|
|
InsetBibtex * inset = new InsetBibtex(p);
|
|
|
|
|
2001-06-04 23:57:32 +00:00
|
|
|
if (insertInset(inset)) {
|
2001-02-23 16:10:03 +00:00
|
|
|
if (argument.empty())
|
2001-07-20 14:18:48 +00:00
|
|
|
inset->edit(bv_);
|
2001-02-23 16:10:03 +00:00
|
|
|
} else
|
|
|
|
delete inset;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
// BibTeX data bases
|
|
|
|
case LFUN_BIBDB_ADD:
|
|
|
|
{
|
|
|
|
InsetBibtex * inset =
|
|
|
|
static_cast<InsetBibtex*>(getInsetByCode(Inset::BIBTEX_CODE));
|
|
|
|
if (inset) {
|
|
|
|
inset->addDatabase(argument);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_BIBDB_DEL:
|
|
|
|
{
|
|
|
|
InsetBibtex * inset =
|
|
|
|
static_cast<InsetBibtex*>(getInsetByCode(Inset::BIBTEX_CODE));
|
|
|
|
if (inset) {
|
|
|
|
inset->delDatabase(argument);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_BIBTEX_STYLE:
|
|
|
|
{
|
|
|
|
InsetBibtex * inset =
|
|
|
|
static_cast<InsetBibtex*>(getInsetByCode(Inset::BIBTEX_CODE));
|
|
|
|
if (inset) {
|
|
|
|
inset->setOptions(argument);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_INDEX_CREATE:
|
|
|
|
{
|
2001-07-20 09:38:19 +00:00
|
|
|
InsetCommandParams p("index");
|
2001-07-27 16:07:33 +00:00
|
|
|
LyXText * lt = bv_->getLyXText();
|
2001-02-23 16:10:03 +00:00
|
|
|
|
|
|
|
if (argument.empty()) {
|
2001-07-30 10:50:37 +00:00
|
|
|
string const idxstring(bv_->getLyXText()->getStringToIndex(bv_));
|
|
|
|
if (!idxstring.empty())
|
|
|
|
p.setContents(idxstring);
|
|
|
|
else
|
2001-07-27 16:07:33 +00:00
|
|
|
break;
|
2001-02-23 16:10:03 +00:00
|
|
|
} else {
|
2001-07-20 09:38:19 +00:00
|
|
|
p.setContents(argument);
|
2001-02-23 16:10:03 +00:00
|
|
|
}
|
|
|
|
|
2001-07-20 09:38:19 +00:00
|
|
|
owner_->getDialogs()->createIndex(p.getAsString());
|
2001-02-23 16:10:03 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_INDEX_INSERT:
|
|
|
|
{
|
|
|
|
InsetCommandParams p;
|
|
|
|
p.setFromString(argument);
|
|
|
|
InsetIndex * inset = new InsetIndex(p);
|
|
|
|
|
2001-06-04 23:57:32 +00:00
|
|
|
if (!insertInset(inset))
|
2001-02-23 16:10:03 +00:00
|
|
|
delete inset;
|
|
|
|
else
|
2001-06-04 23:57:32 +00:00
|
|
|
updateInset(inset, true);
|
2001-02-23 16:10:03 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_INDEX_INSERT_LAST:
|
|
|
|
{
|
2001-07-30 10:50:37 +00:00
|
|
|
string const idxstring(bv_->getLyXText()->getStringToIndex(bv_));
|
|
|
|
if (!idxstring.empty()) {
|
|
|
|
owner_->message(_("Word `")
|
|
|
|
+ idxstring + _(("' indexed.")));
|
|
|
|
InsetCommandParams p("index", idxstring);
|
|
|
|
InsetIndex * inset = new InsetIndex(p);
|
|
|
|
|
|
|
|
if (!insertInset(inset))
|
|
|
|
delete inset;
|
|
|
|
else
|
|
|
|
updateInset(inset, true);
|
2001-07-27 16:07:33 +00:00
|
|
|
}
|
2001-02-23 16:10:03 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_INDEX_PRINT:
|
|
|
|
{
|
|
|
|
InsetCommandParams p("printindex");
|
|
|
|
Inset * inset = new InsetPrintIndex(p);
|
2001-06-04 23:57:32 +00:00
|
|
|
if (!insertInset(inset, "Standard"))
|
2001-02-23 16:10:03 +00:00
|
|
|
delete inset;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_PARENTINSERT:
|
|
|
|
{
|
|
|
|
lyxerr << "arg " << argument << endl;
|
|
|
|
InsetCommandParams p( "lyxparent", argument );
|
|
|
|
Inset * inset = new InsetParent(p, *buffer_);
|
2001-06-04 23:57:32 +00:00
|
|
|
if (!insertInset(inset, "Standard"))
|
2001-02-23 16:10:03 +00:00
|
|
|
delete inset;
|
|
|
|
}
|
2001-03-23 17:09:34 +00:00
|
|
|
|
2001-02-23 16:10:03 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_CHILD_INSERT:
|
|
|
|
{
|
2001-03-23 17:09:34 +00:00
|
|
|
InsetInclude::Params p;
|
2001-03-14 10:57:39 +00:00
|
|
|
p.cparams.setFromString(argument);
|
2001-03-23 17:09:34 +00:00
|
|
|
p.masterFilename_ = buffer_->fileName();
|
2001-02-23 16:10:03 +00:00
|
|
|
|
2001-03-14 10:57:39 +00:00
|
|
|
InsetInclude * inset = new InsetInclude(p);
|
2001-06-04 23:57:32 +00:00
|
|
|
if (!insertInset(inset))
|
2001-02-23 16:10:03 +00:00
|
|
|
delete inset;
|
2001-03-14 10:57:39 +00:00
|
|
|
else {
|
2001-06-04 23:57:32 +00:00
|
|
|
updateInset(inset, true);
|
2001-03-14 10:57:39 +00:00
|
|
|
bv_->owner()->getDialogs()->showInclude(inset);
|
|
|
|
}
|
2001-02-23 16:10:03 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2001-05-04 10:36:36 +00:00
|
|
|
case LFUN_FLOAT_LIST:
|
|
|
|
{
|
|
|
|
// We should check the argument for validity. (Lgb)
|
|
|
|
Inset * inset = new InsetFloatList(argument);
|
2001-06-04 23:57:32 +00:00
|
|
|
if (!insertInset(inset, "Standard"))
|
2001-05-04 10:36:36 +00:00
|
|
|
delete inset;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2001-07-29 10:42:11 +00:00
|
|
|
case LFUN_THESAURUS_ENTRY:
|
|
|
|
{
|
|
|
|
string arg = argument;
|
|
|
|
|
|
|
|
if (arg.empty()) {
|
|
|
|
arg = bv_->getLyXText()->selectionAsString(buffer_);
|
|
|
|
|
|
|
|
// FIXME
|
|
|
|
if (arg.size() > 100 || arg.empty()) {
|
|
|
|
// Get word or selection
|
|
|
|
bv_->getLyXText()->selectWordWhenUnderCursor(bv_, LyXText::WHOLE_WORD);
|
|
|
|
arg = bv_->getLyXText()->selectionAsString(buffer_);
|
|
|
|
// FIXME: where is getLyXText()->unselect(bv_) ?
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bv_->owner()->getDialogs()->showThesaurus(arg);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2001-02-23 16:10:03 +00:00
|
|
|
case LFUN_SELFINSERT:
|
|
|
|
{
|
2001-05-23 16:15:14 +00:00
|
|
|
if (argument.empty()) break;
|
|
|
|
|
|
|
|
/* Automatically delete the currently selected
|
|
|
|
* text and replace it with what is being
|
|
|
|
* typed in now. Depends on lyxrc settings
|
|
|
|
* "auto_region_delete", which defaults to
|
|
|
|
* true (on). */
|
|
|
|
|
2001-05-29 09:50:02 +00:00
|
|
|
LyXText * lt = bv_->getLyXText();
|
2001-05-23 16:15:14 +00:00
|
|
|
|
|
|
|
if (lyxrc.auto_region_delete) {
|
2001-05-31 02:23:46 +00:00
|
|
|
if (lt->selection.set()) {
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->cutSelection(bv_, false);
|
2001-05-23 16:15:14 +00:00
|
|
|
bv_->update(lt,
|
|
|
|
BufferView::SELECT
|
|
|
|
| BufferView::FITCUR
|
|
|
|
| BufferView::CHANGE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-07-23 09:11:14 +00:00
|
|
|
beforeChange(lt);
|
2001-05-23 16:15:14 +00:00
|
|
|
LyXFont const old_font(lt->real_current_font);
|
|
|
|
|
|
|
|
string::const_iterator cit = argument.begin();
|
|
|
|
string::const_iterator end = argument.end();
|
|
|
|
for (; cit != end; ++cit) {
|
|
|
|
if (greek_kb_flag) {
|
|
|
|
if (!math_insert_greek(bv_, *cit))
|
|
|
|
owner_->getIntl()->getTrans().TranslateAndInsert(*cit, lt);
|
|
|
|
} else
|
|
|
|
owner_->getIntl()->getTrans().TranslateAndInsert(*cit, lt);
|
|
|
|
}
|
|
|
|
|
|
|
|
bv_->update(lt,
|
|
|
|
BufferView::SELECT
|
|
|
|
| BufferView::FITCUR
|
|
|
|
| BufferView::CHANGE);
|
|
|
|
|
2001-05-31 02:23:46 +00:00
|
|
|
lt->selection.cursor = lt->cursor;
|
2001-05-23 16:15:14 +00:00
|
|
|
moveCursorUpdate(false);
|
|
|
|
|
|
|
|
// real_current_font.number can change so we need to
|
|
|
|
// update the minibuffer
|
|
|
|
if (old_font != lt->real_current_font)
|
|
|
|
owner_->showState();
|
|
|
|
//return string();
|
2001-02-23 16:10:03 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_DATE_INSERT: // jdblair: date-insert cmd
|
|
|
|
{
|
|
|
|
time_t now_time_t = time(NULL);
|
2001-05-23 16:15:14 +00:00
|
|
|
struct tm * now_tm = localtime(&now_time_t);
|
2001-02-23 16:10:03 +00:00
|
|
|
setlocale(LC_TIME, "");
|
|
|
|
string arg;
|
|
|
|
if (!argument.empty())
|
|
|
|
arg = argument;
|
|
|
|
else
|
|
|
|
arg = lyxrc.date_insert_format;
|
|
|
|
char datetmp[32];
|
|
|
|
int const datetmp_len =
|
|
|
|
::strftime(datetmp, 32, arg.c_str(), now_tm);
|
2001-05-31 02:23:46 +00:00
|
|
|
|
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
2001-02-23 16:10:03 +00:00
|
|
|
for (int i = 0; i < datetmp_len; i++) {
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->insertChar(bv_, datetmp[i]);
|
2001-05-31 02:23:46 +00:00
|
|
|
update(lt,
|
|
|
|
BufferView::SELECT
|
|
|
|
| BufferView::FITCUR
|
|
|
|
| BufferView::CHANGE);
|
2001-02-23 16:10:03 +00:00
|
|
|
}
|
|
|
|
|
2001-05-31 02:23:46 +00:00
|
|
|
lt->selection.cursor = lt->cursor;
|
2001-02-23 16:10:03 +00:00
|
|
|
moveCursorUpdate(false);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_UNKNOWN_ACTION:
|
2001-06-15 14:43:54 +00:00
|
|
|
owner_->getLyXFunc()->setErrorMessage(N_("Unknown function!"));
|
2001-02-23 16:10:03 +00:00
|
|
|
break;
|
2001-05-18 07:37:14 +00:00
|
|
|
|
2001-02-23 16:10:03 +00:00
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
} // end of switch
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2001-05-18 07:37:14 +00:00
|
|
|
|
|
|
|
|
2001-05-29 09:50:02 +00:00
|
|
|
void BufferView::Pimpl::newline()
|
|
|
|
{
|
|
|
|
if (available()) {
|
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
hideCursor();
|
|
|
|
update(lt,
|
|
|
|
BufferView::SELECT
|
|
|
|
| BufferView::FITCUR);
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->insertChar(bv_, Paragraph::META_NEWLINE);
|
2001-05-29 09:50:02 +00:00
|
|
|
update(lt,
|
|
|
|
BufferView::SELECT
|
|
|
|
| BufferView::FITCUR
|
|
|
|
| BufferView::CHANGE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::Pimpl::hfill()
|
|
|
|
{
|
|
|
|
if (available()) {
|
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
hideCursor();
|
|
|
|
update(lt,
|
|
|
|
BufferView::SELECT
|
|
|
|
| BufferView::FITCUR);
|
2001-06-25 00:06:33 +00:00
|
|
|
lt->insertChar(bv_, Paragraph::META_HFILL);
|
2001-05-29 09:50:02 +00:00
|
|
|
update(lt,
|
|
|
|
BufferView::SELECT
|
|
|
|
| BufferView::FITCUR
|
|
|
|
| BufferView::CHANGE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::Pimpl::protectedBlank(LyXText * lt)
|
|
|
|
{
|
|
|
|
if (available()) {
|
|
|
|
hideCursor();
|
|
|
|
update(lt, BufferView::SELECT|BufferView::FITCUR);
|
|
|
|
InsetSpecialChar * new_inset =
|
|
|
|
new InsetSpecialChar(InsetSpecialChar::PROTECTED_SEPARATOR);
|
2001-07-20 09:38:19 +00:00
|
|
|
#ifdef WITH_WARNINGS
|
|
|
|
#warning Why is this code different from specialChar() below? (JMarc)
|
|
|
|
// the code in specialChar is a generic version of what used to exist
|
|
|
|
// for other special chars. I did not merge this case because of the
|
|
|
|
// call to updateInset(), but what does it do?
|
|
|
|
#endif
|
2001-06-04 23:57:32 +00:00
|
|
|
if (!insertInset(new_inset))
|
2001-05-29 09:50:02 +00:00
|
|
|
delete new_inset;
|
|
|
|
else
|
2001-06-04 23:57:32 +00:00
|
|
|
updateInset(new_inset, true);
|
2001-05-29 09:50:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-07-20 14:18:48 +00:00
|
|
|
|
2001-07-20 09:38:19 +00:00
|
|
|
void BufferView::Pimpl::specialChar(InsetSpecialChar::Kind kind)
|
2001-05-29 09:50:02 +00:00
|
|
|
{
|
|
|
|
if (available()) {
|
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
|
|
|
hideCursor();
|
|
|
|
update(lt, BufferView::SELECT|BufferView::FITCUR);
|
|
|
|
InsetSpecialChar * new_inset =
|
2001-07-20 09:38:19 +00:00
|
|
|
new InsetSpecialChar(kind);
|
2001-06-04 23:57:32 +00:00
|
|
|
insertInset(new_inset);
|
2001-05-29 09:50:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-07-23 09:11:14 +00:00
|
|
|
void BufferView::Pimpl::smartQuote()
|
2001-05-18 07:37:14 +00:00
|
|
|
{
|
2001-07-23 09:11:14 +00:00
|
|
|
char c;
|
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
|
|
|
if (lt->cursor.pos())
|
|
|
|
c = lt->cursor.par()->getChar(lt->cursor.pos() - 1);
|
|
|
|
else
|
|
|
|
c = ' ';
|
|
|
|
|
|
|
|
hideCursor();
|
|
|
|
if (!insertInset(new InsetQuotes(c, bv_->buffer()->params)))
|
|
|
|
Dispatch(LFUN_SELFINSERT, "\"");
|
2001-05-18 07:37:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-07-23 09:11:14 +00:00
|
|
|
void BufferView::Pimpl::insertAndEditInset(Inset * inset)
|
|
|
|
{
|
|
|
|
if (insertInset(inset))
|
|
|
|
inset->edit(bv_);
|
|
|
|
else
|
|
|
|
delete inset;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-05-18 07:37:14 +00:00
|
|
|
// Open and lock an updatable inset
|
|
|
|
bool BufferView::Pimpl::open_new_inset(UpdatableInset * new_inset, bool behind)
|
|
|
|
{
|
2001-05-29 09:50:02 +00:00
|
|
|
LyXText * lt = bv_->getLyXText();
|
|
|
|
|
|
|
|
beforeChange(lt);
|
2001-07-06 15:57:54 +00:00
|
|
|
finishUndo();
|
2001-06-04 23:57:32 +00:00
|
|
|
if (!insertInset(new_inset)) {
|
2001-05-18 07:37:14 +00:00
|
|
|
delete new_inset;
|
|
|
|
return false;
|
|
|
|
}
|
2001-07-20 14:18:48 +00:00
|
|
|
new_inset->edit(bv_, !behind);
|
2001-05-18 07:37:14 +00:00
|
|
|
return true;
|
|
|
|
}
|
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))
|
2001-06-28 10:25:20 +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();
|
2001-06-04 23:57:32 +00:00
|
|
|
|
|
|
|
beforeChange(bv_->text);
|
|
|
|
if (!lout.empty()) {
|
|
|
|
update(bv_->text, BufferView::SELECT|BufferView::FITCUR);
|
2001-06-25 00:06:33 +00:00
|
|
|
bv_->text->breakParagraph(bv_);
|
2001-06-04 23:57:32 +00:00
|
|
|
update(bv_->text, BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
|
|
|
|
|
|
|
|
if (bv_->text->cursor.par()->size()) {
|
2001-06-25 00:06:33 +00:00
|
|
|
bv_->text->cursorLeft(bv_);
|
2001-06-04 23:57:32 +00:00
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
bv_->text->breakParagraph(bv_);
|
2001-06-04 23:57:32 +00:00
|
|
|
update(bv_->text, BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
|
|
|
|
}
|
|
|
|
|
|
|
|
pair<bool, LyXTextClass::size_type> lres =
|
|
|
|
textclasslist.NumberOfLayout(buffer_->params
|
|
|
|
.textclass, lout);
|
|
|
|
LyXTextClass::size_type lay;
|
|
|
|
if (lres.first != false) {
|
|
|
|
// layout found
|
|
|
|
lay = lres.second;
|
|
|
|
} else {
|
|
|
|
// layout not fount using default "Standard" (0)
|
|
|
|
lay = 0;
|
|
|
|
}
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
bv_->text->setLayout(bv_, lay);
|
2001-06-04 23:57:32 +00:00
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
bv_->text->setParagraph(bv_, 0, 0,
|
2001-06-04 23:57:32 +00:00
|
|
|
0, 0,
|
|
|
|
VSpace(VSpace::NONE), VSpace(VSpace::NONE),
|
|
|
|
LYX_ALIGN_LAYOUT,
|
|
|
|
string(),
|
|
|
|
0);
|
|
|
|
update(bv_->text, BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
|
2001-06-27 14:10:35 +00:00
|
|
|
#ifndef NO_LATEX
|
2001-06-04 23:57:32 +00:00
|
|
|
bv_->text->current_font.setLatex(LyXFont::OFF);
|
2001-06-27 14:10:35 +00:00
|
|
|
#endif
|
2001-06-04 23:57:32 +00:00
|
|
|
}
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
bv_->text->insertInset(bv_, inset);
|
2001-06-04 23:57:32 +00:00
|
|
|
update(bv_->text, BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
|
|
|
|
|
2001-07-06 15:57:54 +00:00
|
|
|
unFreezeUndo();
|
2001-06-04 23:57:32 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::Pimpl::updateInset(Inset * inset, bool mark_dirty)
|
|
|
|
{
|
|
|
|
if (!inset)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// first check for locking insets
|
|
|
|
if (bv_->theLockingInset()) {
|
|
|
|
if (bv_->theLockingInset() == inset) {
|
2001-06-25 00:06:33 +00:00
|
|
|
if (bv_->text->updateInset(bv_, inset)) {
|
2001-06-04 23:57:32 +00:00
|
|
|
update();
|
|
|
|
if (mark_dirty) {
|
|
|
|
buffer_->markDirty();
|
|
|
|
}
|
|
|
|
updateScrollbar();
|
|
|
|
return;
|
|
|
|
}
|
2001-06-28 10:25:20 +00:00
|
|
|
} else if (bv_->theLockingInset()->updateInsetInInset(bv_, inset)) {
|
2001-06-25 00:06:33 +00:00
|
|
|
if (bv_->text->updateInset(bv_,
|
2001-06-04 23:57:32 +00:00
|
|
|
bv_->theLockingInset())) {
|
|
|
|
update();
|
|
|
|
if (mark_dirty){
|
|
|
|
buffer_->markDirty();
|
|
|
|
}
|
|
|
|
updateScrollbar();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// then check the current buffer
|
|
|
|
if (available()) {
|
|
|
|
hideCursor();
|
|
|
|
update(bv_->text, BufferView::UPDATE);
|
2001-06-25 00:06:33 +00:00
|
|
|
if (bv_->text->updateInset(bv_, inset)) {
|
2001-06-04 23:57:32 +00:00
|
|
|
if (mark_dirty) {
|
|
|
|
update(bv_->text,
|
|
|
|
BufferView::SELECT
|
|
|
|
| BufferView::FITCUR
|
|
|
|
| BufferView::CHANGE);
|
|
|
|
} else {
|
|
|
|
update(bv_->text, SELECT);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::Pimpl::gotoInset(vector<Inset::Code> const & codes,
|
|
|
|
bool same_content)
|
|
|
|
{
|
|
|
|
if (!available()) return;
|
|
|
|
|
|
|
|
hideCursor();
|
|
|
|
beforeChange(bv_->text);
|
|
|
|
update(bv_->text, BufferView::SELECT|BufferView::FITCUR);
|
|
|
|
|
|
|
|
string contents;
|
|
|
|
if (same_content &&
|
2001-06-25 00:06:33 +00:00
|
|
|
bv_->text->cursor.par()->getChar(bv_->text->cursor.pos()) == Paragraph::META_INSET) {
|
|
|
|
Inset const * inset = bv_->text->cursor.par()->getInset(bv_->text->cursor.pos());
|
2001-06-28 10:25:20 +00:00
|
|
|
if (find(codes.begin(), codes.end(), inset->lyxCode())
|
2001-06-04 23:57:32 +00:00
|
|
|
!= codes.end())
|
|
|
|
contents =
|
|
|
|
static_cast<InsetCommand const *>(inset)->getContents();
|
|
|
|
}
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
if (!bv_->text->gotoNextInset(bv_, codes, contents)) {
|
2001-06-04 23:57:32 +00:00
|
|
|
if (bv_->text->cursor.pos()
|
2001-06-25 00:06:33 +00:00
|
|
|
|| bv_->text->cursor.par() != bv_->text->firstParagraph()) {
|
2001-06-04 23:57:32 +00:00
|
|
|
LyXCursor tmp = bv_->text->cursor;
|
2001-06-25 00:06:33 +00:00
|
|
|
bv_->text->cursor.par(bv_->text->firstParagraph());
|
2001-06-04 23:57:32 +00:00
|
|
|
bv_->text->cursor.pos(0);
|
2001-06-25 00:06:33 +00:00
|
|
|
if (!bv_->text->gotoNextInset(bv_, codes, contents)) {
|
2001-06-04 23:57:32 +00:00
|
|
|
bv_->text->cursor = tmp;
|
|
|
|
bv_->owner()->message(_("No more insets"));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
bv_->owner()->message(_("No more insets"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
update(bv_->text, BufferView::SELECT|BufferView::FITCUR);
|
|
|
|
bv_->text->selection.cursor = bv_->text->cursor;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BufferView::Pimpl::gotoInset(Inset::Code code, bool same_content)
|
|
|
|
{
|
|
|
|
gotoInset(vector<Inset::Code>(1, code), same_content);
|
|
|
|
}
|