mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-11 03:03:06 +00:00
fix #1073
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6843 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
795e9a7586
commit
c7d0b70e7c
@ -573,12 +573,16 @@ dispatch_result InsetFormulaBase::localDispatch(FuncRequest const & cmd)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
case LFUN_PASTE:
|
case LFUN_PASTE: {
|
||||||
|
int n = 0;
|
||||||
|
istringstream is(cmd.argument.c_str());
|
||||||
|
is >> n;
|
||||||
if (was_macro)
|
if (was_macro)
|
||||||
mathcursor->macroModeClose();
|
mathcursor->macroModeClose();
|
||||||
bv->lockedInsetStoreUndo(Undo::EDIT);
|
bv->lockedInsetStoreUndo(Undo::EDIT);
|
||||||
mathcursor->selPaste();
|
mathcursor->selPaste(n);
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
case LFUN_CUT:
|
case LFUN_CUT:
|
||||||
bv->lockedInsetStoreUndo(Undo::DELETE);
|
bv->lockedInsetStoreUndo(Undo::DELETE);
|
||||||
|
@ -21,6 +21,7 @@
|
|||||||
|
|
||||||
#include "support/lstrings.h"
|
#include "support/lstrings.h"
|
||||||
#include "support/LAssert.h"
|
#include "support/LAssert.h"
|
||||||
|
#include "support/limited_stack.h"
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
#include "frontends/Painter.h"
|
#include "frontends/Painter.h"
|
||||||
#include "math_cursor.h"
|
#include "math_cursor.h"
|
||||||
@ -58,7 +59,7 @@ using std::isalpha;
|
|||||||
|
|
||||||
|
|
||||||
// matheds own cut buffer
|
// matheds own cut buffer
|
||||||
string theCutBuffer;
|
limited_stack<string> theCutBuffer;
|
||||||
|
|
||||||
|
|
||||||
MathCursor::MathCursor(InsetFormulaBase * formula, bool front)
|
MathCursor::MathCursor(InsetFormulaBase * formula, bool front)
|
||||||
@ -544,10 +545,10 @@ void MathCursor::selCopy()
|
|||||||
{
|
{
|
||||||
dump("selCopy");
|
dump("selCopy");
|
||||||
if (selection_) {
|
if (selection_) {
|
||||||
theCutBuffer = grabSelection();
|
theCutBuffer.push(grabSelection());
|
||||||
selection_ = false;
|
selection_ = false;
|
||||||
} else {
|
} else {
|
||||||
theCutBuffer.erase();
|
//theCutBuffer.erase();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -555,7 +556,7 @@ void MathCursor::selCopy()
|
|||||||
void MathCursor::selCut()
|
void MathCursor::selCut()
|
||||||
{
|
{
|
||||||
dump("selCut");
|
dump("selCut");
|
||||||
theCutBuffer = grabAndEraseSelection();
|
theCutBuffer.push(grabAndEraseSelection());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -569,11 +570,12 @@ void MathCursor::selDel()
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void MathCursor::selPaste()
|
void MathCursor::selPaste(int n)
|
||||||
{
|
{
|
||||||
dump("selPaste");
|
dump("selPaste");
|
||||||
selClearOrDel();
|
selClearOrDel();
|
||||||
paste(theCutBuffer);
|
if (n < theCutBuffer.size())
|
||||||
|
paste(theCutBuffer[n]);
|
||||||
//grabSelection();
|
//grabSelection();
|
||||||
selection_ = false;
|
selection_ = false;
|
||||||
}
|
}
|
||||||
@ -1239,18 +1241,8 @@ bool MathCursor::interpret(char c)
|
|||||||
return pos() != size();
|
return pos() != size();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (c == '#') {
|
if (c == '{' || c == '}' || c == '#' || c == '&' || c == '$') {
|
||||||
insert(c);
|
createMathInset(string(1, c));
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (c == '{' || c == '}') {
|
|
||||||
niceInsert(createMathInset(string(1, c)));
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (c == '$') {
|
|
||||||
insert(createMathInset("$"));
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -149,8 +149,8 @@ public:
|
|||||||
void selCut();
|
void selCut();
|
||||||
///
|
///
|
||||||
void selDel();
|
void selDel();
|
||||||
///
|
/// pastes n-th element of cut buffer
|
||||||
void selPaste();
|
void selPaste(int n);
|
||||||
///
|
///
|
||||||
void selHandle(bool);
|
void selHandle(bool);
|
||||||
///
|
///
|
||||||
|
@ -86,6 +86,7 @@ namespace {
|
|||||||
|
|
||||||
MathInset::mode_type asMode(MathInset::mode_type oldmode, string const & str)
|
MathInset::mode_type asMode(MathInset::mode_type oldmode, string const & str)
|
||||||
{
|
{
|
||||||
|
lyxerr << "handling mode: '" << str << "'\n";
|
||||||
if (str == "mathmode")
|
if (str == "mathmode")
|
||||||
return MathInset::MATH_MODE;
|
return MathInset::MATH_MODE;
|
||||||
if (str == "textmode" || str == "forcetext")
|
if (str == "textmode" || str == "forcetext")
|
||||||
@ -601,6 +602,8 @@ void Parser::parse1(MathGridInset & grid, unsigned flags,
|
|||||||
grid.asHullInset()->numbered(cellrow, numbered);
|
grid.asHullInset()->numbered(cellrow, numbered);
|
||||||
|
|
||||||
//dump();
|
//dump();
|
||||||
|
//lyxerr << " flags: " << flags << "\n";
|
||||||
|
//lyxerr << " mode: " << mode << "\n";
|
||||||
//lyxerr << "grid: " << grid << endl;
|
//lyxerr << "grid: " << grid << endl;
|
||||||
|
|
||||||
while (good()) {
|
while (good()) {
|
||||||
@ -608,23 +611,22 @@ void Parser::parse1(MathGridInset & grid, unsigned flags,
|
|||||||
|
|
||||||
#ifdef FILEDEBUG
|
#ifdef FILEDEBUG
|
||||||
lyxerr << "t: " << t << " flags: " << flags << "\n";
|
lyxerr << "t: " << t << " flags: " << flags << "\n";
|
||||||
|
lyxerr << "mode: " << mode << "\n";
|
||||||
cell->dump();
|
cell->dump();
|
||||||
lyxerr << "\n";
|
lyxerr << "\n";
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (flags & FLAG_ITEM) {
|
if (flags & FLAG_ITEM) {
|
||||||
skipSpaces();
|
|
||||||
|
|
||||||
flags &= ~FLAG_ITEM;
|
if (t.cat() == catBegin) {
|
||||||
if (t.cat() == catBegin) {
|
|
||||||
// skip the brace and collect everything to the next matching
|
// skip the brace and collect everything to the next matching
|
||||||
// closing brace
|
// closing brace
|
||||||
flags |= FLAG_BRACE_LAST;
|
parse1(grid, FLAG_BRACE_LAST, mode, numbered);
|
||||||
continue;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// handle only this single token, leave the loop if done
|
// handle only this single token, leave the loop if done
|
||||||
flags |= FLAG_LEAVE;
|
flags = FLAG_LEAVE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -842,9 +844,8 @@ void Parser::parse1(MathGridInset & grid, unsigned flags,
|
|||||||
// is a version for display attached?
|
// is a version for display attached?
|
||||||
skipSpaces();
|
skipSpaces();
|
||||||
MathArray ar2;
|
MathArray ar2;
|
||||||
if (nextToken().cat() == catBegin) {
|
if (nextToken().cat() == catBegin)
|
||||||
parse(ar2, FLAG_ITEM, MathInset::MATH_MODE);
|
parse(ar2, FLAG_ITEM, MathInset::MATH_MODE);
|
||||||
}
|
|
||||||
|
|
||||||
cell->push_back(MathAtom(new MathMacroTemplate(name, nargs, ar1, ar2)));
|
cell->push_back(MathAtom(new MathMacroTemplate(name, nargs, ar1, ar2)));
|
||||||
}
|
}
|
||||||
@ -1212,8 +1213,10 @@ void Parser::parse1(MathGridInset & grid, unsigned flags,
|
|||||||
MathAtom at = createMathInset(t.cs());
|
MathAtom at = createMathInset(t.cs());
|
||||||
MathInset::mode_type m = mode;
|
MathInset::mode_type m = mode;
|
||||||
//if (m == MathInset::UNDECIDED_MODE)
|
//if (m == MathInset::UNDECIDED_MODE)
|
||||||
|
lyxerr << "default creation: m1: " << m << "\n";
|
||||||
if (at->currentMode() != MathInset::UNDECIDED_MODE)
|
if (at->currentMode() != MathInset::UNDECIDED_MODE)
|
||||||
m = at->currentMode();
|
m = at->currentMode();
|
||||||
|
lyxerr << "default creation: m2: " << m << "\n";
|
||||||
MathInset::idx_type start = 0;
|
MathInset::idx_type start = 0;
|
||||||
// this fails on \bigg[...\bigg]
|
// this fails on \bigg[...\bigg]
|
||||||
//MathArray opt;
|
//MathArray opt;
|
||||||
|
Loading…
Reference in New Issue
Block a user