Skip to content

Commit 34ea8bb

Browse files
authored
Merge pull request #602 from brianwatling/optional-chart-boxes
Add a style option to disable point markers on charts
2 parents c8e91e5 + 254dfc2 commit 34ea8bb

File tree

5 files changed

+30
-8
lines changed

5 files changed

+30
-8
lines changed

demo/common/overview.c

+4
Original file line numberDiff line numberDiff line change
@@ -632,6 +632,7 @@ overview(struct nk_context *ctx)
632632
float id = 0;
633633
static int col_index = -1;
634634
static int line_index = -1;
635+
static int show_markers = nk_true;
635636
float step = (2*3.141592654f) / 32;
636637

637638
int i;
@@ -640,7 +641,10 @@ overview(struct nk_context *ctx)
640641
/* line chart */
641642
id = 0;
642643
index = -1;
644+
nk_layout_row_dynamic(ctx, 15, 1);
645+
nk_checkbox_label(ctx, "Show markers", &show_markers);
643646
nk_layout_row_dynamic(ctx, 100, 1);
647+
ctx->style.chart.show_markers = show_markers;
644648
if (nk_chart_begin(ctx, NK_CHART_LINES, 32, -1.0f, 1.0f)) {
645649
for (i = 0; i < 32; ++i) {
646650
nk_flags res = nk_chart_push(ctx, (float)cos(id));

nuklear.h

+13-4
Original file line numberDiff line numberDiff line change
@@ -5220,6 +5220,7 @@ struct nk_style_chart {
52205220
struct nk_vec2 padding;
52215221
float color_factor;
52225222
float disabled_factor;
5223+
nk_bool show_markers;
52235224
};
52245225

52255226
struct nk_style_combo {
@@ -5410,6 +5411,7 @@ struct nk_chart_slot {
54105411
int count;
54115412
struct nk_vec2 last;
54125413
int index;
5414+
nk_bool show_markers;
54135415
};
54145416

54155417
struct nk_chart {
@@ -18678,6 +18680,7 @@ nk_style_from_table(struct nk_context *ctx, const struct nk_color *table)
1867818680
chart->rounding = 0;
1867918681
chart->color_factor = 1.0f;
1868018682
chart->disabled_factor = NK_WIDGET_DISABLED_FACTOR;
18683+
chart->show_markers = nk_true;
1868118684

1868218685
/* combo */
1868318686
combo = &style->combo;
@@ -28629,7 +28632,8 @@ nk_chart_begin_colored(struct nk_context *ctx, enum nk_chart_type type,
2862928632
slot->highlight = highlight;
2863028633
slot->min = NK_MIN(min_value, max_value);
2863128634
slot->max = NK_MAX(min_value, max_value);
28632-
slot->range = slot->max - slot->min;}
28635+
slot->range = slot->max - slot->min;
28636+
slot->show_markers = style->show_markers;}
2863328637

2863428638
/* draw chart background */
2863528639
background = &style->background;
@@ -28681,7 +28685,8 @@ nk_chart_add_slot_colored(struct nk_context *ctx, const enum nk_chart_type type,
2868128685
slot->highlight = highlight;
2868228686
slot->min = NK_MIN(min_value, max_value);
2868328687
slot->max = NK_MAX(min_value, max_value);
28684-
slot->range = slot->max - slot->min;}
28688+
slot->range = slot->max - slot->min;
28689+
slot->show_markers = style->show_markers;}
2868528690
}
2868628691
NK_API void
2868728692
nk_chart_add_slot(struct nk_context *ctx, const enum nk_chart_type type,
@@ -28728,7 +28733,9 @@ nk_chart_push_line(struct nk_context *ctx, struct nk_window *win,
2872828733
i->mouse.buttons[NK_BUTTON_LEFT].clicked) ? NK_CHART_CLICKED: 0;
2872928734
color = g->slots[slot].highlight;
2873028735
}
28731-
nk_fill_rect(out, bounds, 0, color);
28736+
if (g->slots[slot].show_markers) {
28737+
nk_fill_rect(out, bounds, 0, color);
28738+
}
2873228739
g->slots[slot].index += 1;
2873328740
return ret;
2873428741
}
@@ -28752,7 +28759,9 @@ nk_chart_push_line(struct nk_context *ctx, struct nk_window *win,
2875228759
color = g->slots[slot].highlight;
2875328760
}
2875428761
}
28755-
nk_fill_rect(out, nk_rect(cur.x - 2, cur.y - 2, 4, 4), 0, color);
28762+
if (g->slots[slot].show_markers) {
28763+
nk_fill_rect(out, nk_rect(cur.x - 2, cur.y - 2, 4, 4), 0, color);
28764+
}
2875628765

