2003-08-23 00:17:00 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file text3.C
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-08-20 13:00:25 +00:00
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* \author Asger Alstrup
|
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
|
|
|
|
* \author Alfredo Braunstein
|
|
|
|
|
* \author Angus Leeming
|
|
|
|
|
* \author John Levon
|
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
2002-08-20 13:00:25 +00:00
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
|
|
#include "lyxtext.h"
|
2003-09-06 18:38:02 +00:00
|
|
|
|
|
|
|
|
|
#include "buffer.h"
|
2003-09-09 11:24:33 +00:00
|
|
|
|
#include "bufferparams.h"
|
2002-08-20 13:00:25 +00:00
|
|
|
|
#include "BufferView.h"
|
2003-11-04 12:36:59 +00:00
|
|
|
|
#include "cursor.h"
|
2003-09-06 18:38:02 +00:00
|
|
|
|
#include "debug.h"
|
2003-10-29 10:47:21 +00:00
|
|
|
|
#include "dispatchresult.h"
|
2003-09-06 18:38:02 +00:00
|
|
|
|
#include "factory.h"
|
2002-08-20 13:00:25 +00:00
|
|
|
|
#include "funcrequest.h"
|
2003-09-06 18:38:02 +00:00
|
|
|
|
#include "gettext.h"
|
|
|
|
|
#include "intl.h"
|
|
|
|
|
#include "language.h"
|
2002-08-20 13:00:25 +00:00
|
|
|
|
#include "lyxrc.h"
|
2003-09-06 12:36:58 +00:00
|
|
|
|
#include "lyxrow.h"
|
2003-09-06 17:23:08 +00:00
|
|
|
|
#include "paragraph.h"
|
2003-11-10 18:15:55 +00:00
|
|
|
|
#include "paragraph_funcs.h"
|
2002-08-20 13:00:25 +00:00
|
|
|
|
#include "ParagraphParameters.h"
|
2003-10-14 13:01:49 +00:00
|
|
|
|
#include "undo.h"
|
2003-09-09 17:00:19 +00:00
|
|
|
|
#include "vspace.h"
|
2003-09-06 18:38:02 +00:00
|
|
|
|
|
2002-08-29 13:41:58 +00:00
|
|
|
|
#include "frontends/Dialogs.h"
|
2003-09-06 18:38:02 +00:00
|
|
|
|
#include "frontends/LyXView.h"
|
|
|
|
|
|
2002-08-27 12:32:04 +00:00
|
|
|
|
#include "insets/insetcommand.h"
|
2003-03-12 19:16:42 +00:00
|
|
|
|
#include "insets/insetnewline.h"
|
2003-09-06 18:38:02 +00:00
|
|
|
|
#include "insets/insetspecialchar.h"
|
|
|
|
|
#include "insets/insettext.h"
|
|
|
|
|
|
|
|
|
|
#include "support/lstrings.h"
|
|
|
|
|
#include "support/tostr.h"
|
|
|
|
|
#include "support/std_sstream.h"
|
2003-11-10 09:06:48 +00:00
|
|
|
|
|
|
|
|
|
#include "mathed/formulabase.h"
|
|
|
|
|
|
2003-09-05 22:17:02 +00:00
|
|
|
|
#include <clocale>
|
2002-08-27 13:39:27 +00:00
|
|
|
|
|
2003-09-09 22:13:45 +00:00
|
|
|
|
using bv_funcs::replaceSelection;
|
|
|
|
|
|
|
|
|
|
using lyx::pos_type;
|
|
|
|
|
|
|
|
|
|
using lyx::support::isStrUnsignedInt;
|
|
|
|
|
using lyx::support::strToUnsignedInt;
|
2003-06-30 23:56:22 +00:00
|
|
|
|
|
2002-08-20 17:31:23 +00:00
|
|
|
|
using std::endl;
|
2002-09-03 12:31:22 +00:00
|
|
|
|
using std::find;
|
2003-10-06 15:43:21 +00:00
|
|
|
|
using std::string;
|
2003-09-05 18:02:24 +00:00
|
|
|
|
using std::istringstream;
|
2002-09-03 12:31:22 +00:00
|
|
|
|
using std::vector;
|
2003-09-08 00:33:41 +00:00
|
|
|
|
|
|
|
|
|
|
2002-08-20 15:26:52 +00:00
|
|
|
|
extern string current_layout;
|
2002-08-28 10:45:38 +00:00
|
|
|
|
|
|
|
|
|
// the selection possible is needed, that only motion events are
|
2002-11-27 10:30:28 +00:00
|
|
|
|
// used, where the bottom press event was on the drawing area too
|
2002-08-28 10:45:38 +00:00
|
|
|
|
bool selection_possible = false;
|
|
|
|
|
|
2002-08-20 15:26:52 +00:00
|
|
|
|
|
2002-08-27 13:17:22 +00:00
|
|
|
|
namespace {
|
|
|
|
|
|
2003-11-10 09:06:48 +00:00
|
|
|
|
// globals...
|
|
|
|
|
LyXFont freefont(LyXFont::ALL_IGNORE);
|
|
|
|
|
bool toggleall = false;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void toggleAndShow(BufferView * bv, LyXText * text,
|
|
|
|
|
LyXFont const & font, bool toggleall = true)
|
|
|
|
|
{
|
|
|
|
|
if (!bv->available())
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
text->toggleFree(font, toggleall);
|
|
|
|
|
bv->update();
|
|
|
|
|
|
|
|
|
|
if (font.language() != ignore_language ||
|
|
|
|
|
font.number() != LyXFont::IGNORE) {
|
2004-01-13 14:13:51 +00:00
|
|
|
|
CursorSlice & cur = text->cursor();
|
2003-11-10 09:06:48 +00:00
|
|
|
|
Paragraph & par = *text->cursorPar();
|
|
|
|
|
text->bidi.computeTables(par, *bv->buffer(),
|
2004-01-13 10:37:38 +00:00
|
|
|
|
*par.getRow(cur.pos()));
|
|
|
|
|
if (cur.boundary() !=
|
2003-11-10 09:06:48 +00:00
|
|
|
|
text->bidi.isBoundary(*bv->buffer(), par,
|
2004-01-13 10:37:38 +00:00
|
|
|
|
cur.pos(),
|
2003-11-10 09:06:48 +00:00
|
|
|
|
text->real_current_font))
|
2004-01-13 10:37:38 +00:00
|
|
|
|
text->setCursor(cur.par(), cur.pos(),
|
|
|
|
|
false, !cur.boundary());
|
2003-11-10 09:06:48 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// Apply the contents of freefont at the current cursor location.
|
|
|
|
|
void apply_freefont(BufferView * bv, LyXText * text)
|
|
|
|
|
{
|
|
|
|
|
toggleAndShow(bv, text, freefont, toggleall);
|
|
|
|
|
bv->owner()->view_state_changed();
|
|
|
|
|
bv->owner()->message(_("Character set"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** Set the freefont using the contents of \param data dispatched from
|
|
|
|
|
* the frontends and apply it at the current cursor location.
|
|
|
|
|
*/
|
|
|
|
|
void update_and_apply_freefont(BufferView * bv, LyXText * text,
|
|
|
|
|
string const & data)
|
|
|
|
|
{
|
|
|
|
|
LyXFont font;
|
|
|
|
|
bool toggle;
|
|
|
|
|
if (bv_funcs::string2font(data, font, toggle)) {
|
|
|
|
|
freefont = font;
|
|
|
|
|
toggleall = toggle;
|
|
|
|
|
apply_freefont(bv, text);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void emph(BufferView * bv, LyXText * text)
|
|
|
|
|
{
|
|
|
|
|
LyXFont font(LyXFont::ALL_IGNORE);
|
|
|
|
|
font.setEmph(LyXFont::TOGGLE);
|
|
|
|
|
toggleAndShow(bv, text, font);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void bold(BufferView * bv, LyXText * text)
|
|
|
|
|
{
|
|
|
|
|
LyXFont font(LyXFont::ALL_IGNORE);
|
|
|
|
|
font.setSeries(LyXFont::BOLD_SERIES);
|
|
|
|
|
toggleAndShow(bv, text, font);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void noun(BufferView * bv, LyXText * text)
|
|
|
|
|
{
|
|
|
|
|
LyXFont font(LyXFont::ALL_IGNORE);
|
|
|
|
|
font.setNoun(LyXFont::TOGGLE);
|
|
|
|
|
toggleAndShow(bv, text, font);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void lang(BufferView * bv, string const & l, LyXText * text)
|
|
|
|
|
{
|
|
|
|
|
Language const * lang = languages.getLanguage(l);
|
|
|
|
|
if (!lang)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
LyXFont font(LyXFont::ALL_IGNORE);
|
|
|
|
|
font.setLanguage(lang);
|
|
|
|
|
toggleAndShow(bv, text, font);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void code(BufferView * bv, LyXText * text)
|
|
|
|
|
{
|
|
|
|
|
LyXFont font(LyXFont::ALL_IGNORE);
|
|
|
|
|
font.setFamily(LyXFont::TYPEWRITER_FAMILY); // no good
|
|
|
|
|
toggleAndShow(bv, text, font);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void sans(BufferView * bv, LyXText * text)
|
|
|
|
|
{
|
|
|
|
|
LyXFont font(LyXFont::ALL_IGNORE);
|
|
|
|
|
font.setFamily(LyXFont::SANS_FAMILY);
|
|
|
|
|
toggleAndShow(bv, text, font);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void roman(BufferView * bv, LyXText * text)
|
|
|
|
|
{
|
|
|
|
|
LyXFont font(LyXFont::ALL_IGNORE);
|
|
|
|
|
font.setFamily(LyXFont::ROMAN_FAMILY);
|
|
|
|
|
toggleAndShow(bv, text, font);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void styleReset(BufferView * bv, LyXText * text)
|
|
|
|
|
{
|
|
|
|
|
LyXFont font(LyXFont::ALL_INHERIT, ignore_language);
|
|
|
|
|
toggleAndShow(bv, text, font);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void underline(BufferView * bv, LyXText * text)
|
|
|
|
|
{
|
|
|
|
|
LyXFont font(LyXFont::ALL_IGNORE);
|
|
|
|
|
font.setUnderbar(LyXFont::TOGGLE);
|
|
|
|
|
toggleAndShow(bv, text, font);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void fontSize(BufferView * bv, string const & size, LyXText * text)
|
|
|
|
|
{
|
|
|
|
|
LyXFont font(LyXFont::ALL_IGNORE);
|
|
|
|
|
font.setLyXSize(size);
|
|
|
|
|
toggleAndShow(bv, text, font);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-11-13 13:43:44 +00:00
|
|
|
|
void moveCursor(BufferView * bv, bool selecting)
|
2002-08-27 14:43:49 +00:00
|
|
|
|
{
|
2004-01-14 14:16:11 +00:00
|
|
|
|
if (selecting || bv->selection().mark())
|
2004-01-14 17:21:39 +00:00
|
|
|
|
bv->setSelection();
|
2002-08-27 14:43:49 +00:00
|
|
|
|
|
2004-01-14 14:16:11 +00:00
|
|
|
|
if (!bv->selection().set())
|
2002-08-29 13:41:58 +00:00
|
|
|
|
bv->haveSelection(false);
|
2002-08-27 14:43:49 +00:00
|
|
|
|
bv->switchKeyMap();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void finishChange(BufferView * bv, bool selecting = false)
|
2002-08-27 13:17:22 +00:00
|
|
|
|
{
|
|
|
|
|
finishUndo();
|
2003-11-13 13:43:44 +00:00
|
|
|
|
moveCursor(bv, selecting);
|
2002-08-27 13:17:22 +00:00
|
|
|
|
bv->owner()->view_state_changed();
|
|
|
|
|
}
|
|
|
|
|
|
2002-08-28 12:09:19 +00:00
|
|
|
|
} // anon namespace
|
|
|
|
|
|
|
|
|
|
|
2003-11-10 09:06:48 +00:00
|
|
|
|
namespace bv_funcs {
|
|
|
|
|
|
|
|
|
|
string const freefont2string()
|
|
|
|
|
{
|
|
|
|
|
string data;
|
|
|
|
|
if (font2string(freefont, toggleall, data))
|
|
|
|
|
return data;
|
|
|
|
|
return string();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-11-10 18:15:55 +00:00
|
|
|
|
InsetOld * LyXText::checkInsetHit(int x, int y)
|
2002-08-28 12:09:19 +00:00
|
|
|
|
{
|
2003-11-10 18:15:55 +00:00
|
|
|
|
ParagraphList::iterator pit;
|
|
|
|
|
ParagraphList::iterator end;
|
2002-08-28 12:09:19 +00:00
|
|
|
|
|
2003-12-01 13:35:49 +00:00
|
|
|
|
getParsInRange(paragraphs(),
|
2003-11-21 08:35:15 +00:00
|
|
|
|
bv()->top_y() - yo_,
|
|
|
|
|
bv()->top_y() - yo_ + bv()->workHeight(),
|
2003-11-10 18:15:55 +00:00
|
|
|
|
pit, end);
|
2003-11-22 14:44:59 +00:00
|
|
|
|
|
2003-11-10 11:26:33 +00:00
|
|
|
|
lyxerr << "checkInsetHit: x: " << x << " y: " << y << endl;
|
|
|
|
|
for ( ; pit != end; ++pit) {
|
|
|
|
|
InsetList::iterator iit = pit->insetlist.begin();
|
|
|
|
|
InsetList::iterator iend = pit->insetlist.end();
|
|
|
|
|
for ( ; iit != iend; ++iit) {
|
|
|
|
|
InsetOld * inset = iit->inset;
|
2003-11-10 13:23:14 +00:00
|
|
|
|
//lyxerr << "examining inset " << inset
|
|
|
|
|
// << " xy: " << inset->x() << "/" << inset->y()
|
|
|
|
|
// << " x: " << inset->x() << "..." << inset->x() + inset->width()
|
|
|
|
|
// << " y: " << inset->y() - inset->ascent() << "..."
|
|
|
|
|
// << inset->y() + inset->descent()
|
|
|
|
|
// << endl;
|
2003-11-10 11:26:33 +00:00
|
|
|
|
if (x >= inset->x()
|
|
|
|
|
&& x <= inset->x() + inset->width()
|
|
|
|
|
&& y >= inset->y() - inset->ascent()
|
|
|
|
|
&& y <= inset->y() + inset->descent())
|
|
|
|
|
{
|
|
|
|
|
lyxerr << "Hit inset: " << inset << endl;
|
|
|
|
|
return inset;
|
|
|
|
|
}
|
|
|
|
|
}
|
2002-08-28 12:09:19 +00:00
|
|
|
|
}
|
2003-11-10 11:26:33 +00:00
|
|
|
|
lyxerr << "No inset hit. " << endl;
|
|
|
|
|
return 0;
|
2002-08-27 13:17:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-08-20 15:26:52 +00:00
|
|
|
|
|
2003-07-25 21:20:24 +00:00
|
|
|
|
bool LyXText::gotoNextInset(vector<InsetOld::Code> const & codes,
|
2003-03-18 13:05:08 +00:00
|
|
|
|
string const & contents)
|
2002-08-27 12:32:04 +00:00
|
|
|
|
{
|
2003-12-01 13:35:49 +00:00
|
|
|
|
ParagraphList::iterator end = paragraphs().end();
|
2003-10-09 10:52:12 +00:00
|
|
|
|
ParagraphList::iterator pit = cursorPar();
|
2004-01-13 10:37:38 +00:00
|
|
|
|
pos_type pos = cursor().pos();
|
2003-04-14 17:57:40 +00:00
|
|
|
|
|
2003-07-25 21:20:24 +00:00
|
|
|
|
InsetOld * inset;
|
2002-08-27 12:32:04 +00:00
|
|
|
|
do {
|
2003-04-14 17:57:40 +00:00
|
|
|
|
if (pos + 1 < pit->size()) {
|
|
|
|
|
++pos;
|
2002-08-27 12:32:04 +00:00
|
|
|
|
} else {
|
2003-04-14 17:57:40 +00:00
|
|
|
|
++pit;
|
|
|
|
|
pos = 0;
|
2002-08-27 12:32:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-04-14 17:57:40 +00:00
|
|
|
|
} while (pit != end &&
|
|
|
|
|
!(pit->isInset(pos) &&
|
|
|
|
|
(inset = pit->getInset(pos)) != 0 &&
|
|
|
|
|
find(codes.begin(), codes.end(), inset->lyxCode()) != codes.end() &&
|
|
|
|
|
(contents.empty() ||
|
|
|
|
|
static_cast<InsetCommand *>(pit->getInset(pos))->getContents()
|
|
|
|
|
== contents)));
|
|
|
|
|
|
2003-10-09 10:52:12 +00:00
|
|
|
|
if (pit == end)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
setCursor(parOffset(pit), pos, false);
|
|
|
|
|
return true;
|
2002-08-27 12:32:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-07-25 21:20:24 +00:00
|
|
|
|
void LyXText::gotoInset(vector<InsetOld::Code> const & codes,
|
2003-04-29 19:56:04 +00:00
|
|
|
|
bool same_content)
|
2002-08-27 12:32:04 +00:00
|
|
|
|
{
|
2004-01-14 17:21:39 +00:00
|
|
|
|
bv()->clearSelection();
|
2002-08-27 12:32:04 +00:00
|
|
|
|
|
|
|
|
|
string contents;
|
2004-01-13 10:37:38 +00:00
|
|
|
|
if (same_content && cursor().pos() < cursorPar()->size()
|
|
|
|
|
&& cursorPar()->isInset(cursor().pos())) {
|
|
|
|
|
InsetOld const * inset = cursorPar()->getInset(cursor().pos());
|
2002-08-27 12:32:04 +00:00
|
|
|
|
if (find(codes.begin(), codes.end(), inset->lyxCode())
|
|
|
|
|
!= codes.end())
|
|
|
|
|
contents = static_cast<InsetCommand const *>(inset)->getContents();
|
|
|
|
|
}
|
|
|
|
|
|
2003-03-17 16:25:00 +00:00
|
|
|
|
if (!gotoNextInset(codes, contents)) {
|
2004-01-13 10:37:38 +00:00
|
|
|
|
if (cursor().pos() || cursorPar() != paragraphs().begin()) {
|
2004-01-13 14:13:51 +00:00
|
|
|
|
CursorSlice tmp = cursor();
|
2004-01-13 10:37:38 +00:00
|
|
|
|
cursor().par(0);
|
|
|
|
|
cursor().pos(0);
|
2003-03-17 16:25:00 +00:00
|
|
|
|
if (!gotoNextInset(codes, contents)) {
|
2004-01-13 10:37:38 +00:00
|
|
|
|
cursor() = tmp;
|
2003-03-17 16:25:00 +00:00
|
|
|
|
bv()->owner()->message(_("No more insets"));
|
2002-08-27 12:32:04 +00:00
|
|
|
|
}
|
|
|
|
|
} else {
|
2003-03-17 16:25:00 +00:00
|
|
|
|
bv()->owner()->message(_("No more insets"));
|
2002-08-27 12:32:04 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2003-08-11 09:09:01 +00:00
|
|
|
|
bv()->update();
|
2004-01-13 18:08:13 +00:00
|
|
|
|
bv()->resetAnchor();
|
2002-08-27 12:32:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-07-25 21:20:24 +00:00
|
|
|
|
void LyXText::gotoInset(InsetOld::Code code, bool same_content)
|
2002-08-27 12:32:04 +00:00
|
|
|
|
{
|
2003-07-25 21:20:24 +00:00
|
|
|
|
gotoInset(vector<InsetOld::Code>(1, code), same_content);
|
2002-08-27 12:32:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-08-22 13:02:14 +00:00
|
|
|
|
|
2003-03-17 16:25:00 +00:00
|
|
|
|
void LyXText::cursorPrevious()
|
2002-08-22 13:02:14 +00:00
|
|
|
|
{
|
2003-03-19 14:45:22 +00:00
|
|
|
|
|
2003-11-20 10:38:12 +00:00
|
|
|
|
RowList::iterator crit = cursorRow();
|
2003-11-22 15:51:12 +00:00
|
|
|
|
ParagraphList::iterator cpar = cursorPar();
|
2003-08-14 11:30:11 +00:00
|
|
|
|
|
2003-11-21 08:35:15 +00:00
|
|
|
|
int x = bv()->x_target() - xo_;
|
|
|
|
|
int y = bv()->top_y() - yo_;
|
2003-11-20 10:38:12 +00:00
|
|
|
|
setCursorFromCoordinates(x, y);
|
2002-08-22 13:02:14 +00:00
|
|
|
|
|
2003-11-22 15:51:12 +00:00
|
|
|
|
if (cpar == cursorPar() && crit == cursorRow()) {
|
2002-12-20 14:28:28 +00:00
|
|
|
|
// we have a row which is taller than the workarea. The
|
|
|
|
|
// simplest solution is to move to the previous row instead.
|
2003-03-17 16:25:00 +00:00
|
|
|
|
cursorUp(true);
|
2003-10-23 15:44:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-03-17 16:25:00 +00:00
|
|
|
|
bv()->updateScrollbar();
|
2003-11-20 10:38:12 +00:00
|
|
|
|
finishUndo();
|
2002-08-22 13:02:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-03-17 16:25:00 +00:00
|
|
|
|
void LyXText::cursorNext()
|
2002-08-22 13:02:14 +00:00
|
|
|
|
{
|
2003-11-20 10:38:12 +00:00
|
|
|
|
RowList::iterator crit = cursorRow();
|
2003-11-22 15:51:12 +00:00
|
|
|
|
ParagraphList::iterator cpar = cursorPar();
|
2002-08-22 13:02:14 +00:00
|
|
|
|
|
2003-11-21 08:35:15 +00:00
|
|
|
|
int x = bv()->x_target() - xo_;
|
|
|
|
|
int y = bv()->top_y() + bv()->workHeight() - yo_;
|
2003-11-20 10:38:12 +00:00
|
|
|
|
setCursorFromCoordinates(x, y);
|
2002-08-22 13:02:14 +00:00
|
|
|
|
|
2003-11-22 15:51:12 +00:00
|
|
|
|
if (cpar == cursorPar() && crit == cursorRow()) {
|
2002-12-20 14:28:28 +00:00
|
|
|
|
// we have a row which is taller than the workarea. The
|
|
|
|
|
// simplest solution is to move to the next row instead.
|
2003-03-17 16:25:00 +00:00
|
|
|
|
cursorDown(true);
|
2003-10-24 09:45:07 +00:00
|
|
|
|
}
|
2003-11-22 14:44:59 +00:00
|
|
|
|
|
2003-03-17 16:25:00 +00:00
|
|
|
|
bv()->updateScrollbar();
|
2003-11-20 10:38:12 +00:00
|
|
|
|
finishUndo();
|
2002-08-22 13:02:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-01-17 09:57:50 +00:00
|
|
|
|
namespace {
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
void specialChar(LyXText * lt, BufferView * bv, InsetSpecialChar::Kind kind)
|
|
|
|
|
{
|
2003-08-11 09:09:01 +00:00
|
|
|
|
bv->update();
|
2002-08-20 13:00:25 +00:00
|
|
|
|
InsetSpecialChar * new_inset = new InsetSpecialChar(kind);
|
2003-07-15 06:51:47 +00:00
|
|
|
|
replaceSelection(lt);
|
2002-08-20 13:00:25 +00:00
|
|
|
|
if (!bv->insertInset(new_inset))
|
|
|
|
|
delete new_inset;
|
|
|
|
|
else
|
2003-11-10 13:23:14 +00:00
|
|
|
|
bv->update();
|
2002-08-20 13:00:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-02-18 11:47:16 +00:00
|
|
|
|
|
2004-01-15 17:34:44 +00:00
|
|
|
|
void doInsertInset(BufferView * bv, FuncRequest const & cmd,
|
|
|
|
|
bool edit, bool pastesel)
|
2003-01-17 09:57:50 +00:00
|
|
|
|
{
|
2004-01-15 17:34:44 +00:00
|
|
|
|
InsetOld * inset = createInset(bv, cmd);
|
2003-12-12 10:05:21 +00:00
|
|
|
|
if (!inset)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
bool gotsel = false;
|
2004-01-14 14:16:11 +00:00
|
|
|
|
if (bv->selection().set()) {
|
2003-12-12 10:05:21 +00:00
|
|
|
|
bv->owner()->dispatch(FuncRequest(LFUN_CUT));
|
|
|
|
|
gotsel = true;
|
2003-01-17 09:57:50 +00:00
|
|
|
|
}
|
2003-12-12 10:05:21 +00:00
|
|
|
|
if (bv->insertInset(inset)) {
|
|
|
|
|
if (edit)
|
|
|
|
|
inset->edit(bv, true);
|
|
|
|
|
if (gotsel && pastesel)
|
|
|
|
|
bv->owner()->dispatch(FuncRequest(LFUN_PASTE));
|
|
|
|
|
} else
|
|
|
|
|
delete inset;
|
2003-01-17 09:57:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-10-13 01:35:47 +00:00
|
|
|
|
} // anon namespace
|
|
|
|
|
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
2003-11-10 09:06:48 +00:00
|
|
|
|
void LyXText::number()
|
|
|
|
|
{
|
|
|
|
|
LyXFont font(LyXFont::ALL_IGNORE);
|
|
|
|
|
font.setNumber(LyXFont::TOGGLE);
|
|
|
|
|
toggleAndShow(bv(), this, font);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool LyXText::rtl() const
|
|
|
|
|
{
|
|
|
|
|
return cursorPar()->isRightToLeftPar(bv()->buffer()->params());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-01-15 17:34:44 +00:00
|
|
|
|
DispatchResult LyXText::dispatch(BufferView & view, FuncRequest const & cmd)
|
2002-08-20 13:00:25 +00:00
|
|
|
|
{
|
2003-11-10 09:06:48 +00:00
|
|
|
|
//lyxerr[Debug::ACTION] << "LyXText::dispatch: cmd: " << cmd << endl;
|
2002-08-22 15:04:27 +00:00
|
|
|
|
|
2004-01-15 17:34:44 +00:00
|
|
|
|
BufferView * bv = &view;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
switch (cmd.action) {
|
|
|
|
|
|
|
|
|
|
case LFUN_APPENDIX: {
|
2003-10-09 10:52:12 +00:00
|
|
|
|
ParagraphList::iterator pit = cursorPar();
|
2003-04-09 09:15:20 +00:00
|
|
|
|
bool start = !pit->params().startOfAppendix();
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
// ensure that we have only one start_of_appendix in this document
|
2003-12-01 13:35:49 +00:00
|
|
|
|
ParagraphList::iterator tmp = paragraphs().begin();
|
|
|
|
|
ParagraphList::iterator end = paragraphs().end();
|
2003-04-02 17:11:38 +00:00
|
|
|
|
|
|
|
|
|
for (; tmp != end; ++tmp) {
|
2002-10-30 21:02:40 +00:00
|
|
|
|
if (tmp->params().startOfAppendix()) {
|
2003-10-13 10:59:31 +00:00
|
|
|
|
recUndo(parOffset(tmp));
|
2002-10-30 21:02:40 +00:00
|
|
|
|
tmp->params().startOfAppendix(false);
|
2003-08-22 11:54:02 +00:00
|
|
|
|
redoParagraph(tmp);
|
2002-10-30 21:02:40 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
2003-10-13 10:59:31 +00:00
|
|
|
|
recUndo(parOffset(pit));
|
2003-04-09 09:15:20 +00:00
|
|
|
|
pit->params().startOfAppendix(start);
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
// we can set the refreshing parameters now
|
2003-03-17 16:25:00 +00:00
|
|
|
|
updateCounters();
|
2003-10-09 10:52:12 +00:00
|
|
|
|
redoParagraph(cursorPar());
|
2003-08-11 09:09:01 +00:00
|
|
|
|
bv->update();
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case LFUN_DELETE_WORD_FORWARD:
|
2004-01-14 17:21:39 +00:00
|
|
|
|
bv->clearSelection();
|
2003-03-17 16:25:00 +00:00
|
|
|
|
deleteWordForward();
|
2002-08-27 13:17:22 +00:00
|
|
|
|
finishChange(bv);
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
case LFUN_DELETE_WORD_BACKWARD:
|
2004-01-14 17:21:39 +00:00
|
|
|
|
bv->clearSelection();
|
2003-03-17 16:25:00 +00:00
|
|
|
|
deleteWordBackward();
|
2002-08-27 13:17:22 +00:00
|
|
|
|
finishChange(bv);
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
case LFUN_DELETE_LINE_FORWARD:
|
2004-01-14 17:21:39 +00:00
|
|
|
|
bv->clearSelection();
|
2003-03-17 16:25:00 +00:00
|
|
|
|
deleteLineForward();
|
2002-08-27 13:17:22 +00:00
|
|
|
|
finishChange(bv);
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
2002-08-20 17:31:23 +00:00
|
|
|
|
case LFUN_WORDRIGHT:
|
2004-01-14 14:16:11 +00:00
|
|
|
|
if (!bv->selection().mark())
|
2004-01-14 17:21:39 +00:00
|
|
|
|
bv->clearSelection();
|
2003-11-10 09:06:48 +00:00
|
|
|
|
if (rtl())
|
2003-03-17 16:25:00 +00:00
|
|
|
|
cursorLeftOneWord();
|
2002-08-20 13:00:25 +00:00
|
|
|
|
else
|
2003-03-17 16:25:00 +00:00
|
|
|
|
cursorRightOneWord();
|
2002-08-27 13:17:22 +00:00
|
|
|
|
finishChange(bv);
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
case LFUN_WORDLEFT:
|
2004-01-14 14:16:11 +00:00
|
|
|
|
if (!bv->selection().mark())
|
2004-01-14 17:21:39 +00:00
|
|
|
|
bv->clearSelection();
|
2003-11-10 09:06:48 +00:00
|
|
|
|
if (rtl())
|
2003-03-17 16:25:00 +00:00
|
|
|
|
cursorRightOneWord();
|
2002-08-20 13:00:25 +00:00
|
|
|
|
else
|
2003-03-17 16:25:00 +00:00
|
|
|
|
cursorLeftOneWord();
|
2002-08-27 13:17:22 +00:00
|
|
|
|
finishChange(bv);
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
case LFUN_BEGINNINGBUF:
|
2004-01-14 14:16:11 +00:00
|
|
|
|
if (!bv->selection().mark())
|
2004-01-14 17:21:39 +00:00
|
|
|
|
bv->clearSelection();
|
2003-03-17 16:25:00 +00:00
|
|
|
|
cursorTop();
|
2002-08-27 13:17:22 +00:00
|
|
|
|
finishChange(bv);
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
case LFUN_ENDBUF:
|
2004-01-14 14:16:11 +00:00
|
|
|
|
if (bv->selection().mark())
|
2004-01-14 17:21:39 +00:00
|
|
|
|
bv->clearSelection();
|
2003-03-17 16:25:00 +00:00
|
|
|
|
cursorBottom();
|
2002-08-27 13:17:22 +00:00
|
|
|
|
finishChange(bv);
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
case LFUN_RIGHTSEL:
|
2004-01-14 14:16:11 +00:00
|
|
|
|
if (!bv->selection().set())
|
2004-01-13 18:08:13 +00:00
|
|
|
|
bv->resetAnchor();
|
2003-11-10 09:06:48 +00:00
|
|
|
|
if (rtl())
|
2002-08-20 13:00:25 +00:00
|
|
|
|
cursorLeft(bv);
|
|
|
|
|
else
|
|
|
|
|
cursorRight(bv);
|
2002-08-27 13:17:22 +00:00
|
|
|
|
finishChange(bv, true);
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
case LFUN_LEFTSEL:
|
2004-01-14 14:16:11 +00:00
|
|
|
|
if (!bv->selection().set())
|
2004-01-13 18:08:13 +00:00
|
|
|
|
bv->resetAnchor();
|
2003-11-10 09:06:48 +00:00
|
|
|
|
if (rtl())
|
2002-08-20 13:00:25 +00:00
|
|
|
|
cursorRight(bv);
|
|
|
|
|
else
|
|
|
|
|
cursorLeft(bv);
|
2002-08-27 13:17:22 +00:00
|
|
|
|
finishChange(bv, true);
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
case LFUN_UPSEL:
|
2004-01-14 14:16:11 +00:00
|
|
|
|
if (!bv->selection().set())
|
2004-01-13 18:08:13 +00:00
|
|
|
|
bv->resetAnchor();
|
2003-03-17 16:25:00 +00:00
|
|
|
|
cursorUp(true);
|
2002-08-27 13:17:22 +00:00
|
|
|
|
finishChange(bv, true);
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
case LFUN_DOWNSEL:
|
2004-01-14 14:16:11 +00:00
|
|
|
|
if (!bv->selection().set())
|
2004-01-13 18:08:13 +00:00
|
|
|
|
bv->resetAnchor();
|
2003-03-17 16:25:00 +00:00
|
|
|
|
cursorDown(true);
|
2002-08-27 13:17:22 +00:00
|
|
|
|
finishChange(bv, true);
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
case LFUN_UP_PARAGRAPHSEL:
|
2004-01-14 14:16:11 +00:00
|
|
|
|
if (!bv->selection().set())
|
2004-01-13 18:08:13 +00:00
|
|
|
|
bv->resetAnchor();
|
2003-03-17 16:25:00 +00:00
|
|
|
|
cursorUpParagraph();
|
2002-08-27 13:17:22 +00:00
|
|
|
|
finishChange(bv, true);
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
case LFUN_DOWN_PARAGRAPHSEL:
|
2004-01-14 14:16:11 +00:00
|
|
|
|
if (!bv->selection().set())
|
2004-01-13 18:08:13 +00:00
|
|
|
|
bv->resetAnchor();
|
2003-03-17 16:25:00 +00:00
|
|
|
|
cursorDownParagraph();
|
2002-08-27 13:17:22 +00:00
|
|
|
|
finishChange(bv, true);
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
case LFUN_PRIORSEL:
|
2004-01-14 14:16:11 +00:00
|
|
|
|
if (!bv->selection().set())
|
2004-01-13 18:08:13 +00:00
|
|
|
|
bv->resetAnchor();
|
2003-03-17 16:25:00 +00:00
|
|
|
|
cursorPrevious();
|
2002-08-27 13:17:22 +00:00
|
|
|
|
finishChange(bv, true);
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
case LFUN_NEXTSEL:
|
2004-01-14 14:16:11 +00:00
|
|
|
|
if (!bv->selection().set())
|
2004-01-13 18:08:13 +00:00
|
|
|
|
bv->resetAnchor();
|
2003-03-17 16:25:00 +00:00
|
|
|
|
cursorNext();
|
2002-08-27 13:17:22 +00:00
|
|
|
|
finishChange(bv, true);
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
case LFUN_HOMESEL:
|
2004-01-14 14:16:11 +00:00
|
|
|
|
if (!bv->selection().set())
|
2004-01-13 18:08:13 +00:00
|
|
|
|
bv->resetAnchor();
|
2003-03-17 16:25:00 +00:00
|
|
|
|
cursorHome();
|
2002-08-27 13:17:22 +00:00
|
|
|
|
finishChange(bv, true);
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
case LFUN_ENDSEL:
|
2004-01-14 14:16:11 +00:00
|
|
|
|
if (!bv->selection().set())
|
2004-01-13 18:08:13 +00:00
|
|
|
|
bv->resetAnchor();
|
2003-03-17 16:25:00 +00:00
|
|
|
|
cursorEnd();
|
2002-08-27 13:17:22 +00:00
|
|
|
|
finishChange(bv, true);
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
case LFUN_WORDRIGHTSEL:
|
2004-01-14 14:16:11 +00:00
|
|
|
|
if (!bv->selection().set())
|
2004-01-14 09:33:14 +00:00
|
|
|
|
bv->resetAnchor();
|
2003-11-10 09:06:48 +00:00
|
|
|
|
if (rtl())
|
2003-03-17 16:25:00 +00:00
|
|
|
|
cursorLeftOneWord();
|
2002-08-20 13:00:25 +00:00
|
|
|
|
else
|
2003-03-17 16:25:00 +00:00
|
|
|
|
cursorRightOneWord();
|
2002-08-27 13:17:22 +00:00
|
|
|
|
finishChange(bv, true);
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
case LFUN_WORDLEFTSEL:
|
2004-01-14 14:16:11 +00:00
|
|
|
|
if (!bv->selection().set())
|
2004-01-14 09:33:14 +00:00
|
|
|
|
bv->resetAnchor();
|
2003-11-10 09:06:48 +00:00
|
|
|
|
if (rtl())
|
2003-03-17 16:25:00 +00:00
|
|
|
|
cursorRightOneWord();
|
2002-08-20 13:00:25 +00:00
|
|
|
|
else
|
2003-03-17 16:25:00 +00:00
|
|
|
|
cursorLeftOneWord();
|
2002-08-27 13:17:22 +00:00
|
|
|
|
finishChange(bv, true);
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
2002-09-11 14:48:19 +00:00
|
|
|
|
case LFUN_WORDSEL: {
|
2004-01-14 09:33:14 +00:00
|
|
|
|
selectWord(lyx::WHOLE_WORD);
|
2002-09-11 14:48:19 +00:00
|
|
|
|
finishChange(bv, true);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2003-11-17 14:51:36 +00:00
|
|
|
|
case LFUN_RIGHT:
|
2002-08-27 13:17:22 +00:00
|
|
|
|
finishChange(bv);
|
2003-11-17 14:51:36 +00:00
|
|
|
|
return moveRight();
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
2003-11-17 14:51:36 +00:00
|
|
|
|
case LFUN_LEFT:
|
2002-08-27 13:17:22 +00:00
|
|
|
|
finishChange(bv);
|
2003-11-17 14:51:36 +00:00
|
|
|
|
return moveLeft();
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
case LFUN_UP:
|
2002-08-27 13:17:22 +00:00
|
|
|
|
finishChange(bv);
|
2003-11-17 14:51:36 +00:00
|
|
|
|
return moveUp();
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
case LFUN_DOWN:
|
2002-08-27 13:17:22 +00:00
|
|
|
|
finishChange(bv);
|
2003-11-17 14:51:36 +00:00
|
|
|
|
return moveDown();
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
case LFUN_UP_PARAGRAPH:
|
2004-01-14 14:16:11 +00:00
|
|
|
|
if (!bv->selection().mark())
|
2004-01-14 17:21:39 +00:00
|
|
|
|
bv->clearSelection();
|
2003-03-17 16:25:00 +00:00
|
|
|
|
cursorUpParagraph();
|
2002-08-27 13:17:22 +00:00
|
|
|
|
finishChange(bv);
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
case LFUN_DOWN_PARAGRAPH:
|
2004-01-14 14:16:11 +00:00
|
|
|
|
if (!bv->selection().mark())
|
2004-01-14 17:21:39 +00:00
|
|
|
|
bv->clearSelection();
|
2003-03-17 16:25:00 +00:00
|
|
|
|
cursorDownParagraph();
|
2002-08-27 13:17:22 +00:00
|
|
|
|
finishChange(bv, false);
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
case LFUN_PRIOR:
|
2004-01-14 14:16:11 +00:00
|
|
|
|
if (!bv->selection().mark())
|
2004-01-14 17:21:39 +00:00
|
|
|
|
bv->clearSelection();
|
2002-08-27 13:17:22 +00:00
|
|
|
|
finishChange(bv, false);
|
2003-11-22 14:44:59 +00:00
|
|
|
|
if (cursorPar() == firstPar() && cursorRow() == firstRow())
|
2003-11-17 14:51:36 +00:00
|
|
|
|
return DispatchResult(false, FINISHED_UP);
|
|
|
|
|
cursorPrevious();
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
case LFUN_NEXT:
|
2004-01-14 14:16:11 +00:00
|
|
|
|
if (!bv->selection().mark())
|
2004-01-14 17:21:39 +00:00
|
|
|
|
bv->clearSelection();
|
2002-08-27 13:17:22 +00:00
|
|
|
|
finishChange(bv, false);
|
2003-11-22 14:44:59 +00:00
|
|
|
|
if (cursorPar() == lastPar() && cursorRow() == lastRow())
|
2003-11-17 14:51:36 +00:00
|
|
|
|
return DispatchResult(false, FINISHED_DOWN);
|
|
|
|
|
cursorNext();
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
case LFUN_HOME:
|
2004-01-14 14:16:11 +00:00
|
|
|
|
if (!bv->selection().mark())
|
2004-01-14 17:21:39 +00:00
|
|
|
|
bv->clearSelection();
|
2003-03-17 16:25:00 +00:00
|
|
|
|
cursorHome();
|
2002-08-27 13:17:22 +00:00
|
|
|
|
finishChange(bv, false);
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
case LFUN_END:
|
2004-01-14 14:16:11 +00:00
|
|
|
|
if (!bv->selection().mark())
|
2004-01-14 17:21:39 +00:00
|
|
|
|
bv->clearSelection();
|
2003-03-17 16:25:00 +00:00
|
|
|
|
cursorEnd();
|
2002-08-27 13:17:22 +00:00
|
|
|
|
finishChange(bv, false);
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
2003-03-12 19:16:42 +00:00
|
|
|
|
case LFUN_BREAKLINE: {
|
2003-11-13 13:43:44 +00:00
|
|
|
|
lyx::pos_type body = cursorPar()->beginOfBody();
|
2003-03-12 19:16:42 +00:00
|
|
|
|
|
|
|
|
|
// Not allowed by LaTeX (labels or empty par)
|
2004-01-13 10:37:38 +00:00
|
|
|
|
if (cursor().pos() <= body)
|
2003-03-12 19:16:42 +00:00
|
|
|
|
break;
|
|
|
|
|
|
2003-07-15 06:51:47 +00:00
|
|
|
|
replaceSelection(bv->getLyXText());
|
2003-03-17 16:25:00 +00:00
|
|
|
|
insertInset(new InsetNewline);
|
2003-11-13 13:43:44 +00:00
|
|
|
|
moveCursor(bv, false);
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
2003-03-12 19:16:42 +00:00
|
|
|
|
}
|
2002-08-20 15:26:52 +00:00
|
|
|
|
|
|
|
|
|
case LFUN_DELETE:
|
2004-01-14 14:16:11 +00:00
|
|
|
|
if (!bv->selection().set()) {
|
2003-03-17 16:25:00 +00:00
|
|
|
|
Delete();
|
2004-01-13 18:08:13 +00:00
|
|
|
|
bv->resetAnchor();
|
2002-08-20 15:26:52 +00:00
|
|
|
|
// It is possible to make it a lot faster still
|
|
|
|
|
// just comment out the line below...
|
|
|
|
|
} else {
|
2003-06-16 14:21:52 +00:00
|
|
|
|
cutSelection(true, false);
|
2002-08-20 15:26:52 +00:00
|
|
|
|
}
|
2003-11-13 13:43:44 +00:00
|
|
|
|
moveCursor(bv, false);
|
2002-08-20 15:26:52 +00:00
|
|
|
|
bv->owner()->view_state_changed();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LFUN_DELETE_SKIP:
|
|
|
|
|
// Reverse the effect of LFUN_BREAKPARAGRAPH_SKIP.
|
2004-01-14 14:16:11 +00:00
|
|
|
|
if (!bv->selection().set()) {
|
2004-01-13 10:37:38 +00:00
|
|
|
|
if (cursor().pos() == cursorPar()->size()) {
|
2002-08-20 15:26:52 +00:00
|
|
|
|
cursorRight(bv);
|
2003-11-28 15:53:34 +00:00
|
|
|
|
cursorLeft(bv);
|
|
|
|
|
Delete();
|
2004-01-13 18:08:13 +00:00
|
|
|
|
bv->resetAnchor();
|
2002-08-20 15:26:52 +00:00
|
|
|
|
} else {
|
2003-03-17 16:25:00 +00:00
|
|
|
|
Delete();
|
2004-01-13 18:08:13 +00:00
|
|
|
|
bv->resetAnchor();
|
2002-08-20 15:26:52 +00:00
|
|
|
|
}
|
2002-08-26 13:25:49 +00:00
|
|
|
|
} else {
|
2003-06-16 14:21:52 +00:00
|
|
|
|
cutSelection(true, false);
|
2002-08-26 13:25:49 +00:00
|
|
|
|
}
|
2003-08-11 09:09:01 +00:00
|
|
|
|
bv->update();
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
case LFUN_BACKSPACE:
|
2004-01-14 14:16:11 +00:00
|
|
|
|
if (!bv->selection().set()) {
|
2002-08-20 15:26:52 +00:00
|
|
|
|
if (bv->owner()->getIntl().getTransManager().backspace()) {
|
2003-03-17 16:25:00 +00:00
|
|
|
|
backspace();
|
2004-01-13 18:08:13 +00:00
|
|
|
|
bv->resetAnchor();
|
2002-08-20 15:26:52 +00:00
|
|
|
|
// It is possible to make it a lot faster still
|
|
|
|
|
// just comment out the line below...
|
|
|
|
|
}
|
2002-08-26 13:25:49 +00:00
|
|
|
|
} else {
|
2003-06-16 14:21:52 +00:00
|
|
|
|
cutSelection(true, false);
|
2002-08-26 13:25:49 +00:00
|
|
|
|
}
|
2002-08-20 15:26:52 +00:00
|
|
|
|
bv->owner()->view_state_changed();
|
|
|
|
|
bv->switchKeyMap();
|
2003-08-11 09:09:01 +00:00
|
|
|
|
bv->update();
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LFUN_BACKSPACE_SKIP:
|
|
|
|
|
// Reverse the effect of LFUN_BREAKPARAGRAPH_SKIP.
|
2004-01-14 14:16:11 +00:00
|
|
|
|
if (!bv->selection().set()) {
|
2004-01-13 14:13:51 +00:00
|
|
|
|
CursorSlice cur = cursor();
|
2003-11-28 15:53:34 +00:00
|
|
|
|
backspace();
|
2004-01-13 10:37:38 +00:00
|
|
|
|
anchor() = cur;
|
2002-08-26 13:25:49 +00:00
|
|
|
|
} else {
|
2003-06-16 14:21:52 +00:00
|
|
|
|
cutSelection(true, false);
|
2002-08-26 13:25:49 +00:00
|
|
|
|
}
|
2003-08-11 09:09:01 +00:00
|
|
|
|
bv->update();
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LFUN_BREAKPARAGRAPH:
|
2003-07-15 06:51:47 +00:00
|
|
|
|
replaceSelection(bv->getLyXText());
|
2003-09-09 09:47:59 +00:00
|
|
|
|
breakParagraph(bv->buffer()->paragraphs(), 0);
|
2003-08-11 09:09:01 +00:00
|
|
|
|
bv->update();
|
2004-01-13 18:08:13 +00:00
|
|
|
|
bv->resetAnchor();
|
2002-08-20 15:26:52 +00:00
|
|
|
|
bv->switchKeyMap();
|
|
|
|
|
bv->owner()->view_state_changed();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LFUN_BREAKPARAGRAPHKEEPLAYOUT:
|
2003-07-15 06:51:47 +00:00
|
|
|
|
replaceSelection(bv->getLyXText());
|
2003-09-09 09:47:59 +00:00
|
|
|
|
breakParagraph(bv->buffer()->paragraphs(), 1);
|
2003-08-11 09:09:01 +00:00
|
|
|
|
bv->update();
|
2004-01-13 18:08:13 +00:00
|
|
|
|
bv->resetAnchor();
|
2002-08-20 15:26:52 +00:00
|
|
|
|
bv->switchKeyMap();
|
|
|
|
|
bv->owner()->view_state_changed();
|
|
|
|
|
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.
|
2004-01-13 14:13:51 +00:00
|
|
|
|
CursorSlice cur = cursor();
|
2003-07-15 06:51:47 +00:00
|
|
|
|
replaceSelection(bv->getLyXText());
|
2002-08-20 15:26:52 +00:00
|
|
|
|
if (cur.pos() == 0) {
|
2003-10-10 09:01:23 +00:00
|
|
|
|
ParagraphParameters & params = getPar(cur)->params();
|
2003-11-28 15:53:34 +00:00
|
|
|
|
setParagraph(
|
|
|
|
|
params.spacing(),
|
|
|
|
|
params.align(),
|
|
|
|
|
params.labelWidthString(), 1);
|
|
|
|
|
} else {
|
2003-09-09 09:47:59 +00:00
|
|
|
|
breakParagraph(bv->buffer()->paragraphs(), 0);
|
2002-08-20 15:26:52 +00:00
|
|
|
|
}
|
2003-08-11 09:09:01 +00:00
|
|
|
|
bv->update();
|
2004-01-13 10:37:38 +00:00
|
|
|
|
anchor() = cur;
|
2002-08-20 15:26:52 +00:00
|
|
|
|
bv->switchKeyMap();
|
|
|
|
|
bv->owner()->view_state_changed();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case LFUN_PARAGRAPH_SPACING: {
|
2003-10-09 10:52:12 +00:00
|
|
|
|
ParagraphList::iterator pit = cursorPar();
|
2003-04-09 09:15:20 +00:00
|
|
|
|
Spacing::Space cur_spacing = pit->params().spacing().getSpace();
|
2002-08-20 15:26:52 +00:00
|
|
|
|
float cur_value = 1.0;
|
|
|
|
|
if (cur_spacing == Spacing::Other)
|
2003-04-09 09:15:20 +00:00
|
|
|
|
cur_value = pit->params().spacing().getValue();
|
2002-08-20 15:26:52 +00:00
|
|
|
|
|
2003-09-15 11:00:00 +00:00
|
|
|
|
istringstream is(cmd.argument);
|
2002-08-20 15:26:52 +00:00
|
|
|
|
string tmp;
|
|
|
|
|
is >> 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;
|
|
|
|
|
is >> 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: ")
|
|
|
|
|
<< cmd.argument << endl;
|
|
|
|
|
}
|
|
|
|
|
if (cur_spacing != new_spacing || cur_value != new_value) {
|
2003-04-09 09:15:20 +00:00
|
|
|
|
pit->params().spacing(Spacing(new_spacing, new_value));
|
2003-03-17 16:25:00 +00:00
|
|
|
|
redoParagraph();
|
2003-08-11 09:09:01 +00:00
|
|
|
|
bv->update();
|
2002-08-20 15:26:52 +00:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2003-11-13 20:16:34 +00:00
|
|
|
|
case LFUN_INSET_APPLY: {
|
|
|
|
|
string const name = cmd.getArg(0);
|
|
|
|
|
InsetBase * inset = bv->owner()->getDialogs().getOpenInset(name);
|
|
|
|
|
if (inset) {
|
2004-01-15 17:34:44 +00:00
|
|
|
|
FuncRequest fr(LFUN_INSET_MODIFY, cmd.argument);
|
|
|
|
|
inset->dispatch(*bv, fr);
|
2003-11-13 20:16:34 +00:00
|
|
|
|
} else {
|
2004-01-15 17:34:44 +00:00
|
|
|
|
FuncRequest fr(LFUN_INSET_INSERT, cmd.argument);
|
|
|
|
|
dispatch(*bv, fr);
|
2003-11-13 20:16:34 +00:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case LFUN_INSET_INSERT: {
|
2004-01-15 17:34:44 +00:00
|
|
|
|
InsetOld * inset = createInset(bv, cmd);
|
2003-12-12 10:05:21 +00:00
|
|
|
|
if (inset && !bv->insertInset(inset))
|
2003-11-13 20:16:34 +00:00
|
|
|
|
delete inset;
|
|
|
|
|
break;
|
2003-12-12 10:05:21 +00:00
|
|
|
|
}
|
2003-11-13 20:16:34 +00:00
|
|
|
|
|
2003-04-26 19:01:33 +00:00
|
|
|
|
case LFUN_INSET_SETTINGS:
|
2004-01-13 18:08:13 +00:00
|
|
|
|
bv->fullCursor().innerInset()->showInsetDialog(bv);
|
2003-04-26 19:01:33 +00:00
|
|
|
|
break;
|
|
|
|
|
|
2002-08-20 15:26:52 +00:00
|
|
|
|
case LFUN_INSET_TOGGLE:
|
2004-01-14 17:21:39 +00:00
|
|
|
|
bv->clearSelection();
|
2003-12-01 13:35:49 +00:00
|
|
|
|
if (!toggleInset())
|
|
|
|
|
return DispatchResult(false);
|
2003-08-11 09:09:01 +00:00
|
|
|
|
bv->update();
|
2002-08-20 15:26:52 +00:00
|
|
|
|
bv->switchKeyMap();
|
|
|
|
|
break;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
2003-05-22 10:40:57 +00:00
|
|
|
|
case LFUN_SPACE_INSERT:
|
2003-10-09 10:52:12 +00:00
|
|
|
|
if (cursorPar()->layout()->free_spacing)
|
2003-03-17 16:25:00 +00:00
|
|
|
|
insertChar(' ');
|
2003-08-11 09:09:01 +00:00
|
|
|
|
else
|
2004-01-15 17:34:44 +00:00
|
|
|
|
doInsertInset(bv, cmd, false, false);
|
2003-11-13 13:43:44 +00:00
|
|
|
|
moveCursor(bv, false);
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
case LFUN_HYPHENATION:
|
|
|
|
|
specialChar(this, bv, InsetSpecialChar::HYPHENATION);
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
case LFUN_LIGATURE_BREAK:
|
|
|
|
|
specialChar(this, bv, InsetSpecialChar::LIGATURE_BREAK);
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
case LFUN_LDOTS:
|
|
|
|
|
specialChar(this, bv, InsetSpecialChar::LDOTS);
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
case LFUN_END_OF_SENTENCE:
|
|
|
|
|
specialChar(this, bv, InsetSpecialChar::END_OF_SENTENCE);
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
case LFUN_MENU_SEPARATOR:
|
|
|
|
|
specialChar(this, bv, InsetSpecialChar::MENU_SEPARATOR);
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
case LFUN_UPCASE_WORD:
|
2003-03-17 16:25:00 +00:00
|
|
|
|
changeCase(LyXText::text_uppercase);
|
2003-08-11 09:09:01 +00:00
|
|
|
|
bv->update();
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
case LFUN_LOWCASE_WORD:
|
2003-03-17 16:25:00 +00:00
|
|
|
|
changeCase(LyXText::text_lowercase);
|
2003-08-11 09:09:01 +00:00
|
|
|
|
bv->update();
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
case LFUN_CAPITALIZE_WORD:
|
2003-03-17 16:25:00 +00:00
|
|
|
|
changeCase(LyXText::text_capitalization);
|
2003-08-11 09:09:01 +00:00
|
|
|
|
bv->update();
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
case LFUN_TRANSPOSE_CHARS:
|
2004-01-13 10:37:38 +00:00
|
|
|
|
recUndo(cursor().par());
|
2003-08-08 16:24:32 +00:00
|
|
|
|
redoParagraph();
|
2003-08-11 09:09:01 +00:00
|
|
|
|
bv->update();
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
2003-10-10 09:01:23 +00:00
|
|
|
|
case LFUN_PASTE:
|
2002-08-26 13:25:49 +00:00
|
|
|
|
cmd.message(_("Paste"));
|
2003-07-15 06:51:47 +00:00
|
|
|
|
replaceSelection(bv->getLyXText());
|
2003-06-17 15:33:49 +00:00
|
|
|
|
#warning FIXME Check if the arg is in the domain of available selections.
|
2003-10-10 09:01:23 +00:00
|
|
|
|
if (isStrUnsignedInt(cmd.argument))
|
|
|
|
|
pasteSelection(strToUnsignedInt(cmd.argument));
|
|
|
|
|
else
|
|
|
|
|
pasteSelection(0);
|
2004-01-14 17:21:39 +00:00
|
|
|
|
bv->clearSelection(); // bug 393
|
2003-08-11 09:09:01 +00:00
|
|
|
|
bv->update();
|
2002-08-26 13:25:49 +00:00
|
|
|
|
bv->switchKeyMap();
|
2003-10-10 09:01:23 +00:00
|
|
|
|
finishUndo();
|
2002-08-26 13:25:49 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LFUN_CUT:
|
2003-06-16 14:21:52 +00:00
|
|
|
|
cutSelection(true, true);
|
2002-08-26 13:25:49 +00:00
|
|
|
|
cmd.message(_("Cut"));
|
2003-08-11 09:09:01 +00:00
|
|
|
|
bv->update();
|
2002-08-26 13:25:49 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LFUN_COPY:
|
2003-03-17 16:25:00 +00:00
|
|
|
|
copySelection();
|
2002-08-26 13:25:49 +00:00
|
|
|
|
cmd.message(_("Copy"));
|
|
|
|
|
break;
|
|
|
|
|
|
2002-08-20 13:00:25 +00:00
|
|
|
|
case LFUN_BEGINNINGBUFSEL:
|
2003-12-01 13:35:49 +00:00
|
|
|
|
if (in_inset_)
|
2003-11-01 15:45:19 +00:00
|
|
|
|
return DispatchResult(false);
|
2004-01-14 14:16:11 +00:00
|
|
|
|
if (!bv->selection().set())
|
2004-01-13 18:08:13 +00:00
|
|
|
|
bv->resetAnchor();
|
2003-03-17 16:25:00 +00:00
|
|
|
|
cursorTop();
|
2002-08-27 13:17:22 +00:00
|
|
|
|
finishChange(bv, true);
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
case LFUN_ENDBUFSEL:
|
2003-12-01 13:35:49 +00:00
|
|
|
|
if (in_inset_)
|
2003-11-01 15:45:19 +00:00
|
|
|
|
return DispatchResult(false);
|
2004-01-14 14:16:11 +00:00
|
|
|
|
if (!bv->selection().set())
|
2004-01-13 18:08:13 +00:00
|
|
|
|
bv->resetAnchor();
|
2003-03-17 16:25:00 +00:00
|
|
|
|
cursorBottom();
|
2002-08-27 13:17:22 +00:00
|
|
|
|
finishChange(bv, true);
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
case LFUN_GETXY:
|
2003-12-15 11:36:19 +00:00
|
|
|
|
cmd.message(tostr(cursorX()) + ' ' + tostr(cursorY()));
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
case LFUN_SETXY: {
|
|
|
|
|
int x = 0;
|
|
|
|
|
int y = 0;
|
2003-09-15 11:00:00 +00:00
|
|
|
|
istringstream is(cmd.argument);
|
2002-08-21 06:50:42 +00:00
|
|
|
|
is >> x >> y;
|
|
|
|
|
if (!is)
|
2002-08-20 13:00:25 +00:00
|
|
|
|
lyxerr << "SETXY: Could not parse coordinates in '"
|
|
|
|
|
<< cmd.argument << std::endl;
|
2002-11-27 10:30:28 +00:00
|
|
|
|
else
|
2003-03-17 16:25:00 +00:00
|
|
|
|
setCursorFromCoordinates(x, y);
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case LFUN_GETFONT:
|
|
|
|
|
if (current_font.shape() == LyXFont::ITALIC_SHAPE)
|
|
|
|
|
cmd.message("E");
|
|
|
|
|
else if (current_font.shape() == LyXFont::SMALLCAPS_SHAPE)
|
|
|
|
|
cmd.message("N");
|
|
|
|
|
else
|
|
|
|
|
cmd.message("0");
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
case LFUN_GETLAYOUT:
|
2003-12-29 13:27:23 +00:00
|
|
|
|
cmd.message(cursorPar()->layout()->name());
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LFUN_LAYOUT: {
|
|
|
|
|
lyxerr[Debug::INFO] << "LFUN_LAYOUT: (arg) "
|
|
|
|
|
<< cmd.argument << endl;
|
|
|
|
|
|
|
|
|
|
// This is not the good solution to the empty argument
|
|
|
|
|
// problem, but it will hopefully suffice for 1.2.0.
|
|
|
|
|
// The correct solution would be to augument the
|
|
|
|
|
// function list/array with information about what
|
|
|
|
|
// functions needs arguments and their type.
|
|
|
|
|
if (cmd.argument.empty()) {
|
|
|
|
|
cmd.errorMessage(_("LyX function 'layout' needs an argument."));
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Derive layout number from given argument (string)
|
|
|
|
|
// and current buffer's textclass (number)
|
2003-09-09 09:47:59 +00:00
|
|
|
|
LyXTextClass const & tclass = bv->buffer()->params().getLyXTextClass();
|
2002-08-20 15:26:52 +00:00
|
|
|
|
bool hasLayout = tclass.hasLayout(cmd.argument);
|
|
|
|
|
string layout = cmd.argument;
|
|
|
|
|
|
|
|
|
|
// If the entry is obsolete, use the new one instead.
|
|
|
|
|
if (hasLayout) {
|
|
|
|
|
string const & obs = tclass[layout]->obsoleted_by();
|
|
|
|
|
if (!obs.empty())
|
|
|
|
|
layout = obs;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!hasLayout) {
|
|
|
|
|
cmd.errorMessage(string(N_("Layout ")) + cmd.argument +
|
|
|
|
|
N_(" not known"));
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool change_layout = (current_layout != layout);
|
2003-05-19 07:12:09 +00:00
|
|
|
|
|
2004-01-14 14:16:11 +00:00
|
|
|
|
if (!change_layout && bv->selection().set() &&
|
2004-01-14 15:09:01 +00:00
|
|
|
|
bv->selStart().par() != bv->selEnd().par())
|
2002-08-20 15:26:52 +00:00
|
|
|
|
{
|
2004-01-14 15:09:01 +00:00
|
|
|
|
ParagraphList::iterator spit = getPar(bv->selStart());
|
|
|
|
|
ParagraphList::iterator epit = boost::next(getPar(bv->selEnd()));
|
2003-04-09 09:15:20 +00:00
|
|
|
|
while (spit != epit) {
|
|
|
|
|
if (spit->layout()->name() != current_layout) {
|
2002-08-20 15:26:52 +00:00
|
|
|
|
change_layout = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2003-04-09 09:15:20 +00:00
|
|
|
|
++spit;
|
2002-08-20 15:26:52 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2003-05-19 07:12:09 +00:00
|
|
|
|
|
2002-08-20 15:26:52 +00:00
|
|
|
|
if (change_layout) {
|
|
|
|
|
current_layout = layout;
|
2003-03-17 16:25:00 +00:00
|
|
|
|
setLayout(layout);
|
2002-08-20 15:26:52 +00:00
|
|
|
|
bv->owner()->setLayout(layout);
|
2003-08-11 09:09:01 +00:00
|
|
|
|
bv->update();
|
2002-08-20 15:26:52 +00:00
|
|
|
|
bv->switchKeyMap();
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case LFUN_PASTESELECTION: {
|
2004-01-14 17:21:39 +00:00
|
|
|
|
bv->clearSelection();
|
2002-08-29 13:41:58 +00:00
|
|
|
|
string const clip = bv->getClipboard();
|
2002-08-20 15:26:52 +00:00
|
|
|
|
if (!clip.empty()) {
|
|
|
|
|
if (cmd.argument == "paragraph")
|
2003-03-17 16:25:00 +00:00
|
|
|
|
insertStringAsParagraphs(clip);
|
2002-08-20 17:31:23 +00:00
|
|
|
|
else
|
2003-03-17 16:25:00 +00:00
|
|
|
|
insertStringAsLines(clip);
|
2003-08-11 09:09:01 +00:00
|
|
|
|
bv->update();
|
2002-08-20 15:26:52 +00:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
2002-08-27 12:32:04 +00:00
|
|
|
|
case LFUN_GOTOERROR:
|
2003-07-25 21:20:24 +00:00
|
|
|
|
gotoInset(InsetOld::ERROR_CODE, false);
|
2002-08-27 12:32:04 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LFUN_GOTONOTE:
|
2003-07-25 21:20:24 +00:00
|
|
|
|
gotoInset(InsetOld::NOTE_CODE, false);
|
2002-08-27 12:32:04 +00:00
|
|
|
|
break;
|
|
|
|
|
|
2003-11-11 10:08:35 +00:00
|
|
|
|
case LFUN_REFERENCE_GOTO: {
|
2003-07-25 21:20:24 +00:00
|
|
|
|
vector<InsetOld::Code> tmp;
|
|
|
|
|
tmp.push_back(InsetOld::LABEL_CODE);
|
|
|
|
|
tmp.push_back(InsetOld::REF_CODE);
|
2003-03-17 16:25:00 +00:00
|
|
|
|
gotoInset(tmp, true);
|
2002-08-27 12:32:04 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2002-08-27 13:17:22 +00:00
|
|
|
|
case LFUN_QUOTE: {
|
2003-07-15 06:51:47 +00:00
|
|
|
|
replaceSelection(bv->getLyXText());
|
2003-10-09 10:52:12 +00:00
|
|
|
|
ParagraphList::iterator pit = cursorPar();
|
2004-01-13 10:37:38 +00:00
|
|
|
|
lyx::pos_type pos = cursor().pos();
|
2002-08-27 13:17:22 +00:00
|
|
|
|
char c;
|
|
|
|
|
if (!pos)
|
|
|
|
|
c = ' ';
|
2003-04-09 09:15:20 +00:00
|
|
|
|
else if (pit->isInset(pos - 1) && pit->getInset(pos - 1)->isSpace())
|
2002-08-27 13:17:22 +00:00
|
|
|
|
c = ' ';
|
|
|
|
|
else
|
2003-04-09 09:15:20 +00:00
|
|
|
|
c = pit->getChar(pos - 1);
|
2002-08-27 13:17:22 +00:00
|
|
|
|
|
2003-04-09 09:15:20 +00:00
|
|
|
|
LyXLayout_ptr const & style = pit->layout();
|
2002-08-27 13:17:22 +00:00
|
|
|
|
|
2003-09-09 09:47:59 +00:00
|
|
|
|
BufferParams const & bufparams = bv->buffer()->params();
|
2002-08-27 13:17:22 +00:00
|
|
|
|
if (style->pass_thru ||
|
2003-09-09 09:47:59 +00:00
|
|
|
|
pit->getFontSettings(bufparams,pos).language()->lang() == "hebrew" ||
|
|
|
|
|
!bv->insertInset(new InsetQuotes(c, bufparams)))
|
2002-08-27 13:17:22 +00:00
|
|
|
|
bv->owner()->dispatch(FuncRequest(LFUN_SELFINSERT, "\""));
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2002-08-28 10:45:38 +00:00
|
|
|
|
case LFUN_DATE_INSERT: {
|
2003-07-15 06:51:47 +00:00
|
|
|
|
replaceSelection(bv->getLyXText());
|
2002-08-27 13:39:27 +00:00
|
|
|
|
time_t now_time_t = time(NULL);
|
|
|
|
|
struct tm * now_tm = localtime(&now_time_t);
|
|
|
|
|
setlocale(LC_TIME, "");
|
|
|
|
|
string arg;
|
|
|
|
|
if (!cmd.argument.empty())
|
|
|
|
|
arg = cmd.argument;
|
|
|
|
|
else
|
|
|
|
|
arg = lyxrc.date_insert_format;
|
|
|
|
|
char datetmp[32];
|
|
|
|
|
int const datetmp_len =
|
|
|
|
|
::strftime(datetmp, 32, arg.c_str(), now_tm);
|
|
|
|
|
|
2003-08-11 09:09:01 +00:00
|
|
|
|
for (int i = 0; i < datetmp_len; i++)
|
2003-03-17 16:25:00 +00:00
|
|
|
|
insertChar(datetmp[i]);
|
2003-08-11 09:09:01 +00:00
|
|
|
|
|
2004-01-13 18:08:13 +00:00
|
|
|
|
bv->resetAnchor();
|
2003-11-13 13:43:44 +00:00
|
|
|
|
moveCursor(bv, false);
|
2002-08-27 13:39:27 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2002-08-28 10:45:38 +00:00
|
|
|
|
case LFUN_MOUSE_TRIPLE:
|
|
|
|
|
if (!bv->buffer())
|
|
|
|
|
break;
|
|
|
|
|
if (cmd.button() == mouse_button::button1) {
|
2003-11-21 11:16:37 +00:00
|
|
|
|
selection_possible = true;
|
2003-03-17 16:25:00 +00:00
|
|
|
|
cursorHome();
|
2004-01-13 18:08:13 +00:00
|
|
|
|
bv->resetAnchor();
|
2003-03-17 16:25:00 +00:00
|
|
|
|
cursorEnd();
|
2004-01-14 17:21:39 +00:00
|
|
|
|
bv->setSelection();
|
2004-01-14 14:16:11 +00:00
|
|
|
|
bv->haveSelection(bv->selection().set());
|
2002-08-28 10:45:38 +00:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LFUN_MOUSE_DOUBLE:
|
|
|
|
|
if (!bv->buffer())
|
|
|
|
|
break;
|
|
|
|
|
if (cmd.button() == mouse_button::button1) {
|
2003-11-21 11:16:37 +00:00
|
|
|
|
selection_possible = true;
|
2003-08-15 10:24:39 +00:00
|
|
|
|
selectWord(lyx::WHOLE_WORD_STRICT);
|
2004-01-14 14:16:11 +00:00
|
|
|
|
bv->haveSelection(bv->selection().set());
|
2002-08-28 10:45:38 +00:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
2003-11-10 09:06:48 +00:00
|
|
|
|
case LFUN_MOUSE_MOTION: {
|
2002-08-28 10:45:38 +00:00
|
|
|
|
// Only use motion with button 1
|
|
|
|
|
//if (ev.button() != mouse_button::button1)
|
|
|
|
|
// return false;
|
|
|
|
|
|
|
|
|
|
if (!bv->buffer())
|
|
|
|
|
break;
|
2003-11-17 20:28:11 +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
|
2002-08-28 10:45:38 +00:00
|
|
|
|
if (!selection_possible) {
|
2003-11-17 20:28:11 +00:00
|
|
|
|
lyxerr[Debug::ACTION] << "BufferView::Pimpl::"
|
|
|
|
|
"Dispatch: no selection possible\n";
|
2002-08-28 10:45:38 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
2003-11-17 20:28:11 +00:00
|
|
|
|
RowList::iterator cursorrow = cursorRow();
|
|
|
|
|
|
|
|
|
|
setCursorFromCoordinates(cmd.x, cmd.y);
|
2002-08-28 10:45:38 +00:00
|
|
|
|
|
|
|
|
|
// This is to allow jumping over large insets
|
2003-11-17 20:28:11 +00:00
|
|
|
|
// FIXME: shouldn't be top-text-specific
|
|
|
|
|
if (cursorrow == cursorRow() && !in_inset_) {
|
|
|
|
|
if (cmd.y - bv->top_y() >= bv->workHeight())
|
2003-11-21 08:35:15 +00:00
|
|
|
|
cursorDown(true);
|
2003-11-17 20:28:11 +00:00
|
|
|
|
else if (cmd.y - bv->top_y() < 0)
|
2003-11-21 08:35:15 +00:00
|
|
|
|
cursorUp(true);
|
2002-08-28 10:45:38 +00:00
|
|
|
|
}
|
2004-01-14 17:21:39 +00:00
|
|
|
|
bv->setSelection();
|
2002-08-28 10:45:38 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Single-click on work area
|
2003-11-06 16:43:12 +00:00
|
|
|
|
case LFUN_MOUSE_PRESS: {
|
2002-08-28 10:45:38 +00:00
|
|
|
|
if (!bv->buffer())
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
// ok ok, this is a hack (for xforms)
|
|
|
|
|
// We shouldn't go further down as we really should only do the
|
|
|
|
|
// scrolling and be done with this. Otherwise we may open some
|
|
|
|
|
// dialogs (Jug 20020424).
|
|
|
|
|
if (cmd.button() == mouse_button::button4) {
|
|
|
|
|
bv->scroll(-lyxrc.wheel_jump);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if (cmd.button() == mouse_button::button5) {
|
|
|
|
|
bv->scroll(lyxrc.wheel_jump);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Middle button press pastes if we have a selection
|
|
|
|
|
// We do this here as if the selection was inside an inset
|
|
|
|
|
// it could get cleared on the unlocking of the inset so
|
|
|
|
|
// we have to check this first
|
|
|
|
|
bool paste_internally = false;
|
2004-01-14 14:16:11 +00:00
|
|
|
|
if (cmd.button() == mouse_button::button2 && bv->selection().set()) {
|
2002-08-28 10:45:38 +00:00
|
|
|
|
bv->owner()->dispatch(FuncRequest(LFUN_COPY));
|
|
|
|
|
paste_internally = true;
|
|
|
|
|
}
|
|
|
|
|
|
2003-11-10 09:06:48 +00:00
|
|
|
|
selection_possible = true;
|
2002-08-28 10:45:38 +00:00
|
|
|
|
|
|
|
|
|
// Clear the selection
|
2004-01-14 17:21:39 +00:00
|
|
|
|
bv->clearSelection();
|
2003-11-22 14:44:59 +00:00
|
|
|
|
|
2002-08-28 10:45:38 +00:00
|
|
|
|
// Right click on a footnote flag opens float menu
|
|
|
|
|
if (cmd.button() == mouse_button::button3) {
|
|
|
|
|
selection_possible = false;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2003-11-17 20:28:11 +00:00
|
|
|
|
setCursorFromCoordinates(cmd.x, cmd.y);
|
2004-01-13 18:08:13 +00:00
|
|
|
|
bv->resetAnchor();
|
2002-08-28 10:45:38 +00:00
|
|
|
|
finishUndo();
|
2003-12-15 11:36:19 +00:00
|
|
|
|
bv->x_target(cursorX() + xo_);
|
2002-08-28 10:45:38 +00:00
|
|
|
|
|
|
|
|
|
if (bv->fitCursor())
|
|
|
|
|
selection_possible = false;
|
|
|
|
|
|
|
|
|
|
// Insert primary selection with middle mouse
|
|
|
|
|
// if there is a local selection in the current buffer,
|
|
|
|
|
// insert this
|
|
|
|
|
if (cmd.button() == mouse_button::button2) {
|
|
|
|
|
if (paste_internally)
|
|
|
|
|
bv->owner()->dispatch(FuncRequest(LFUN_PASTE));
|
|
|
|
|
else
|
|
|
|
|
bv->owner()->dispatch(FuncRequest(LFUN_PASTESELECTION, "paragraph"));
|
|
|
|
|
selection_possible = false;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2003-11-10 09:06:48 +00:00
|
|
|
|
case LFUN_MOUSE_RELEASE: {
|
2002-08-28 10:45:38 +00:00
|
|
|
|
if (!bv->buffer())
|
|
|
|
|
break;
|
2002-11-27 10:30:28 +00:00
|
|
|
|
|
2003-11-13 08:50:26 +00:00
|
|
|
|
// do nothing if we used the mouse wheel
|
2002-08-28 10:45:38 +00:00
|
|
|
|
if (cmd.button() == mouse_button::button4
|
|
|
|
|
|| cmd.button() == mouse_button::button5)
|
2003-11-13 08:50:26 +00:00
|
|
|
|
return DispatchResult(true, false);
|
2002-08-28 10:45:38 +00:00
|
|
|
|
|
|
|
|
|
selection_possible = false;
|
2003-11-22 14:44:59 +00:00
|
|
|
|
|
2002-08-28 10:45:38 +00:00
|
|
|
|
if (cmd.button() == mouse_button::button2)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
// finish selection
|
|
|
|
|
if (cmd.button() == mouse_button::button1)
|
2004-01-14 14:16:11 +00:00
|
|
|
|
bv->haveSelection(bv->selection().set());
|
2002-08-28 10:45:38 +00:00
|
|
|
|
|
|
|
|
|
bv->switchKeyMap();
|
|
|
|
|
bv->owner()->view_state_changed();
|
|
|
|
|
bv->owner()->updateMenubar();
|
|
|
|
|
bv->owner()->updateToolbar();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2002-08-20 13:00:25 +00:00
|
|
|
|
case LFUN_SELFINSERT: {
|
|
|
|
|
if (cmd.argument.empty())
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
// 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).
|
|
|
|
|
|
|
|
|
|
if (lyxrc.auto_region_delete) {
|
2004-01-14 14:16:11 +00:00
|
|
|
|
if (bv->selection().set())
|
2003-03-17 16:25:00 +00:00
|
|
|
|
cutSelection(false, false);
|
2002-08-29 13:41:58 +00:00
|
|
|
|
bv->haveSelection(false);
|
2002-08-20 13:00:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-01-14 17:21:39 +00:00
|
|
|
|
bv->clearSelection();
|
2003-08-19 16:46:47 +00:00
|
|
|
|
LyXFont const old_font = real_current_font;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
string::const_iterator cit = cmd.argument.begin();
|
|
|
|
|
string::const_iterator end = cmd.argument.end();
|
|
|
|
|
for (; cit != end; ++cit)
|
|
|
|
|
bv->owner()->getIntl().getTransManager().
|
|
|
|
|
TranslateAndInsert(*cit, this);
|
|
|
|
|
|
2004-01-13 18:08:13 +00:00
|
|
|
|
bv->resetAnchor();
|
2003-11-13 13:43:44 +00:00
|
|
|
|
moveCursor(bv, false);
|
2002-08-20 13:00:25 +00:00
|
|
|
|
|
|
|
|
|
// real_current_font.number can change so we need to
|
|
|
|
|
// update the minibuffer
|
|
|
|
|
if (old_font != real_current_font)
|
|
|
|
|
bv->owner()->view_state_changed();
|
2003-08-19 16:46:47 +00:00
|
|
|
|
bv->updateScrollbar();
|
2002-08-20 15:26:52 +00:00
|
|
|
|
break;
|
2002-08-20 13:00:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-11-11 13:59:39 +00:00
|
|
|
|
case LFUN_URL: {
|
|
|
|
|
InsetCommandParams p("url");
|
2003-02-27 13:26:07 +00:00
|
|
|
|
string const data = InsetCommandMailer::params2string("url", p);
|
2003-02-25 14:51:38 +00:00
|
|
|
|
bv->owner()->getDialogs().show("url", data, 0);
|
2002-08-29 13:41:58 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2003-11-11 13:59:39 +00:00
|
|
|
|
case LFUN_HTMLURL: {
|
|
|
|
|
InsetCommandParams p("htmlurl");
|
2003-02-27 13:26:07 +00:00
|
|
|
|
string const data = InsetCommandMailer::params2string("url", p);
|
2003-02-25 14:51:38 +00:00
|
|
|
|
bv->owner()->getDialogs().show("url", data, 0);
|
2002-08-29 13:41:58 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2003-11-13 20:16:34 +00:00
|
|
|
|
case LFUN_INSERT_LABEL: {
|
|
|
|
|
InsetCommandParams p("label");
|
|
|
|
|
string const data = InsetCommandMailer::params2string("label", p);
|
|
|
|
|
bv->owner()->getDialogs().show("label", data, 0);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2002-08-29 13:41:58 +00:00
|
|
|
|
|
2002-08-28 17:33:42 +00:00
|
|
|
|
#if 0
|
|
|
|
|
case LFUN_INSET_LIST:
|
|
|
|
|
case LFUN_INSET_THEOREM:
|
2003-01-17 09:57:50 +00:00
|
|
|
|
case LFUN_INSET_CAPTION:
|
2002-08-28 17:33:42 +00:00
|
|
|
|
#endif
|
|
|
|
|
case LFUN_INSERT_NOTE:
|
2003-11-12 14:38:26 +00:00
|
|
|
|
case LFUN_INSERT_CHARSTYLE:
|
2003-10-07 07:42:15 +00:00
|
|
|
|
case LFUN_INSERT_BOX:
|
2003-08-17 11:28:23 +00:00
|
|
|
|
case LFUN_INSERT_BRANCH:
|
2003-02-21 09:20:18 +00:00
|
|
|
|
case LFUN_INSERT_BIBITEM:
|
2002-08-28 17:33:42 +00:00
|
|
|
|
case LFUN_INSET_ERT:
|
|
|
|
|
case LFUN_INSET_FLOAT:
|
|
|
|
|
case LFUN_INSET_FOOTNOTE:
|
|
|
|
|
case LFUN_INSET_MARGINAL:
|
|
|
|
|
case LFUN_INSET_OPTARG:
|
|
|
|
|
case LFUN_INSET_WIDE_FLOAT:
|
2002-09-10 10:18:58 +00:00
|
|
|
|
case LFUN_INSET_WRAP:
|
2002-08-28 17:33:42 +00:00
|
|
|
|
case LFUN_TABULAR_INSERT:
|
2003-03-13 11:16:56 +00:00
|
|
|
|
case LFUN_ENVIRONMENT_INSERT:
|
2003-01-17 09:57:50 +00:00
|
|
|
|
// Open the inset, and move the current selection
|
|
|
|
|
// inside it.
|
2004-01-15 17:34:44 +00:00
|
|
|
|
doInsertInset(bv, cmd, true, true);
|
2003-01-17 09:57:50 +00:00
|
|
|
|
break;
|
|
|
|
|
|
2002-08-28 17:33:42 +00:00
|
|
|
|
case LFUN_INDEX_INSERT:
|
2003-01-17 09:57:50 +00:00
|
|
|
|
// Just open the inset
|
2004-01-15 17:34:44 +00:00
|
|
|
|
doInsertInset(bv, cmd, true, false);
|
2003-01-17 09:57:50 +00:00
|
|
|
|
break;
|
|
|
|
|
|
2002-11-27 10:30:28 +00:00
|
|
|
|
case LFUN_INDEX_PRINT:
|
2002-08-28 17:33:42 +00:00
|
|
|
|
case LFUN_TOC_INSERT:
|
2003-03-11 15:01:29 +00:00
|
|
|
|
case LFUN_HFILL:
|
2003-10-27 12:41:26 +00:00
|
|
|
|
case LFUN_INSERT_LINE:
|
|
|
|
|
case LFUN_INSERT_PAGEBREAK:
|
2003-01-17 09:57:50 +00:00
|
|
|
|
// do nothing fancy
|
2004-01-15 17:34:44 +00:00
|
|
|
|
doInsertInset(bv, cmd, false, false);
|
2002-08-28 17:33:42 +00:00
|
|
|
|
break;
|
|
|
|
|
|
2003-10-02 14:42:31 +00:00
|
|
|
|
case LFUN_DEPTH_MIN:
|
2003-11-26 09:48:21 +00:00
|
|
|
|
bv_funcs::changeDepth(bv, this, bv_funcs::DEC_DEPTH);
|
2003-10-02 14:42:31 +00:00
|
|
|
|
bv->update();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LFUN_DEPTH_PLUS:
|
2003-11-26 09:48:21 +00:00
|
|
|
|
bv_funcs::changeDepth(bv, this, bv_funcs::INC_DEPTH);
|
2003-10-02 14:42:31 +00:00
|
|
|
|
bv->update();
|
|
|
|
|
break;
|
|
|
|
|
|
2003-11-10 09:06:48 +00:00
|
|
|
|
case LFUN_MATH_DELIM:
|
|
|
|
|
case LFUN_MATH_DISPLAY:
|
|
|
|
|
case LFUN_INSERT_MATH:
|
|
|
|
|
case LFUN_MATH_LIMITS:
|
|
|
|
|
case LFUN_MATH_MACRO:
|
|
|
|
|
case LFUN_MATH_MUTATE:
|
|
|
|
|
case LFUN_MATH_SPACE:
|
|
|
|
|
case LFUN_MATH_IMPORT_SELECTION:
|
|
|
|
|
case LFUN_MATH_MODE:
|
|
|
|
|
case LFUN_MATH_NONUMBER:
|
|
|
|
|
case LFUN_MATH_NUMBER:
|
|
|
|
|
case LFUN_MATH_EXTERN:
|
|
|
|
|
case LFUN_MATH_SIZE:
|
2004-01-15 17:34:44 +00:00
|
|
|
|
mathDispatch(*bv, cmd);
|
2003-11-10 09:06:48 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LFUN_EMPH:
|
|
|
|
|
emph(bv, this);
|
|
|
|
|
bv->owner()->view_state_changed();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LFUN_BOLD:
|
|
|
|
|
bold(bv, this);
|
|
|
|
|
bv->owner()->view_state_changed();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LFUN_NOUN:
|
|
|
|
|
noun(bv, this);
|
|
|
|
|
bv->owner()->view_state_changed();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LFUN_CODE:
|
|
|
|
|
code(bv, this);
|
|
|
|
|
bv->owner()->view_state_changed();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LFUN_SANS:
|
|
|
|
|
sans(bv, this);
|
|
|
|
|
bv->owner()->view_state_changed();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LFUN_ROMAN:
|
|
|
|
|
roman(bv, this);
|
|
|
|
|
bv->owner()->view_state_changed();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LFUN_DEFAULT:
|
|
|
|
|
styleReset(bv, this);
|
|
|
|
|
bv->owner()->view_state_changed();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LFUN_UNDERLINE:
|
|
|
|
|
underline(bv, this);
|
|
|
|
|
bv->owner()->view_state_changed();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LFUN_FONT_SIZE:
|
|
|
|
|
fontSize(bv, cmd.argument, this);
|
|
|
|
|
bv->owner()->view_state_changed();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LFUN_LANGUAGE:
|
|
|
|
|
lang(bv, cmd.argument, this);
|
|
|
|
|
bv->switchKeyMap();
|
|
|
|
|
bv->owner()->view_state_changed();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LFUN_FREEFONT_APPLY:
|
|
|
|
|
apply_freefont(bv, this);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LFUN_FREEFONT_UPDATE:
|
|
|
|
|
update_and_apply_freefont(bv, this, cmd.argument);
|
|
|
|
|
break;
|
2003-11-22 14:44:59 +00:00
|
|
|
|
|
2003-11-10 09:06:48 +00:00
|
|
|
|
case LFUN_FINISHED_LEFT:
|
|
|
|
|
lyxerr << "swallow LFUN_FINISHED_LEFT" << endl;
|
|
|
|
|
if (rtl())
|
2003-11-18 11:39:30 +00:00
|
|
|
|
cursorRight(true);
|
2003-11-10 09:06:48 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LFUN_FINISHED_RIGHT:
|
|
|
|
|
lyxerr << "swallow LFUN_FINISHED_RIGHT" << endl;
|
|
|
|
|
if (!rtl())
|
2003-11-18 11:39:30 +00:00
|
|
|
|
cursorRight(true);
|
2003-11-10 09:06:48 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LFUN_FINISHED_UP:
|
|
|
|
|
lyxerr << "swallow LFUN_FINISHED_UP" << endl;
|
2003-11-20 10:38:12 +00:00
|
|
|
|
cursorUp(true);
|
2003-11-10 09:06:48 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case LFUN_FINISHED_DOWN:
|
|
|
|
|
lyxerr << "swallow LFUN_FINISHED_DOWN" << endl;
|
2003-11-20 10:38:12 +00:00
|
|
|
|
cursorDown(true);
|
2003-11-10 09:06:48 +00:00
|
|
|
|
break;
|
|
|
|
|
|
2002-08-20 13:00:25 +00:00
|
|
|
|
default:
|
2003-11-01 15:45:19 +00:00
|
|
|
|
return DispatchResult(false);
|
2002-08-20 13:00:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-11-03 19:52:47 +00:00
|
|
|
|
return DispatchResult(true, true);
|
2002-08-20 13:00:25 +00:00
|
|
|
|
}
|