mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
* doInsertInset(): cosmetics
* Text::dispatch(): call updateLabels() where it makes sense. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22972 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
a235bd7115
commit
371ed5aff5
@ -182,12 +182,14 @@ static void specialChar(Cursor & cur, InsetSpecialChar::Kind kind)
|
||||
static bool doInsertInset(Cursor & cur, Text * text,
|
||||
FuncRequest const & cmd, bool edit, bool pastesel)
|
||||
{
|
||||
Inset * inset = createInset(cur.bv().buffer(), cmd);
|
||||
Buffer & buffer = cur.bv().buffer();
|
||||
BufferParams const & bparams = buffer.params();
|
||||
Inset * inset = createInset(buffer, cmd);
|
||||
if (!inset)
|
||||
return false;
|
||||
|
||||
if (InsetCollapsable * ci = inset->asInsetCollapsable())
|
||||
ci->setLayout(cur.bv().buffer().params());
|
||||
ci->setLayout(bparams);
|
||||
|
||||
cur.recordUndo();
|
||||
if (cmd.action == LFUN_INDEX_INSERT) {
|
||||
@ -217,22 +219,20 @@ static bool doInsertInset(Cursor & cur, Text * text,
|
||||
InsetText * insetText = dynamic_cast<InsetText *>(inset);
|
||||
if (insetText && !insetText->allowMultiPar() || cur.lastpit() == 0) {
|
||||
// reset first par to default
|
||||
LayoutPtr const layout = insetText->useEmptyLayout() ?
|
||||
cur.buffer().params().getTextClass().emptyLayout() :
|
||||
cur.buffer().params().getTextClass().defaultLayout();
|
||||
LayoutPtr const layout = insetText->useEmptyLayout()
|
||||
? bparams.getTextClass().emptyLayout()
|
||||
: bparams.getTextClass().defaultLayout();
|
||||
cur.text()->paragraphs().begin()->layout(layout);
|
||||
cur.pos() = 0;
|
||||
cur.pit() = 0;
|
||||
// Merge multiple paragraphs -- hack
|
||||
while (cur.lastpit() > 0) {
|
||||
mergeParagraph(cur.buffer().params(),
|
||||
cur.text()->paragraphs(), 0);
|
||||
}
|
||||
while (cur.lastpit() > 0)
|
||||
mergeParagraph(bparams, cur.text()->paragraphs(), 0);
|
||||
} else {
|
||||
// reset surrounding par to default
|
||||
docstring const layoutname = insetText->useEmptyLayout() ?
|
||||
cur.buffer().params().getTextClass().emptyLayoutName() :
|
||||
cur.buffer().params().getTextClass().defaultLayoutName();
|
||||
docstring const layoutname = insetText->useEmptyLayout()
|
||||
? bparams.getTextClass().emptyLayoutName()
|
||||
: bparams.getTextClass().defaultLayoutName();
|
||||
cur.leaveInset(*inset);
|
||||
text->setLayout(cur, layoutname);
|
||||
}
|
||||
@ -1354,13 +1354,6 @@ void Text::dispatch(Cursor & cur, FuncRequest & cmd)
|
||||
#endif
|
||||
case LFUN_CAPTION_INSERT:
|
||||
case LFUN_FOOTNOTE_INSERT:
|
||||
// Open the inset, and move the current selection
|
||||
// inside it.
|
||||
doInsertInset(cur, this, cmd, true, true);
|
||||
cur.posForward();
|
||||
// These insets are numbered.
|
||||
updateLabels(bv->buffer());
|
||||
break;
|
||||
case LFUN_NOTE_INSERT:
|
||||
case LFUN_FLEX_INSERT:
|
||||
case LFUN_BOX_INSERT:
|
||||
@ -1371,10 +1364,14 @@ void Text::dispatch(Cursor & cur, FuncRequest & cmd)
|
||||
case LFUN_MARGINALNOTE_INSERT:
|
||||
case LFUN_OPTIONAL_INSERT:
|
||||
case LFUN_ENVIRONMENT_INSERT:
|
||||
case LFUN_INDEX_INSERT:
|
||||
// Open the inset, and move the current selection
|
||||
// inside it.
|
||||
doInsertInset(cur, this, cmd, true, true);
|
||||
cur.posForward();
|
||||
// Some insets are numbered, others are shown in the outline pane so
|
||||
// let's update the labels and the toc backend.
|
||||
updateLabels(bv->buffer());
|
||||
break;
|
||||
|
||||
case LFUN_TABULAR_INSERT:
|
||||
@ -1434,11 +1431,6 @@ void Text::dispatch(Cursor & cur, FuncRequest & cmd)
|
||||
break;
|
||||
}
|
||||
|
||||
case LFUN_INDEX_INSERT:
|
||||
doInsertInset(cur, this, cmd, true, true);
|
||||
cur.posForward();
|
||||
break;
|
||||
|
||||
case LFUN_NOMENCL_INSERT: {
|
||||
FuncRequest cmd1 = cmd;
|
||||
if (cmd.argument().empty())
|
||||
|
Loading…
Reference in New Issue
Block a user