diff options
author | Marvin Borner | 2021-07-01 14:43:53 +0200 |
---|---|---|
committer | Marvin Borner | 2021-07-01 14:43:53 +0200 |
commit | 340e841772eb13d9087235b8707c1cfeff8710cb (patch) | |
tree | 5f4c3328105a3ab194deef9f05fd05ff3c26b7dc /libs/libgui/widgets.h | |
parent | 73a7db5b48eab615a0f6258e0196a1260a88cbbb (diff) |
Math improvements and basic plotting
Diffstat (limited to 'libs/libgui/widgets.h')
-rw-r--r-- | libs/libgui/widgets.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/libs/libgui/widgets.h b/libs/libgui/widgets.h index 4028af6..64bf6a8 100644 --- a/libs/libgui/widgets.h +++ b/libs/libgui/widgets.h @@ -6,9 +6,31 @@ #include <libgui/gfx.h> #include <libgui/gui.h> +/** + * Button + */ + void gui_button_custom(u32 window, u32 widget, enum font_type font_type, u32 bg, u32 fg, void (*click)(struct gui_event_mouse *event), const char *text); void gui_button(u32 window, u32 widget, void (*click)(struct gui_event_mouse *event), const char *text); +/** + * Plot + */ + +struct gui_plot { + f64 *data; + u32 current; + u32 count; + struct gfx_context *ctx; +}; + +void gui_plot_iterate(struct gui_plot *plot); +void gui_plot_destroy(struct gui_plot *plot); +void gui_plot_draw(struct gui_plot *plot); +struct gui_plot *gui_plot_data(u32 window, u32 widget, const f64 *data, u32 count); +struct gui_plot *gui_plot_cubic(u32 window, u32 widget, f64 delta, s32 x_min, s32 x_max, f64 a, + f64 b, f64 c, f64 d); + #endif |