X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetFlex.cpp;h=44b9b034360b0174bd5a306785c9e117dd4fb466;hb=e30db1e44474ee379bedb0d1c752297541156497;hp=be730417410f3ccdabd49580de057f2bf7e52c29;hpb=5bf8df4fbc9a4117df3df957f83c23f6847ac185;p=lyx.git diff --git a/src/insets/InsetFlex.cpp b/src/insets/InsetFlex.cpp index be73041741..44b9b03436 100644 --- a/src/insets/InsetFlex.cpp +++ b/src/insets/InsetFlex.cpp @@ -16,9 +16,16 @@ #include "Buffer.h" #include "BufferParams.h" +#include "Cursor.h" +#include "FuncRequest.h" +#include "FuncStatus.h" +#include "Language.h" #include "Lexer.h" +#include "ParIterator.h" +#include "TextClass.h" #include "support/gettext.h" +#include "support/lstrings.h" #include @@ -27,11 +34,9 @@ using namespace std; namespace lyx { -InsetFlex::InsetFlex(Buffer const & buf, string const & layoutName) +InsetFlex::InsetFlex(Buffer * buf, string const & layoutName) : InsetCollapsable(buf), name_(layoutName) -{ - status_= Collapsed; -} +{} InsetFlex::InsetFlex(InsetFlex const & in) @@ -39,6 +44,20 @@ InsetFlex::InsetFlex(InsetFlex const & in) {} +// special code for InsetFlex when there is not the explicit Flex:: prefix +InsetLayout const & InsetFlex::getLayout() const +{ + if (!buffer_) + return DocumentClass::plainInsetLayout(); + + DocumentClass const & dc = buffer().params().documentClass(); + 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 { InsetLayout::InsetDecoration const dec = getLayout().decoration(); @@ -46,17 +65,98 @@ InsetLayout::InsetDecoration InsetFlex::decoration() const } -docstring InsetFlex::editMessage() const +void InsetFlex::write(ostream & os) const { - return _("Opened Flex Inset"); + os << "Flex "; + InsetLayout const & il = getLayout(); + if (name_.empty()) + os << "undefined"; + else { + // use il.name(), since this resolves obsoleted + // InsetLayout names + string name = to_utf8(il.name()); + // Remove the "Flex:" prefix, if it is present + if (support::prefixIs(name, "Flex:")) + name = support::token(name, ':', 1); + os << name; + } + os << "\n"; + InsetCollapsable::write(os); } -void InsetFlex::write(ostream & os) const +bool InsetFlex::getStatus(Cursor & cur, FuncRequest const & cmd, + FuncStatus & flag) const { - os << "Flex " << - (name_.empty() ? "undefined" : name_) << "\n"; - InsetCollapsable::write(os); + switch (cmd.action()) { + case LFUN_INSET_DISSOLVE: + if (!cmd.argument().empty()) { + InsetLayout const & il = getLayout(); + InsetLayout::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); + } else + return false; + } + // fall-through + default: + return InsetCollapsable::getStatus(cur, cmd, flag); + } +} + + +void InsetFlex::doDispatch(Cursor & cur, FuncRequest & cmd) +{ + switch (cmd.action()) { + case LFUN_INSET_DISSOLVE: + if (!cmd.argument().empty()) { + InsetLayout const & il = getLayout(); + InsetLayout::InsetLyXType const type = + translateLyXType(to_utf8(cmd.argument())); + + if (il.lyxtype() == type) { + FuncRequest temp_cmd(LFUN_INSET_DISSOLVE); + InsetCollapsable::doDispatch(cur, temp_cmd); + } else + cur.undispatched(); + break; + } + // fall-through + default: + InsetCollapsable::doDispatch(cur, cmd); + break; + } +} + + +void InsetFlex::updateBuffer(ParIterator const & it, UpdateType utype) +{ + BufferParams const & bp = buffer().masterBuffer()->params(); + InsetLayout const & il = getLayout(); + docstring custom_label = translateIfPossible(il.labelstring()); + + Counters & cnts = bp.documentClass().counters(); + 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()); + } + setLabel(custom_label); + + bool const save_counter = have_counter && utype == OutputUpdate; + if (save_counter) { + // we assume the counter is local to this inset + // if this turns out to be wrong in some case, we will + // need a layout flag + cnts.saveLastCounter(); + } + InsetCollapsable::updateBuffer(it, utype); + if (save_counter) + cnts.restoreLastCounter(); }