X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FMetricsInfo.cpp;h=809c0cec68997f7f7b81533c7715ba4ee6a5f6dd;hb=5366666c831b6ad726e848a60d738b57ec8b0501;hp=3ec1529ba642827e69424243f59014367c70d67a;hpb=dea245d5409fb47af7efb5248f1b43e15d6563d3;p=lyx.git diff --git a/src/MetricsInfo.cpp b/src/MetricsInfo.cpp index 3ec1529ba6..809c0cec68 100644 --- a/src/MetricsInfo.cpp +++ b/src/MetricsInfo.cpp @@ -10,11 +10,10 @@ #include -#include "BufferView.h" -#include "ColorSet.h" -#include "LyXRC.h" #include "MetricsInfo.h" +#include "LyXRC.h" + #include "insets/Inset.h" #include "mathed/MathSupport.h" @@ -22,10 +21,6 @@ #include "frontends/FontMetrics.h" #include "frontends/Painter.h" -#include "support/docstring.h" -#include "support/lassert.h" -#include "support/RefChanger.h" - using namespace std; @@ -86,16 +81,16 @@ Changer MetricsBase::changeEnsureMath(Inset::mode_type mode) { switch (mode) { case Inset::UNDECIDED_MODE: - return Changer(); + return noChange(); case Inset::TEXT_MODE: - return isMathFont(fontname) ? changeFontSet("textnormal") : Changer(); + return isMathFont(fontname) ? changeFontSet("textnormal") : noChange(); case Inset::MATH_MODE: // FIXME: // \textit{\ensuremath{\text{a}}} // should appear in italics - return isTextFont(fontname) ? changeFontSet("mathnormal"): Changer(); + return isTextFont(fontname) ? changeFontSet("mathnormal"): noChange(); } - return Changer(); + return noChange(); } @@ -119,8 +114,8 @@ int MetricsBase::inPixels(Length const & len) const ///////////////////////////////////////////////////////////////////////// MetricsInfo::MetricsInfo(BufferView * bv, FontInfo font, int textwidth, - MacroContext const & mc) - : base(bv, font, textwidth), macrocontext(mc) + MacroContext const & mc, bool vm) + : base(bv, font, textwidth), macrocontext(mc), vmode(vm) {} @@ -131,7 +126,7 @@ MetricsInfo::MetricsInfo(BufferView * bv, FontInfo font, int textwidth, ///////////////////////////////////////////////////////////////////////// PainterInfo::PainterInfo(BufferView * bv, lyx::frontend::Painter & painter) - : pain(painter), ltr_pos(false), change_(), selected(false), + : pain(painter), ltr_pos(false), change(), selected(false), do_spellcheck(true), full_repaint(true), background_color(Color_background), leftx(0), rightx(0) { @@ -153,31 +148,35 @@ void PainterInfo::draw(int x, int y, docstring const & str) ColorCode PainterInfo::backgroundColor(Inset const * inset, bool sel) const { - ColorCode const color_bg = inset->backgroundColor(*this); - if (selected && sel) // This inset is in a selection return Color_selection; - else { + + // special handling for inset background + if (inset != nullptr) { + if (pain.develMode() && !inset->isBufferValid()) + // This inset is in error + return Color_error; + + ColorCode const color_bg = inset->backgroundColor(*this); if (color_bg != Color_none) // This inset has its own color return color_bg; - else { - if (background_color == Color_none) - // This inset has no own color and does not inherit a color - return Color_background; - else - // This inset has no own color, but inherits a color - return background_color; - } } + + if (background_color == Color_none) + // This inset has no own color and does not inherit a color + return Color_background; + + // This inset has no own color, but inherits a color + return background_color; } Color PainterInfo::textColor(Color const & color) const { - if (change_.changed()) - return change_.color(); + if (change.changed()) + return change.color(); if (selected) return Color_selectiontext; return color; @@ -195,10 +194,10 @@ Changer MetricsBase::changeScript() return font.changeStyle(SCRIPTSCRIPT_STYLE); case INHERIT_STYLE: case IGNORE_STYLE: - return Changer(); + return noChange(); } //remove Warning - return Changer(); + return noChange(); } @@ -214,17 +213,19 @@ Changer MetricsBase::changeFrac() return font.changeStyle(SCRIPTSCRIPT_STYLE); case INHERIT_STYLE: case IGNORE_STYLE: - return Changer(); + return noChange(); } //remove Warning - return Changer(); + return noChange(); } -Changer MetricsBase::changeArray() +Changer MetricsBase::changeArray(bool small) { + if (small) + return font.changeStyle(SCRIPT_STYLE); return (font.style() == DISPLAY_STYLE) ? font.changeStyle(TEXT_STYLE) - : Changer(); + : noChange(); }