mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-25 10:58:52 +00:00
Make the color of the misspelled marking customizable.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@36612 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
d4fb2ac2ac
commit
51c5b13db1
@ -243,6 +243,7 @@ ColorSet::ColorSet()
|
|||||||
{ Color_previewframe, N_("preview frame"), "previewframe", "black", "previewframe"},
|
{ Color_previewframe, N_("preview frame"), "previewframe", "black", "previewframe"},
|
||||||
{ Color_inherit, N_("inherit"), "inherit", "black", "inherit" },
|
{ Color_inherit, N_("inherit"), "inherit", "black", "inherit" },
|
||||||
{ Color_regexpframe, N_("regexp frame"), "green", "green", "green" },
|
{ Color_regexpframe, N_("regexp frame"), "green", "green", "green" },
|
||||||
|
{ Color_misspelled, N_("misspelled marking"), "misspelled", "red", "misspelled" },
|
||||||
{ Color_ignore, N_("ignore"), "ignore", "black", "ignore" },
|
{ Color_ignore, N_("ignore"), "ignore", "black", "ignore" },
|
||||||
{ Color_ignore, 0, 0, 0, 0 }
|
{ Color_ignore, 0, 0, 0, 0 }
|
||||||
};
|
};
|
||||||
|
@ -189,6 +189,8 @@ enum ColorCode {
|
|||||||
Color_paragraphmarker,
|
Color_paragraphmarker,
|
||||||
/// Preview frame color
|
/// Preview frame color
|
||||||
Color_previewframe,
|
Color_previewframe,
|
||||||
|
/// The color of the misspelled marking
|
||||||
|
Color_misspelled,
|
||||||
|
|
||||||
// Logical attributes
|
// Logical attributes
|
||||||
|
|
||||||
|
@ -361,7 +361,8 @@ void RowPainter::paintMisspelledMark(double orig_x, int desc, bool changed)
|
|||||||
// to avoid drawing at the same vertical offset
|
// to avoid drawing at the same vertical offset
|
||||||
int const offset = int(1.5 * lyxrc.zoom / 100.0); // [percent]
|
int const offset = int(1.5 * lyxrc.zoom / 100.0); // [percent]
|
||||||
int const y = yo_ + desc + (changed ? offset : 0);
|
int const y = yo_ + desc + (changed ? offset : 0);
|
||||||
pi_.pain.line(int(orig_x), y, int(x_), y, Color_red, Painter::line_onoffdash, 1.0);
|
pi_.pain.line(int(orig_x), y, int(x_), y, Color_misspelled,
|
||||||
|
Painter::line_onoffdash, 1.0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user