summaryrefslogtreecommitdiff
path: root/desktop/plot_style.c
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/plot_style.c')
-rw-r--r--desktop/plot_style.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/desktop/plot_style.c b/desktop/plot_style.c
index 85b898968..a2b582292 100644
--- a/desktop/plot_style.c
+++ b/desktop/plot_style.c
@@ -68,6 +68,28 @@ static const plot_style_t plot_style_margin_edge_static = {
plot_style_t const * const plot_style_margin_edge =
&plot_style_margin_edge_static;
+/* Broken object replacement styles */
+static const plot_style_t plot_style_broken_object_static = {
+ .fill_type = PLOT_OP_TYPE_SOLID,
+ .fill_colour = 0x008888ff,
+ .stroke_type = PLOT_OP_TYPE_SOLID,
+ .stroke_colour = 0x000000ff,
+ .stroke_width = 1,
+};
+plot_style_t const * const plot_style_broken_object =
+ &plot_style_broken_object_static;
+
+static const plot_font_style_t plot_fstyle_broken_object_static = {
+ .family = PLOT_FONT_FAMILY_SANS_SERIF,
+ .size = 14 * FONT_SIZE_SCALE,
+ .weight = 400,
+ .flags = FONTF_NONE,
+ .background = 0x8888ff,
+ .foreground = 0x000044,
+};
+plot_font_style_t const * const plot_fstyle_broken_object =
+ &plot_fstyle_broken_object_static;
+
/* caret style used in html_redraw_caret */
static plot_style_t plot_style_caret_static = {
.stroke_type = PLOT_OP_TYPE_SOLID,