2875728766
/* save current data point position */
2875828767
g->slots[slot].last.x = cur.x;

src/nuklear.h

+2
Original file line numberDiff line numberDiff line change
@@ -4998,6 +4998,7 @@ struct nk_style_chart {
49984998
struct nk_vec2 padding;
49994999
float color_factor;
50005000
float disabled_factor;
5001+
nk_bool show_markers;
50015002
};
50025003

50035004
struct nk_style_combo {
@@ -5188,6 +5189,7 @@ struct nk_chart_slot {
51885189
int count;
51895190
struct nk_vec2 last;
51905191
int index;
5192+
nk_bool show_markers;
51915193
};
51925194

51935195
struct nk_chart {

src/nuklear_chart.c

+10-4
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ nk_chart_begin_colored(struct nk_context *ctx, enum nk_chart_type type,
5252
slot->highlight = highlight;
5353
slot->min = NK_MIN(min_value, max_value);
5454
slot->max = NK_MAX(min_value, max_value);
55-
slot->range = slot->max - slot->min;}
55+
slot->range = slot->max - slot->min;
56+
slot->show_markers = style->show_markers;}
5657

5758
/* draw chart background */
5859
background = &style->background;
@@ -104,7 +105,8 @@ nk_chart_add_slot_colored(struct nk_context *ctx, const enum nk_chart_type type,
104105
slot->highlight = highlight;
105106
slot->min = NK_MIN(min_value, max_value);
106107
slot->max = NK_MAX(min_value, max_value);
107-
slot->range = slot->max - slot->min;}
108+
slot->range = slot->max - slot->min;
109+
slot->show_markers = style->show_markers;}
108110
}
109111
NK_API void
110112
nk_chart_add_slot(struct nk_context *ctx, const enum nk_chart_type type,
@@ -151,7 +153,9 @@ nk_chart_push_line(struct nk_context *ctx, struct nk_window *win,
151153
i->mouse.buttons[NK_BUTTON_LEFT].clicked) ? NK_CHART_CLICKED: 0;
152154
color = g->slots[slot].highlight;
153155
}
154-
nk_fill_rect(out, bounds, 0, color);
156+
if (g->slots[slot].show_markers) {
157+
nk_fill_rect(out, bounds, 0, color);
158+
}
155159
g->slots[slot].index += 1;
156160
return ret;
157161
}
@@ -175,7 +179,9 @@ nk_chart_push_line(struct nk_context *ctx, struct nk_window *win,
175179
color = g->slots[slot].highlight;
176180
}
177181
}
178-
nk_fill_rect(out, nk_rect(cur.x - 2, cur.y - 2, 4, 4), 0, color);
182+
if (g->slots[slot].show_markers) {
183+
nk_fill_rect(out, nk_rect(cur.x - 2, cur.y - 2, 4, 4), 0, color);
184+
}
179185

180186
/* save current data point position */
181187
g->slots[slot].last.x = cur.x;

src/nuklear_style.c

+1
Original file line numberDiff line numberDiff line change
@@ -486,6 +486,7 @@ nk_style_from_table(struct nk_context *ctx, const struct nk_color *table)
486486
chart->rounding = 0;
487487
chart->color_factor = 1.0f;
488488
chart->disabled_factor = NK_WIDGET_DISABLED_FACTOR;
489+
chart->show_markers = nk_true;
489490

490491
/* combo */
491492
combo = &style->combo;

0 commit comments

Comments
 (0)