X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetBox.cpp;h=f55abcdfa1e0b1cc7d5138c97d7dc1bf914d1b15;hb=90f7007a2e6c78ffd031e4636ff909ab1bc2ddec;hp=b6d574e4c229c4f1043be37419c5360ff40c771e;hpb=3f27f951cbc2521edfbf78792839d61306bdb978;p=lyx.git diff --git a/src/insets/InsetBox.cpp b/src/insets/InsetBox.cpp index b6d574e4c2..f55abcdfa1 100644 --- a/src/insets/InsetBox.cpp +++ b/src/insets/InsetBox.cpp @@ -17,6 +17,7 @@ #include "Buffer.h" #include "BufferParams.h" #include "BufferView.h" +#include "ColorSet.h" #include "Cursor.h" #include "DispatchResult.h" #include "FuncStatus.h" @@ -105,10 +106,7 @@ InsetBox::InsetBox(Buffer * buffer, string const & label) docstring InsetBox::layoutName() const { // FIXME: UNICODE - string name = "Box"; - if (boxtranslator().find(params_.type) == Shaded) - name += ":Shaded"; - return from_ascii(name); + return from_ascii("Box:" + params_.type); } @@ -187,16 +185,39 @@ bool InsetBox::forcePlainLayout(idx_type) const } +ColorCode InsetBox::backgroundColor(PainterInfo const &) const +{ + if (params_.type != "Shaded") + return getLayout().bgcolor(); + // FIXME: This hardcoded color is a hack! + if (buffer().params().boxbgcolor == lyx::rgbFromHexName("#ff0000")) + return getLayout().bgcolor(); + ColorCode c = lcolor.getFromLyXName("boxbgcolor"); + if (c == Color_none) + return getLayout().bgcolor(); + return c; +} + + void InsetBox::doDispatch(Cursor & cur, FuncRequest & cmd) { switch (cmd.action()) { case LFUN_INSET_MODIFY: { //lyxerr << "InsetBox::dispatch MODIFY" << endl; + string const first_arg = cmd.getArg(0); + bool const change_type = first_arg == "changetype"; + bool const for_box = first_arg == "box"; + if (!change_type && !for_box) { + // not for us + // this will not be handled higher up + cur.undispatched(); + return; + } cur.recordUndoInset(ATOMIC_UNDO, this); - if (cmd.getArg(0) == "changetype") { + if (change_type) params_.type = cmd.getArg(1); - } else + else // if (for_box) string2params(to_utf8(cmd.argument()), params_); setButtonLabel(); break; @@ -214,17 +235,26 @@ bool InsetBox::getStatus(Cursor & cur, FuncRequest const & cmd, { switch (cmd.action()) { - case LFUN_INSET_MODIFY: - if (cmd.getArg(0) == "changetype") - flag.setOnOff(cmd.getArg(1) == params_.type); - flag.setEnabled(true); - return true; + case LFUN_INSET_MODIFY: { + string const first_arg = cmd.getArg(0); + if (first_arg == "changetype") { + string const type = cmd.getArg(1); + flag.setOnOff(type == params_.type); + flag.setEnabled(!params_.inner_box || type != "Framed"); + return true; + } + if (first_arg == "box") { + flag.setEnabled(true); + return true; + } + return InsetCollapsable::getStatus(cur, cmd, flag); + } case LFUN_INSET_DIALOG_UPDATE: flag.setEnabled(true); return true; - case LFUN_BREAK_PARAGRAPH: + case LFUN_PARAGRAPH_BREAK: if ((params_.inner_box && !params_.use_makebox) || params_.type == "Shaded" || params_.type == "Framed") return InsetCollapsable::getStatus(cur, cmd, flag); @@ -312,7 +342,8 @@ void InsetBox::latex(otexstream & os, OutputParams const & runparams) const os << "\\shadowbox{"; break; case Shaded: - // later + // must be set later because e.g. the width settings only work when + // it is inside a minipage or parbox break; case Doublebox: os << "\\doublebox{"; @@ -481,8 +512,11 @@ docstring InsetBox::xhtml(XHTMLStream & xs, OutputParams const & runparams) cons // construct attributes string attrs = "class='" + params_.type + "'"; string style; - if (!params_.width.empty()) - style += ("width: " + params_.width.asHTMLString() + "; "); + if (!params_.width.empty()) { + string w = params_.width.asHTMLString(); + if (w != "100%") + style += ("width: " + params_.width.asHTMLString() + "; "); + } // The special heights don't really mean anything for us. if (!params_.height.empty() && params_.height_special == "none") style += ("height: " + params_.height.asHTMLString() + "; "); @@ -526,9 +560,9 @@ void InsetBox::validate(LaTeXFeatures & features) const } -docstring InsetBox::contextMenuName() const +string InsetBox::contextMenuName() const { - return from_ascii("context-box"); + return "context-box"; } @@ -543,7 +577,6 @@ string InsetBox::params2string(InsetBoxParams const & params) void InsetBox::string2params(string const & in, InsetBoxParams & params) { - params = InsetBoxParams(string()); if (in.empty()) return; @@ -568,6 +601,7 @@ void InsetBox::string2params(string const & in, InsetBoxParams & params) "Expected arg 2 to be \"Box\"\n"); } + params = InsetBoxParams(string()); params.read(lex); }