X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetFlex.cpp;h=e6076102f687ce9c428dc9c8574e68442653e307;hb=997f0621c5346bb623cf86713c4fe1be0c941104;hp=0b14973faa46fe06c323f4738371e5a62aa4a44d;hpb=e11a3cb8953d709760cf9e6250e549a956d9fb2c;p=lyx.git diff --git a/src/insets/InsetFlex.cpp b/src/insets/InsetFlex.cpp index 0b14973faa..e6076102f6 100644 --- a/src/insets/InsetFlex.cpp +++ b/src/insets/InsetFlex.cpp @@ -35,12 +35,12 @@ namespace lyx { InsetFlex::InsetFlex(Buffer * buf, string const & layoutName) - : InsetCollapsable(buf), name_(layoutName) + : InsetCollapsible(buf), name_(layoutName) {} InsetFlex::InsetFlex(InsetFlex const & in) - : InsetCollapsable(in), name_(in.name_) + : InsetCollapsible(in), name_(in.name_) {} @@ -51,17 +51,17 @@ InsetLayout const & InsetFlex::getLayout() const return DocumentClass::plainInsetLayout(); DocumentClass const & dc = buffer().params().documentClass(); - docstring const dname = from_utf8(name_); + docstring const dname = from_utf8(name_); if (dc.hasInsetLayout(dname)) return dc.insetLayout(dname); return dc.insetLayout(from_utf8("Flex:" + name_)); } -InsetLayout::InsetDecoration InsetFlex::decoration() const +InsetDecoration InsetFlex::decoration() const { - InsetLayout::InsetDecoration const dec = getLayout().decoration(); - return dec == InsetLayout::DEFAULT ? InsetLayout::CONGLOMERATE : dec; + InsetDecoration const dec = getLayout().decoration(); + return dec == InsetDecoration::DEFAULT ? InsetDecoration::CONGLOMERATE : dec; } @@ -86,7 +86,7 @@ void InsetFlex::write(ostream & os) const } } os << name << "\n"; - InsetCollapsable::write(os); + InsetCollapsible::write(os); } @@ -94,20 +94,23 @@ bool InsetFlex::getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus & flag) const { switch (cmd.action()) { + case LFUN_INSET_SPLIT: case LFUN_INSET_DISSOLVE: if (!cmd.argument().empty()) { InsetLayout const & il = getLayout(); - InsetLayout::InsetLyXType const type = + InsetLyXType const type = translateLyXType(to_utf8(cmd.argument())); - if (il.lyxtype() == type) { - FuncRequest temp_cmd(LFUN_INSET_DISSOLVE); - return InsetCollapsable::getStatus(cur, temp_cmd, flag); + if (il.lyxtype() == type + || (il.name() == DocumentClass::plainInsetLayout().name() + && type == InsetLyXType::CHARSTYLE)) { + FuncRequest temp_cmd(cmd.action()); + return InsetCollapsible::getStatus(cur, temp_cmd, flag); } else return false; } // fall-through default: - return InsetCollapsable::getStatus(cur, cmd, flag); + return InsetCollapsible::getStatus(cur, cmd, flag); } } @@ -115,28 +118,31 @@ bool InsetFlex::getStatus(Cursor & cur, FuncRequest const & cmd, void InsetFlex::doDispatch(Cursor & cur, FuncRequest & cmd) { switch (cmd.action()) { + case LFUN_INSET_SPLIT: case LFUN_INSET_DISSOLVE: if (!cmd.argument().empty()) { InsetLayout const & il = getLayout(); - InsetLayout::InsetLyXType const type = + InsetLyXType const type = translateLyXType(to_utf8(cmd.argument())); - - if (il.lyxtype() == type) { - FuncRequest temp_cmd(LFUN_INSET_DISSOLVE); - InsetCollapsable::doDispatch(cur, temp_cmd); + + if (il.lyxtype() == type + || (il.name() == DocumentClass::plainInsetLayout().name() + && type == InsetLyXType::CHARSTYLE)) { + FuncRequest temp_cmd(cmd.action()); + InsetCollapsible::doDispatch(cur, temp_cmd); } else cur.undispatched(); break; } // fall-through default: - InsetCollapsable::doDispatch(cur, cmd); + InsetCollapsible::doDispatch(cur, cmd); break; } } -void InsetFlex::updateBuffer(ParIterator const & it, UpdateType utype) +void InsetFlex::updateBuffer(ParIterator const & it, UpdateType utype, bool const deleted) { BufferParams const & bp = buffer().masterBuffer()->params(); InsetLayout const & il = getLayout(); @@ -146,12 +152,16 @@ void InsetFlex::updateBuffer(ParIterator const & it, UpdateType utype) docstring const & count = il.counter(); bool const have_counter = cnts.hasCounter(count); if (have_counter) { - cnts.step(count, utype); - custom_label += ' ' + - cnts.theCounter(count, it.paragraph().getParLanguage(bp)->code()); + Paragraph const & par = it.paragraph(); + if (!par.isDeleted(it.pos())) { + cnts.step(count, utype); + custom_label += ' ' + + cnts.theCounter(count, it.paragraph().getParLanguage(bp)->code()); + } else + custom_label += ' ' + from_ascii("#"); } setLabel(custom_label); - + bool const save_counter = have_counter && utype == OutputUpdate; if (save_counter) { // we assume the counter is local to this inset @@ -159,7 +169,7 @@ void InsetFlex::updateBuffer(ParIterator const & it, UpdateType utype) // need a layout flag cnts.saveLastCounter(); } - InsetCollapsable::updateBuffer(it, utype); + InsetCollapsible::updateBuffer(it, utype, deleted); if (save_counter) cnts.restoreLastCounter(); }