Finished experimental recording features
First version supporting the new record and play feature which allows to `record` a number of API calls and lets you replay them at a later point of time. This could be the basis for creating an Editor and other more advanced features. While I tested the functionality there still could be a number of bugs and I would recommend waiting until all bugs are removed before using it.
This commit is contained in:
parent
f035897056
commit
c19a6a1bbe
@ -9,6 +9,7 @@ If you have an idea for new features just [open an issue](https://github.com/vur
|
||||
* Add (insert your favorite platform or render backend here) demo implementation (some possibilities: DirectX 9/DirectX 10/DirectX 11 and win32 with OpenGL)
|
||||
* Add clipboard user callbacks back into all demos
|
||||
* Add additional widgets
|
||||
* Add color picker widget (using the multi-color draw command)
|
||||
* Find a better way to change the style or group style options
|
||||
* Add support for multiple pointers for touch input devices (probably requires to rewrite mouse handling in `struct zr_input`)
|
||||
* Extend xlib demo to support image drawing with arbitrary image width and height
|
||||
@ -18,8 +19,8 @@ If you have an idea for new features just [open an issue](https://github.com/vur
|
||||
* Add tables with scaleable column width
|
||||
* Rewrite the chart API to support a better range of charts (maybe take notes from Javascript chart frameworks)
|
||||
* Create an API to allow scaling between groups (maybe extend and convert the demo example)
|
||||
* Add multiple Tab support (maybe use `zr_group` and add a header)
|
||||
* Come up with a better way to provide and create widget and window styles
|
||||
* Add multiple Tab support (maybe use `zr_group` and add a header)
|
||||
* Extend context to not only support overlapping windows but tiled windows as well
|
||||
|
||||
## Bugs
|
||||
|
@ -355,6 +355,7 @@ main(int argc, char *argv[])
|
||||
|
||||
usrfnt = device_init(&dev, font_path, 14,
|
||||
zr_font_default_glyph_ranges());
|
||||
memset(&gui, 0, sizeof(gui));
|
||||
zr_init(&gui.ctx, &alloc, &usrfnt);
|
||||
}
|
||||
|
||||
|
2000
demo/demo.c
2000
demo/demo.c
File diff suppressed because it is too large
Load Diff
414
demo/extended.c
414
demo/extended.c
@ -1,414 +0,0 @@
|
||||
/* ===============================================================
|
||||
*
|
||||
* CUSTOM WIDGET
|
||||
*
|
||||
* ===============================================================*/
|
||||
static int
|
||||
ui_piemenu(struct zr_context *ctx, struct zr_vec2 pos, float radius,
|
||||
struct zr_image *icons, int item_count)
|
||||
{
|
||||
int ret = -1;
|
||||
struct zr_rect total_space;
|
||||
struct zr_panel popup;
|
||||
struct zr_rect bounds;
|
||||
int active_item = 0;
|
||||
|
||||
/* hide popup background */
|
||||
struct zr_color border;
|
||||
zr_push_color(ctx, ZR_COLOR_WINDOW, zr_rgba(0,0,0,0));
|
||||
border = ctx->style.colors[ZR_COLOR_BORDER];
|
||||
zr_push_color(ctx, ZR_COLOR_BORDER, zr_rgba(0,0,0,0));
|
||||
|
||||
/* pie menu popup */
|
||||
total_space = zr_window_get_content_region(ctx);
|
||||
zr_popup_begin(ctx, &popup, ZR_POPUP_STATIC, "piemenu", ZR_WINDOW_NO_SCROLLBAR,
|
||||
zr_rect(pos.x - total_space.x - radius, pos.y - radius - total_space.y,
|
||||
2*radius,2*radius));
|
||||
|
||||
total_space = zr_window_get_content_region(ctx);
|
||||
zr_layout_row_dynamic(ctx, total_space.h, 1);
|
||||
{
|
||||
int i = 0;
|
||||
struct zr_command_buffer* out = zr_window_get_canvas(ctx);
|
||||
const struct zr_input *in = &ctx->input;
|
||||
{
|
||||
/* allocate complete popup space for the menu */
|
||||
enum zr_widget_state state;
|
||||
total_space = zr_window_get_content_region(ctx);
|
||||
total_space.x = total_space.y = 0;
|
||||
state = zr_widget(&bounds, ctx);
|
||||
}
|
||||
|
||||
/* outer circle */
|
||||
zr_draw_circle(out, bounds, zr_rgb(50,50,50));
|
||||
{
|
||||
/* circle buttons */
|
||||
float step = (2 * 3.141592654f) / (float)(MAX(1,item_count));
|
||||
float a_min = 0; float a_max = step;
|
||||
|
||||
struct zr_vec2 center = zr_vec2(bounds.x + bounds.w / 2.0f, bounds.y + bounds.h / 2.0f);
|
||||
struct zr_vec2 drag = zr_vec2(in->mouse.pos.x - center.x, in->mouse.pos.y - center.y);
|
||||
float angle = (float)atan2(drag.y, drag.x);
|
||||
if (angle < -0.0f) angle += 2.0f * 3.141592654f;
|
||||
active_item = (int)(angle/step);
|
||||
|
||||
for (i = 0; i < item_count; ++i) {
|
||||
struct zr_rect content;
|
||||
float rx, ry, dx, dy, a;
|
||||
zr_draw_arc(out, center.x, center.y, (bounds.w/2.0f),
|
||||
a_min, a_max, (active_item == i) ? zr_rgb(45,100,255): zr_rgb(60,60,60));
|
||||
|
||||
/* seperator line */
|
||||
rx = bounds.w/2.0f; ry = 0;
|
||||
dx = rx * (float)cos(a_min) - ry * (float)sin(a_min);
|
||||
dy = rx * (float)sin(a_min) + ry * (float)cos(a_min);
|
||||
zr_draw_line(out, center.x, center.y,
|
||||
center.x + dx, center.y + dy, zr_rgb(50,50,50));
|
||||
|
||||
/* button content */
|
||||
a = a_min + (a_max - a_min)/2.0f;
|
||||
rx = bounds.w/2.5f; ry = 0;
|
||||
content.w = 30; content.h = 30;
|
||||
content.x = center.x + ((rx * (float)cos(a) - ry * (float)sin(a)) - content.w/2.0f);
|
||||
content.y = center.y + (rx * (float)sin(a) + ry * (float)cos(a) - content.h/2.0f);
|
||||
zr_draw_image(out, content, &icons[i]);
|
||||
a_min = a_max; a_max += step;
|
||||
}
|
||||
}
|
||||
{
|
||||
/* inner circle */
|
||||
struct zr_rect inner;
|
||||
inner.x = bounds.x + bounds.w/2 - bounds.w/4;
|
||||
inner.y = bounds.y + bounds.h/2 - bounds.h/4;
|
||||
inner.w = bounds.w/2; inner.h = bounds.h/2;
|
||||
zr_draw_circle(out, inner, zr_rgb(45,45,45));
|
||||
|
||||
/* active icon content */
|
||||
bounds.w = inner.w / 2.0f;
|
||||
bounds.h = inner.h / 2.0f;
|
||||
bounds.x = inner.x + inner.w/2 - bounds.w/2;
|
||||
bounds.y = inner.y + inner.h/2 - bounds.h/2;
|
||||
zr_draw_image(out, bounds, &icons[active_item]);
|
||||
}
|
||||
}
|
||||
zr_layout_space_end(ctx);
|
||||
zr_popup_end(ctx);
|
||||
|
||||
zr_reset_colors(ctx);
|
||||
zr_reset_properties(ctx);
|
||||
|
||||
if (!zr_input_is_mouse_down(&ctx->input, ZR_BUTTON_RIGHT))
|
||||
return active_item;
|
||||
else return ret;
|
||||
}
|
||||
|
||||
/* ===============================================================
|
||||
*
|
||||
* GRID
|
||||
*
|
||||
* ===============================================================*/
|
||||
static void
|
||||
grid_demo(struct zr_context *ctx)
|
||||
{
|
||||
static char text[3][64];
|
||||
static size_t text_len[3];
|
||||
static const char *items[] = {"Item 0","item 1","item 2"};
|
||||
static int selected_item = 0;
|
||||
static int check = 1;
|
||||
struct zr_panel layout;
|
||||
|
||||
int i;
|
||||
struct zr_panel combo;
|
||||
ctx->style.font.height = 20;
|
||||
if (zr_begin(ctx, &layout, "Grid Demo", zr_rect(600, 350, 275, 250),
|
||||
ZR_WINDOW_TITLE|ZR_WINDOW_BORDER|ZR_WINDOW_MOVABLE|
|
||||
ZR_WINDOW_BORDER_HEADER|ZR_WINDOW_NO_SCROLLBAR))
|
||||
{
|
||||
ctx->style.font.height = 18;
|
||||
zr_layout_row_dynamic(ctx, 30, 2);
|
||||
zr_label(ctx, "Floating point:", ZR_TEXT_RIGHT);
|
||||
zr_edit_string(ctx, ZR_EDIT_FIELD, text[0], &text_len[0], 64, zr_filter_float);
|
||||
zr_label(ctx, "Hexadeximal:", ZR_TEXT_RIGHT);
|
||||
zr_edit_string(ctx, ZR_EDIT_FIELD, text[1], &text_len[1], 64, zr_filter_hex);
|
||||
zr_label(ctx, "Binary:", ZR_TEXT_RIGHT);
|
||||
zr_edit_string(ctx, ZR_EDIT_FIELD, text[2], &text_len[2], 64, zr_filter_binary);
|
||||
zr_label(ctx, "Checkbox:", ZR_TEXT_RIGHT);
|
||||
zr_checkbox(ctx, "Check me", &check);
|
||||
zr_label(ctx, "Combobox:", ZR_TEXT_RIGHT);
|
||||
|
||||
if (zr_combo_begin_text(ctx, &combo, items[selected_item], 200)) {
|
||||
zr_layout_row_dynamic(ctx, 30, 1);
|
||||
for (i = 0; i < 3; ++i)
|
||||
if (zr_combo_item(ctx, items[i], ZR_TEXT_LEFT))
|
||||
selected_item = i;
|
||||
zr_combo_end(ctx);
|
||||
}
|
||||
}
|
||||
zr_end(ctx);
|
||||
ctx->style.font.height = 14;
|
||||
}
|
||||
|
||||
/* ===============================================================
|
||||
*
|
||||
* BUTTON DEMO
|
||||
*
|
||||
* ===============================================================*/
|
||||
static void
|
||||
ui_header(struct zr_context *ctx, const char *title)
|
||||
{
|
||||
zr_reset_font_height(ctx);
|
||||
zr_push_font_height(ctx, 18);
|
||||
zr_layout_row_dynamic(ctx, 20, 1);
|
||||
zr_label(ctx, title, ZR_TEXT_LEFT);
|
||||
}
|
||||
|
||||
static void
|
||||
ui_widget(struct zr_context *ctx, float height, float font_height)
|
||||
{
|
||||
static const float ratio[] = {0.15f, 0.85f};
|
||||
zr_reset_font_height(ctx);
|
||||
zr_push_font_height(ctx, font_height);
|
||||
zr_layout_row(ctx, ZR_DYNAMIC, height, 2, ratio);
|
||||
zr_spacing(ctx, 1);
|
||||
}
|
||||
|
||||
static void
|
||||
ui_widget_centered(struct zr_context *ctx, float height, float font_height)
|
||||
{
|
||||
static const float ratio[] = {0.15f, 0.50f, 0.35f};
|
||||
zr_reset_font_height(ctx);
|
||||
zr_push_font_height(ctx, font_height);
|
||||
zr_layout_row(ctx, ZR_DYNAMIC, height, 3, ratio);
|
||||
zr_spacing(ctx, 1);
|
||||
}
|
||||
|
||||
static void
|
||||
button_demo(struct zr_context *ctx, struct icons *img)
|
||||
{
|
||||
struct zr_panel layout;
|
||||
struct zr_panel menu;
|
||||
static int option = 1;
|
||||
static int toggle0 = 1;
|
||||
static int toggle1 = 0;
|
||||
static int toggle2 = 1;
|
||||
|
||||
ctx->style.font.height = 20;
|
||||
zr_begin(ctx, &layout, "Button Demo", zr_rect(50,50,255,610),
|
||||
ZR_WINDOW_BORDER|ZR_WINDOW_MOVABLE|ZR_WINDOW_BORDER_HEADER|ZR_WINDOW_TITLE);
|
||||
|
||||
/*------------------------------------------------
|
||||
* MENU
|
||||
*------------------------------------------------*/
|
||||
zr_menubar_begin(ctx);
|
||||
{
|
||||
/* toolbar */
|
||||
zr_layout_row_static(ctx, 40, 40, 4);
|
||||
if (zr_menu_icon_begin(ctx, &menu, "Music", img->play, 120))
|
||||
{
|
||||
/* settings */
|
||||
zr_layout_row_dynamic(ctx, 25, 1);
|
||||
zr_menu_item_icon(ctx, img->play, "Play", ZR_TEXT_RIGHT);
|
||||
zr_menu_item_icon(ctx, img->stop, "Stop", ZR_TEXT_RIGHT);
|
||||
zr_menu_item_icon(ctx, img->pause, "Pause", ZR_TEXT_RIGHT);
|
||||
zr_menu_item_icon(ctx, img->next, "Next", ZR_TEXT_RIGHT);
|
||||
zr_menu_item_icon(ctx, img->prev, "Prev", ZR_TEXT_RIGHT);
|
||||
zr_menu_end(ctx);
|
||||
}
|
||||
zr_button_image(ctx, img->tools, ZR_BUTTON_DEFAULT);
|
||||
zr_button_image(ctx, img->cloud, ZR_BUTTON_DEFAULT);
|
||||
zr_button_image(ctx, img->pen, ZR_BUTTON_DEFAULT);
|
||||
}
|
||||
zr_menubar_end(ctx);
|
||||
|
||||
/*------------------------------------------------
|
||||
* BUTTON
|
||||
*------------------------------------------------*/
|
||||
ui_header(ctx, "Push buttons");
|
||||
ui_widget(ctx, 35, 22);
|
||||
if (zr_button_text(ctx, "Push me", ZR_BUTTON_DEFAULT))
|
||||
fprintf(stdout, "pushed!\n");
|
||||
ui_widget(ctx, 35, 22);
|
||||
if (zr_button_text_image(ctx, img->rocket, "Styled", ZR_TEXT_CENTERED, ZR_BUTTON_DEFAULT))
|
||||
fprintf(stdout, "rocket!\n");
|
||||
|
||||
/*------------------------------------------------
|
||||
* REPEATER
|
||||
*------------------------------------------------*/
|
||||
ui_header(ctx, "Repeater");
|
||||
ui_widget(ctx, 35, 22);
|
||||
if (zr_button_text(ctx, "Press me", ZR_BUTTON_REPEATER))
|
||||
fprintf(stdout, "pressed!\n");
|
||||
|
||||
/*------------------------------------------------
|
||||
* TOGGLE
|
||||
*------------------------------------------------*/
|
||||
ui_header(ctx, "Toggle buttons");
|
||||
ui_widget(ctx, 35, 22);
|
||||
if (zr_button_text_image(ctx, (toggle0) ? img->checked: img->unchecked,
|
||||
"Toggle", ZR_TEXT_LEFT, ZR_BUTTON_DEFAULT)) toggle0 = !toggle0;
|
||||
|
||||
ui_widget(ctx, 35, 22);
|
||||
if (zr_button_text_image(ctx, (toggle1) ? img->checked: img->unchecked,
|
||||
"Toggle", ZR_TEXT_LEFT, ZR_BUTTON_DEFAULT)) toggle1 = !toggle1;
|
||||
|
||||
ui_widget(ctx, 35, 22);
|
||||
if (zr_button_text_image(ctx, (toggle2) ? img->checked: img->unchecked,
|
||||
"Toggle", ZR_TEXT_LEFT, ZR_BUTTON_DEFAULT)) toggle2 = !toggle2;
|
||||
|
||||
/*------------------------------------------------
|
||||
* RADIO
|
||||
*------------------------------------------------*/
|
||||
ui_header(ctx, "Radio buttons");
|
||||
ui_widget(ctx, 35, 22);
|
||||
if (zr_button_text_symbol(ctx, (option == 0)?ZR_SYMBOL_CIRCLE_FILLED:ZR_SYMBOL_CIRCLE,
|
||||
"Select", ZR_TEXT_LEFT, ZR_BUTTON_DEFAULT)) option = 0;
|
||||
ui_widget(ctx, 35, 22);
|
||||
if (zr_button_text_symbol(ctx, (option == 1)?ZR_SYMBOL_CIRCLE_FILLED:ZR_SYMBOL_CIRCLE,
|
||||
"Select", ZR_TEXT_LEFT, ZR_BUTTON_DEFAULT)) option = 1;
|
||||
ui_widget(ctx, 35, 22);
|
||||
if (zr_button_text_symbol(ctx, (option == 2)?ZR_SYMBOL_CIRCLE_FILLED:ZR_SYMBOL_CIRCLE,
|
||||
"Select", ZR_TEXT_LEFT, ZR_BUTTON_DEFAULT)) option = 2;
|
||||
|
||||
/*------------------------------------------------
|
||||
* CONTEXTUAL
|
||||
*------------------------------------------------*/
|
||||
if (zr_contextual_begin(ctx, &menu, ZR_WINDOW_NO_SCROLLBAR, zr_vec2(120, 200), zr_window_get_bounds(ctx))) {
|
||||
ctx->style.font.height = 18;
|
||||
zr_layout_row_dynamic(ctx, 25, 1);
|
||||
if (zr_contextual_item_icon(ctx, img->copy, "Clone", ZR_TEXT_RIGHT))
|
||||
fprintf(stdout, "pressed clone!\n");
|
||||
if (zr_contextual_item_icon(ctx, img->del, "Delete", ZR_TEXT_RIGHT))
|
||||
fprintf(stdout, "pressed delete!\n");
|
||||
if (zr_contextual_item_icon(ctx, img->convert, "Convert", ZR_TEXT_RIGHT))
|
||||
fprintf(stdout, "pressed convert!\n");
|
||||
if (zr_contextual_item_icon(ctx, img->edit, "Edit", ZR_TEXT_RIGHT))
|
||||
fprintf(stdout, "pressed edit!\n");
|
||||
zr_contextual_end(ctx);
|
||||
}
|
||||
ctx->style.font.height = 14;
|
||||
zr_end(ctx);
|
||||
}
|
||||
|
||||
/* ===============================================================
|
||||
*
|
||||
* BASIC DEMO
|
||||
*
|
||||
* ===============================================================*/
|
||||
static void
|
||||
basic_demo(struct zr_context *ctx, struct icons *img)
|
||||
{
|
||||
static int image_active;
|
||||
static int check0 = 1;
|
||||
static int check1 = 0;
|
||||
static int slider = 30;
|
||||
static size_t prog = 80;
|
||||
static int selected_item = 0;
|
||||
static int selected_image = 3;
|
||||
static int selected_icon = 0;
|
||||
static const char *items[] = {"Item 0","item 1","item 2"};
|
||||
static int piemenu_active = 0;
|
||||
|
||||
int i = 0;
|
||||
struct zr_panel layout;
|
||||
struct zr_panel combo;
|
||||
ctx->style.font.height = 20;
|
||||
zr_begin(ctx, &layout, "Basic Demo", zr_rect(320, 50, 275, 610),
|
||||
ZR_WINDOW_BORDER|ZR_WINDOW_MOVABLE|ZR_WINDOW_BORDER_HEADER|ZR_WINDOW_TITLE);
|
||||
|
||||
/*------------------------------------------------
|
||||
* POPUP BUTTON
|
||||
*------------------------------------------------*/
|
||||
ui_header(ctx, "Popup & Scrollbar & Images");
|
||||
ui_widget(ctx, 35, 22);
|
||||
if (zr_button_text_image(ctx, img->directory,
|
||||
"Images", ZR_TEXT_CENTERED, ZR_BUTTON_DEFAULT))
|
||||
image_active = !image_active;
|
||||
|
||||
/*------------------------------------------------
|
||||
* SELECTED IMAGE
|
||||
*------------------------------------------------*/
|
||||
ui_header(ctx, "Selected Image");
|
||||
ui_widget_centered(ctx, 100, 22);
|
||||
zr_image(ctx, img->images[selected_image]);
|
||||
|
||||
/*------------------------------------------------
|
||||
* IMAGE POPUP
|
||||
*------------------------------------------------*/
|
||||
if (image_active) {
|
||||
struct zr_panel popup;
|
||||
if (zr_popup_begin(ctx, &popup, ZR_POPUP_STATIC, "Image Popup", 0, zr_rect(265, 0, 320, 220))) {
|
||||
zr_layout_row_static(ctx, 82, 82, 3);
|
||||
for (i = 0; i < 9; ++i) {
|
||||
if (zr_button_image(ctx, img->images[i], ZR_BUTTON_DEFAULT)) {
|
||||
selected_image = i;
|
||||
image_active = 0;
|
||||
zr_popup_close(ctx);
|
||||
}
|
||||
}
|
||||
zr_popup_end(ctx);
|
||||
}
|
||||
}
|
||||
/*------------------------------------------------
|
||||
* COMBOBOX
|
||||
*------------------------------------------------*/
|
||||
ui_header(ctx, "Combo box");
|
||||
ui_widget(ctx, 40, 22);
|
||||
if (zr_combo_begin_text(ctx, &combo, items[selected_item], 200)) {
|
||||
zr_layout_row_dynamic(ctx, 35, 1);
|
||||
for (i = 0; i < 3; ++i)
|
||||
if (zr_combo_item(ctx, items[i], ZR_TEXT_LEFT))
|
||||
selected_item = i;
|
||||
zr_combo_end(ctx);
|
||||
}
|
||||
|
||||
ui_widget(ctx, 40, 22);
|
||||
if (zr_combo_begin_icon(ctx, &combo, items[selected_icon], img->images[selected_icon], 200)) {
|
||||
zr_layout_row_dynamic(ctx, 35, 1);
|
||||
for (i = 0; i < 3; ++i)
|
||||
if (zr_combo_item_icon(ctx, img->images[i], items[i], ZR_TEXT_RIGHT))
|
||||
selected_icon = i;
|
||||
zr_combo_end(ctx);
|
||||
}
|
||||
|
||||
/*------------------------------------------------
|
||||
* CHECKBOX
|
||||
*------------------------------------------------*/
|
||||
ui_header(ctx, "Checkbox");
|
||||
ui_widget(ctx, 30, 22);
|
||||
zr_checkbox(ctx, "Flag 1", &check0);
|
||||
ui_widget(ctx, 30, 22);
|
||||
zr_checkbox(ctx, "Flag 2", &check1);
|
||||
|
||||
/*------------------------------------------------
|
||||
* PROGRESSBAR
|
||||
*------------------------------------------------*/
|
||||
ui_header(ctx, "Progressbar");
|
||||
ui_widget(ctx, 35, 22);
|
||||
zr_progress(ctx, &prog, 100, zr_true);
|
||||
|
||||
/*------------------------------------------------
|
||||
* SLIDER
|
||||
*------------------------------------------------*/
|
||||
ui_header(ctx, "Slider");
|
||||
ui_widget(ctx, 35, 22);
|
||||
zr_slider_int(ctx, 0, &slider, 100, 10);
|
||||
|
||||
/*------------------------------------------------
|
||||
* PIEMENU
|
||||
*------------------------------------------------*/
|
||||
if (zr_input_is_mouse_down(&ctx->input, ZR_BUTTON_RIGHT) &&
|
||||
zr_input_is_mouse_hovering_rect(&ctx->input, layout.bounds))
|
||||
piemenu_active = 1;
|
||||
|
||||
if (piemenu_active) {
|
||||
int ret = ui_piemenu(ctx, zr_vec2(WINDOW_WIDTH/2-140, WINDOW_HEIGHT/2-140), 140, &img->menu[0], 6);
|
||||
if (ret != -1) {
|
||||
fprintf(stdout, "piemenu selected: %d\n", ret);
|
||||
piemenu_active = 0;
|
||||
}
|
||||
}
|
||||
ctx->style.font.height = 14;
|
||||
zr_end(ctx);
|
||||
}
|
||||
|
||||
|
321
demo/nodedit.c
321
demo/nodedit.c
@ -1,321 +0,0 @@
|
||||
struct node {
|
||||
int ID;
|
||||
char name[32];
|
||||
struct zr_rect bounds;
|
||||
float value;
|
||||
struct zr_color color;
|
||||
int input_count;
|
||||
int output_count;
|
||||
struct node *next;
|
||||
struct node *prev;
|
||||
};
|
||||
|
||||
struct node_link {
|
||||
int input_id;
|
||||
int input_slot;
|
||||
int output_id;
|
||||
int output_slot;
|
||||
struct zr_vec2 in;
|
||||
struct zr_vec2 out;
|
||||
};
|
||||
|
||||
struct node_linking {
|
||||
int active;
|
||||
struct node *node;
|
||||
int input_id;
|
||||
int input_slot;
|
||||
};
|
||||
|
||||
struct node_editor {
|
||||
struct node node_buf[32];
|
||||
struct node_link links[64];
|
||||
struct node *begin;
|
||||
struct node *end;
|
||||
int node_count;
|
||||
int link_count;
|
||||
struct zr_rect bounds;
|
||||
struct node *selected;
|
||||
int show_grid;
|
||||
struct zr_vec2 scrolling;
|
||||
struct node_linking linking;
|
||||
};
|
||||
|
||||
static void
|
||||
node_editor_push(struct node_editor *editor, struct node *node)
|
||||
{
|
||||
if (!editor->begin) {
|
||||
node->next = NULL;
|
||||
node->prev = NULL;
|
||||
editor->begin = node;
|
||||
editor->end = node;
|
||||
} else {
|
||||
node->prev = editor->end;
|
||||
if (editor->end)
|
||||
editor->end->next = node;
|
||||
node->next = NULL;
|
||||
editor->end = node;
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
node_editor_pop(struct node_editor *editor, struct node *node)
|
||||
{
|
||||
if (node->next)
|
||||
node->next->prev = node->prev;
|
||||
if (node->prev)
|
||||
node->prev->next = node->next;
|
||||
if (editor->end == node)
|
||||
editor->end = node->prev;
|
||||
if (editor->begin == node)
|
||||
editor->begin = node->next;
|
||||
node->next = NULL;
|
||||
node->prev = NULL;
|
||||
}
|
||||
|
||||
static struct node*
|
||||
node_editor_find(struct node_editor *editor, int ID)
|
||||
{
|
||||
struct node *iter = editor->begin;
|
||||
while (iter) {
|
||||
if (iter->ID == ID)
|
||||
return iter;
|
||||
iter = iter->next;
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static void
|
||||
node_editor_add(struct node_editor *editor, const char *name, struct zr_rect bounds,
|
||||
struct zr_color col, int in_count, int out_count)
|
||||
{
|
||||
static int IDs = 0;
|
||||
struct node *node;
|
||||
assert((zr_size)editor->node_count < LEN(editor->node_buf));
|
||||
node = &editor->node_buf[editor->node_count++];
|
||||
node->ID = IDs++;
|
||||
node->value = 0;
|
||||
node->color = zr_rgb(255, 0, 0);
|
||||
node->input_count = in_count;
|
||||
node->output_count = out_count;
|
||||
node->color = col;
|
||||
strcpy(node->name, name);
|
||||
node->bounds = bounds;
|
||||
node_editor_push(editor, node);
|
||||
}
|
||||
|
||||
static void
|
||||
node_editor_link(struct node_editor *editor, int in_id, int in_slot,
|
||||
int out_id, int out_slot)
|
||||
{
|
||||
struct node_link *link;
|
||||
assert((zr_size)editor->link_count < LEN(editor->links));
|
||||
link = &editor->links[editor->link_count++];
|
||||
link->input_id = in_id;
|
||||
link->input_slot = in_slot;
|
||||
link->output_id = out_id;
|
||||
link->output_slot = out_slot;
|
||||
}
|
||||
|
||||
static void
|
||||
node_editor_demo(struct zr_context *ctx, struct node_editor *nodedit)
|
||||
{
|
||||
int n = 0;
|
||||
struct zr_rect total_space;
|
||||
const struct zr_input *in = &ctx->input;
|
||||
struct zr_command_buffer *canvas;
|
||||
struct node *updated = 0;
|
||||
struct zr_panel layout;
|
||||
|
||||
if (zr_begin(ctx, &layout, "Node Editor", zr_rect(50, 50, 650, 650),
|
||||
ZR_WINDOW_BORDER|ZR_WINDOW_NO_SCROLLBAR|ZR_WINDOW_CLOSABLE|ZR_WINDOW_MOVABLE))
|
||||
{
|
||||
/* allocate complete window space */
|
||||
canvas = zr_window_get_canvas(ctx);
|
||||
total_space = zr_window_get_content_region(ctx);
|
||||
zr_layout_space_begin(ctx, ZR_STATIC, total_space.h, nodedit->node_count);
|
||||
{
|
||||
struct zr_panel node, menu;
|
||||
struct node *it = nodedit->begin;
|
||||
struct zr_rect size = zr_layout_space_bounds(ctx);
|
||||
|
||||
if (nodedit->show_grid) {
|
||||
/* display grid */
|
||||
float x, y;
|
||||
const float grid_size = 32.0f;
|
||||
const struct zr_color grid_color = zr_rgb(50, 50, 50);
|
||||
for (x = (float)fmod(size.x - nodedit->scrolling.x, grid_size); x < size.w; x += grid_size)
|
||||
zr_draw_line(canvas, x+size.x, size.y, x+size.x, size.y+size.h, grid_color);
|
||||
for (y = (float)fmod(size.y - nodedit->scrolling.y, grid_size); y < size.h; y += grid_size)
|
||||
zr_draw_line(canvas, size.x, y+size.y, size.x+size.w, y+size.y, grid_color);
|
||||
}
|
||||
|
||||
/* execute each node as a moveable group */
|
||||
while (it) {
|
||||
/* calculate scrolled node window position and size */
|
||||
zr_layout_space_push(ctx, zr_rect(it->bounds.x - nodedit->scrolling.x,
|
||||
it->bounds.y - nodedit->scrolling.y, it->bounds.w, it->bounds.h));
|
||||
|
||||
/* execute node window */
|
||||
if (zr_group_begin(ctx, &node, it->name, ZR_WINDOW_MOVABLE|ZR_WINDOW_NO_SCROLLBAR|ZR_WINDOW_BORDER|ZR_WINDOW_TITLE))
|
||||
{
|
||||
/* always have last selected node on top */
|
||||
if (zr_input_mouse_clicked(in, ZR_BUTTON_LEFT, node.bounds) &&
|
||||
(!(it->prev && zr_input_mouse_clicked(in, ZR_BUTTON_LEFT,
|
||||
zr_layout_space_rect_to_screen(ctx, node.bounds)))) &&
|
||||
nodedit->end != it)
|
||||
{
|
||||
updated = it;
|
||||
}
|
||||
|
||||
/* ================= NODE CONTENT =====================*/
|
||||
zr_layout_row_dynamic(ctx, 25, 1);
|
||||
zr_button_color(ctx, it->color, ZR_BUTTON_DEFAULT);
|
||||
it->color.r = (zr_byte)zr_propertyi(ctx, "#R:", 0, it->color.r, 255, 1,1);
|
||||
it->color.g = (zr_byte)zr_propertyi(ctx, "#G:", 0, it->color.g, 255, 1,1);
|
||||
it->color.b = (zr_byte)zr_propertyi(ctx, "#B:", 0, it->color.b, 255, 1,1);
|
||||
it->color.a = (zr_byte)zr_propertyi(ctx, "#A:", 0, it->color.a, 255, 1,1);
|
||||
/* ====================================================*/
|
||||
zr_group_end(ctx);
|
||||
}
|
||||
{
|
||||
/* node connector and linking */
|
||||
float space;
|
||||
struct zr_rect bounds;
|
||||
bounds = zr_layout_space_rect_to_local(ctx, node.bounds);
|
||||
bounds.x += nodedit->scrolling.x;
|
||||
bounds.y += nodedit->scrolling.y;
|
||||
it->bounds = bounds;
|
||||
|
||||
/* output connector */
|
||||
space = node.bounds.h / (float)((it->output_count) + 1);
|
||||
for (n = 0; n < it->output_count; ++n) {
|
||||
struct zr_rect circle;
|
||||
circle.x = node.bounds.x + node.bounds.w-4;
|
||||
circle.y = node.bounds.y + space * (float)(n+1);
|
||||
circle.w = 8; circle.h = 8;
|
||||
zr_draw_circle(canvas, circle, zr_rgb(100, 100, 100));
|
||||
|
||||
/* start linking process */
|
||||
if (zr_input_has_mouse_click_down_in_rect(in, ZR_BUTTON_LEFT, circle, zr_true)) {
|
||||
nodedit->linking.active = zr_true;
|
||||
nodedit->linking.node = it;
|
||||
nodedit->linking.input_id = it->ID;
|
||||
nodedit->linking.input_slot = n;
|
||||
}
|
||||
|
||||
/* draw curve from linked node slot to mouse position */
|
||||
if (nodedit->linking.active && nodedit->linking.node == it &&
|
||||
nodedit->linking.input_slot == n) {
|
||||
struct zr_vec2 l0 = zr_vec2(circle.x + 3, circle.y + 3);
|
||||
struct zr_vec2 l1 = in->mouse.pos;
|
||||
zr_draw_curve(canvas, l0.x, l0.y, l0.x + 50.0f, l0.y,
|
||||
l1.x - 50.0f, l1.y, l1.x, l1.y, zr_rgb(100, 100, 100));
|
||||
}
|
||||
}
|
||||
|
||||
/* input connector */
|
||||
space = node.bounds.h / (float)((it->input_count) + 1);
|
||||
for (n = 0; n < it->input_count; ++n) {
|
||||
struct zr_rect circle;
|
||||
circle.x = node.bounds.x-4;
|
||||
circle.y = node.bounds.y + space * (float)(n+1);
|
||||
circle.w = 8; circle.h = 8;
|
||||
zr_draw_circle(canvas, circle, zr_rgb(100, 100, 100));
|
||||
if (zr_input_is_mouse_released(in, ZR_BUTTON_LEFT) &&
|
||||
zr_input_is_mouse_hovering_rect(in, circle) &&
|
||||
nodedit->linking.active && nodedit->linking.node != it) {
|
||||
nodedit->linking.active = zr_false;
|
||||
node_editor_link(nodedit, nodedit->linking.input_id,
|
||||
nodedit->linking.input_slot, it->ID, n);
|
||||
}
|
||||
}
|
||||
}
|
||||
it = it->next;
|
||||
}
|
||||
|
||||
/* reset linking connection */
|
||||
if (nodedit->linking.active && zr_input_is_mouse_released(in, ZR_BUTTON_LEFT)) {
|
||||
nodedit->linking.active = zr_false;
|
||||
nodedit->linking.node = NULL;
|
||||
fprintf(stdout, "linking failed\n");
|
||||
}
|
||||
|
||||
/* draw each link */
|
||||
for (n = 0; n < nodedit->link_count; ++n) {
|
||||
struct node_link *link = &nodedit->links[n];
|
||||
struct node *ni = node_editor_find(nodedit, link->input_id);
|
||||
struct node *no = node_editor_find(nodedit, link->output_id);
|
||||
float spacei = node.bounds.h / (float)((ni->output_count) + 1);
|
||||
float spaceo = node.bounds.h / (float)((no->input_count) + 1);
|
||||
struct zr_vec2 l0 = zr_layout_space_to_screen(ctx,
|
||||
zr_vec2(ni->bounds.x + ni->bounds.w, 3.0f + ni->bounds.y + spacei * (float)(link->input_slot+1)));
|
||||
struct zr_vec2 l1 = zr_layout_space_to_screen(ctx,
|
||||
zr_vec2(no->bounds.x, 3.0f + no->bounds.y + spaceo * (float)(link->output_slot+1)));
|
||||
|
||||
l0.x -= nodedit->scrolling.x;
|
||||
l0.y -= nodedit->scrolling.y;
|
||||
l1.x -= nodedit->scrolling.x;
|
||||
l1.y -= nodedit->scrolling.y;
|
||||
zr_draw_curve(canvas, l0.x, l0.y, l0.x + 50.0f, l0.y,
|
||||
l1.x - 50.0f, l1.y, l1.x, l1.y, zr_rgb(100, 100, 100));
|
||||
}
|
||||
|
||||
if (updated) {
|
||||
/* reshuffle nodes to have last recently selected node on top */
|
||||
node_editor_pop(nodedit, updated);
|
||||
node_editor_push(nodedit, updated);
|
||||
}
|
||||
|
||||
/* node selection */
|
||||
if (zr_input_mouse_clicked(in, ZR_BUTTON_LEFT, zr_layout_space_bounds(ctx))) {
|
||||
it = nodedit->begin;
|
||||
nodedit->selected = NULL;
|
||||
nodedit->bounds = zr_rect(in->mouse.pos.x, in->mouse.pos.y, 100, 200);
|
||||
while (it) {
|
||||
struct zr_rect b = zr_layout_space_rect_to_screen(ctx, it->bounds);
|
||||
b.x -= nodedit->scrolling.x;
|
||||
b.y -= nodedit->scrolling.y;
|
||||
if (zr_input_is_mouse_hovering_rect(in, b))
|
||||
nodedit->selected = it;
|
||||
it = it->next;
|
||||
}
|
||||
}
|
||||
|
||||
/* contextual menu */
|
||||
if (zr_contextual_begin(ctx, &menu, 0, zr_vec2(100, 220), zr_window_get_bounds(ctx))) {
|
||||
const char *grid_option[] = {"Show Grid", "Hide Grid"};
|
||||
zr_layout_row_dynamic(ctx, 25, 1);
|
||||
if (zr_contextual_item(ctx, "New", ZR_TEXT_CENTERED))
|
||||
node_editor_add(nodedit, "New", zr_rect(400, 260, 180, 220),
|
||||
zr_rgb(255, 255, 255), 1, 2);
|
||||
if (zr_contextual_item(ctx, grid_option[nodedit->show_grid],ZR_TEXT_CENTERED))
|
||||
nodedit->show_grid = !nodedit->show_grid;
|
||||
zr_contextual_end(ctx);
|
||||
}
|
||||
}
|
||||
zr_layout_space_end(ctx);
|
||||
|
||||
/* window content scrolling */
|
||||
if (zr_input_is_mouse_hovering_rect(in, zr_window_get_bounds(ctx)) &&
|
||||
zr_input_is_mouse_down(in, ZR_BUTTON_MIDDLE)) {
|
||||
nodedit->scrolling.x += in->mouse.delta.x;
|
||||
nodedit->scrolling.y += in->mouse.delta.y;
|
||||
}
|
||||
}
|
||||
zr_end(ctx);
|
||||
}
|
||||
|
||||
static void
|
||||
node_editor_init(struct node_editor *editor)
|
||||
{
|
||||
memset(editor, 0, sizeof(*editor));
|
||||
editor->begin = NULL;
|
||||
editor->end = NULL;
|
||||
node_editor_add(editor, "Source", zr_rect(40, 10, 180, 220), zr_rgb(255, 0, 0), 0, 1);
|
||||
node_editor_add(editor, "Source", zr_rect(40, 260, 180, 220), zr_rgb(0, 255, 0), 0, 1);
|
||||
node_editor_add(editor, "Combine", zr_rect(400, 100, 180, 220), zr_rgb(0,0,255), 2, 2);
|
||||
node_editor_link(editor, 0, 0, 2, 0);
|
||||
node_editor_link(editor, 1, 0, 2, 1);
|
||||
editor->show_grid = zr_true;
|
||||
}
|
||||
|
973
demo/overview.c
973
demo/overview.c
@ -1,973 +0,0 @@
|
||||
/* ===============================================================
|
||||
*
|
||||
* DEMO
|
||||
*
|
||||
* ===============================================================*/
|
||||
static void
|
||||
demo_window(struct zr_context *ctx)
|
||||
{
|
||||
struct zr_panel menu;
|
||||
|
||||
/* window flags */
|
||||
static int show_menu = zr_true;
|
||||
static int titlebar = zr_true;
|
||||
static int border = zr_true;
|
||||
static int resize = zr_true;
|
||||
static int moveable = zr_true;
|
||||
static int no_scrollbar = zr_false;
|
||||
static zr_flags window_flags = 0;
|
||||
static int minimizable = zr_true;
|
||||
static int close = zr_true;
|
||||
|
||||
/* popups */
|
||||
static enum zr_style_header_align header_align = ZR_HEADER_RIGHT;
|
||||
static int show_app_about = zr_false;
|
||||
struct zr_panel layout;
|
||||
|
||||
/* window flags */
|
||||
window_flags = 0;
|
||||
ctx->style.header.align = header_align;
|
||||
if (border) window_flags |= ZR_WINDOW_BORDER;
|
||||
if (resize) window_flags |= ZR_WINDOW_SCALABLE;
|
||||
if (moveable) window_flags |= ZR_WINDOW_MOVABLE;
|
||||
if (no_scrollbar) window_flags |= ZR_WINDOW_NO_SCROLLBAR;
|
||||
if (minimizable) window_flags |= ZR_WINDOW_MINIMIZABLE;
|
||||
if (close) window_flags |= ZR_WINDOW_CLOSABLE;
|
||||
|
||||
if (zr_begin(ctx, &layout, "Demo", zr_rect(10, 10, 400, 750), window_flags))
|
||||
{
|
||||
if (show_menu)
|
||||
{
|
||||
/* menubar */
|
||||
enum menu_states {MENU_DEFAULT, MENU_TEST};
|
||||
static zr_size mprog = 60;
|
||||
static int mslider = 10;
|
||||
static int mcheck = zr_true;
|
||||
|
||||
zr_menubar_begin(ctx);
|
||||
zr_layout_row_begin(ctx, ZR_STATIC, 25, 2);
|
||||
zr_layout_row_push(ctx, 45);
|
||||
if (zr_menu_text_begin(ctx, &menu, "MENU", 120))
|
||||
{
|
||||
static size_t prog = 40;
|
||||
static int slider = 10;
|
||||
static int check = zr_true;
|
||||
|
||||
zr_layout_row_dynamic(ctx, 25, 1);
|
||||
zr_progress(ctx, &prog, 100, ZR_MODIFIABLE);
|
||||
zr_slider_int(ctx, 0, &slider, 16, 1);
|
||||
zr_checkbox(ctx, "check", &check);
|
||||
|
||||
if (zr_menu_item(ctx, ZR_TEXT_CENTERED, "Hide"))
|
||||
show_menu = zr_false;
|
||||
if (zr_menu_item(ctx, ZR_TEXT_CENTERED, "About"))
|
||||
show_app_about = zr_true;
|
||||
zr_menu_end(ctx);
|
||||
}
|
||||
zr_layout_row_push(ctx, 60);
|
||||
zr_progress(ctx, &mprog, 100, ZR_MODIFIABLE);
|
||||
zr_slider_int(ctx, 0, &mslider, 16, 1);
|
||||
zr_checkbox(ctx, "check", &mcheck);
|
||||
zr_menubar_end(ctx);
|
||||
}
|
||||
|
||||
if (show_app_about)
|
||||
{
|
||||
/* about popup */
|
||||
struct zr_panel popup;
|
||||
static struct zr_rect s = {20, 100, 300, 190};
|
||||
if (zr_popup_begin(ctx, &popup, ZR_POPUP_STATIC, "About", ZR_WINDOW_CLOSABLE, s))
|
||||
{
|
||||
zr_layout_row_dynamic(ctx, 20, 1);
|
||||
zr_label(ctx, "Zahnrad", ZR_TEXT_LEFT);
|
||||
zr_label(ctx, "By Micha Mettke", ZR_TEXT_LEFT);
|
||||
zr_label(ctx, "Zahnrad is licensed under the zlib License.", ZR_TEXT_LEFT);
|
||||
zr_label(ctx, "See LICENSE for more information", ZR_TEXT_LEFT);
|
||||
zr_popup_end(ctx);
|
||||
} else show_app_about = zr_false;
|
||||
}
|
||||
|
||||
/* window flags */
|
||||
if (zr_layout_push(ctx, ZR_LAYOUT_TAB, "Window", ZR_MINIMIZED)) {
|
||||
zr_layout_row_dynamic(ctx, 30, 2);
|
||||
zr_checkbox(ctx, "Titlebar", &titlebar);
|
||||
zr_checkbox(ctx, "Menu", &show_menu);
|
||||
zr_checkbox(ctx, "Border", &border);
|
||||
zr_checkbox(ctx, "Resizable", &resize);
|
||||
zr_checkbox(ctx, "Moveable", &moveable);
|
||||
zr_checkbox(ctx, "No Scrollbar", &no_scrollbar);
|
||||
zr_checkbox(ctx, "Minimizable", &minimizable);
|
||||
zr_checkbox(ctx, "Closeable", &close);
|
||||
zr_layout_pop(ctx);
|
||||
}
|
||||
|
||||
if (zr_layout_push(ctx, ZR_LAYOUT_TAB, "Widgets", ZR_MINIMIZED))
|
||||
{
|
||||
enum options {A,B,C};
|
||||
static int checkbox;
|
||||
static int option;
|
||||
if (zr_layout_push(ctx, ZR_LAYOUT_NODE, "Text", ZR_MINIMIZED))
|
||||
{
|
||||
/* Text Widgets */
|
||||
zr_layout_row_dynamic(ctx, 20, 1);
|
||||
zr_label(ctx, "Label aligned left", ZR_TEXT_LEFT);
|
||||
zr_label(ctx, "Label aligned centered", ZR_TEXT_CENTERED);
|
||||
zr_label(ctx, "Label aligned right", ZR_TEXT_RIGHT);
|
||||
zr_label_colored(ctx, "Blue text", ZR_TEXT_LEFT, zr_rgb(0,0,255));
|
||||
zr_label_colored(ctx, "Yellow text", ZR_TEXT_LEFT, zr_rgb(255,255,0));
|
||||
zr_text(ctx, "Text without /0", 15, ZR_TEXT_RIGHT);
|
||||
|
||||
zr_layout_row_static(ctx, 100, 200, 1);
|
||||
zr_label_wrap(ctx, "This is a very long line to hopefully get this text to be wrapped into multiple lines to show line wrapping");
|
||||
zr_layout_row_dynamic(ctx, 100, 1);
|
||||
zr_label_wrap(ctx, "This is another long text to show dynamic window changes on multiline text");
|
||||
zr_layout_pop(ctx);
|
||||
}
|
||||
|
||||
if (zr_layout_push(ctx, ZR_LAYOUT_NODE, "Button", ZR_MINIMIZED))
|
||||
{
|
||||
/* Buttons Widgets */
|
||||
zr_layout_row_static(ctx, 30, 100, 3);
|
||||
if (zr_button_text(ctx, "Button", ZR_BUTTON_DEFAULT))
|
||||
fprintf(stdout, "Button pressed!\n");
|
||||
if (zr_button_text(ctx, "Repeater", ZR_BUTTON_REPEATER))
|
||||
fprintf(stdout, "Repeater is being pressed!\n");
|
||||
zr_button_color(ctx, zr_rgb(0,0,255), ZR_BUTTON_DEFAULT);
|
||||
|
||||
zr_layout_row_static(ctx, 20, 20, 8);
|
||||
zr_button_symbol(ctx, ZR_SYMBOL_CIRCLE, ZR_BUTTON_DEFAULT);
|
||||
zr_button_symbol(ctx, ZR_SYMBOL_CIRCLE_FILLED, ZR_BUTTON_DEFAULT);
|
||||
zr_button_symbol(ctx, ZR_SYMBOL_RECT, ZR_BUTTON_DEFAULT);
|
||||
zr_button_symbol(ctx, ZR_SYMBOL_RECT_FILLED, ZR_BUTTON_DEFAULT);
|
||||
zr_button_symbol(ctx, ZR_SYMBOL_TRIANGLE_UP, ZR_BUTTON_DEFAULT);
|
||||
zr_button_symbol(ctx, ZR_SYMBOL_TRIANGLE_DOWN, ZR_BUTTON_DEFAULT);
|
||||
zr_button_symbol(ctx, ZR_SYMBOL_TRIANGLE_LEFT, ZR_BUTTON_DEFAULT);
|
||||
zr_button_symbol(ctx, ZR_SYMBOL_TRIANGLE_RIGHT, ZR_BUTTON_DEFAULT);
|
||||
|
||||
zr_layout_row_static(ctx, 30, 100, 2);
|
||||
zr_button_text_symbol(ctx, ZR_SYMBOL_TRIANGLE_LEFT, "prev", ZR_TEXT_RIGHT, ZR_BUTTON_DEFAULT);
|
||||
zr_button_text_symbol(ctx, ZR_SYMBOL_TRIANGLE_RIGHT, "next", ZR_TEXT_LEFT, ZR_BUTTON_DEFAULT);
|
||||
zr_layout_pop(ctx);
|
||||
}
|
||||
|
||||
if (zr_layout_push(ctx, ZR_LAYOUT_NODE, "Basic", ZR_MINIMIZED))
|
||||
{
|
||||
/* Basic widgets */
|
||||
static int int_slider = 5;
|
||||
static float float_slider = 2.5f;
|
||||
static size_t prog_value = 40;
|
||||
static float property_float = 2;
|
||||
static int property_int = 10;
|
||||
static int property_neg = 10;
|
||||
|
||||
static float range_float_min = 0;
|
||||
static float range_float_max = 100;
|
||||
static float range_float_value = 50;
|
||||
static int range_int_min = 0;
|
||||
static int range_int_value = 2048;
|
||||
static int range_int_max = 4096;
|
||||
static const float ratio[] = {120, 150};
|
||||
|
||||
zr_layout_row_static(ctx, 30, 100, 1);
|
||||
zr_checkbox(ctx, "Checkbox", &checkbox);
|
||||
|
||||
zr_layout_row_static(ctx, 30, 80, 3);
|
||||
option = zr_option(ctx, "optionA", option == A) ? A : option;
|
||||
option = zr_option(ctx, "optionB", option == B) ? B : option;
|
||||
option = zr_option(ctx, "optionC", option == C) ? C : option;
|
||||
|
||||
|
||||
zr_layout_row(ctx, ZR_STATIC, 30, 2, ratio);
|
||||
zr_labelf(ctx, ZR_TEXT_LEFT, "Slider int");
|
||||
zr_slider_int(ctx, 0, &int_slider, 10, 1);
|
||||
|
||||
zr_label(ctx, "Slider float", ZR_TEXT_LEFT);
|
||||
zr_slider_float(ctx, 0, &float_slider, 5.0, 0.5f);
|
||||
zr_labelf(ctx, ZR_TEXT_LEFT, "Progressbar" , prog_value);
|
||||
zr_progress(ctx, &prog_value, 100, ZR_MODIFIABLE);
|
||||
|
||||
zr_layout_row(ctx, ZR_STATIC, 25, 2, ratio);
|
||||
zr_label(ctx, "Property float:", ZR_TEXT_LEFT);
|
||||
zr_property_float(ctx, "Float:", 0, &property_float, 64.0f, 0.1f, 0.2f);
|
||||
zr_label(ctx, "Property int:", ZR_TEXT_LEFT);
|
||||
zr_property_int(ctx, "Int:", 0, &property_int, 100.0f, 1, 1);
|
||||
zr_label(ctx, "Property neg:", ZR_TEXT_LEFT);
|
||||
zr_property_int(ctx, "Neg:", -10, &property_neg, 10, 1, 1);
|
||||
|
||||
|
||||
zr_layout_row_dynamic(ctx, 25, 1);
|
||||
zr_label(ctx, "Range:", ZR_TEXT_LEFT);
|
||||
zr_layout_row_dynamic(ctx, 25, 3);
|
||||
zr_property_float(ctx, "#min:", 0, &range_float_min, range_float_max, 1.0f, 0.2f);
|
||||
zr_property_float(ctx, "#float:", range_float_min, &range_float_value, range_float_max, 1.0f, 0.2f);
|
||||
zr_property_float(ctx, "#max:", range_float_min, &range_float_max, 100, 1.0f, 0.2f);
|
||||
|
||||
zr_property_int(ctx, "#min:", INT_MIN, &range_int_min, range_int_max, 1, 10);
|
||||
zr_property_int(ctx, "#neg:", range_int_min, &range_int_value, range_int_max, 1, 10);
|
||||
zr_property_int(ctx, "#max:", range_int_min, &range_int_max, INT_MAX, 1, 10);
|
||||
|
||||
zr_layout_pop(ctx);
|
||||
}
|
||||
|
||||
if (zr_layout_push(ctx, ZR_LAYOUT_NODE, "Selectable", ZR_MINIMIZED))
|
||||
{
|
||||
if (zr_layout_push(ctx, ZR_LAYOUT_NODE, "List", ZR_MINIMIZED))
|
||||
{
|
||||
static int selected[4] = {zr_false, zr_false, zr_true, zr_false};
|
||||
zr_layout_row_static(ctx, 18, 100, 1);
|
||||
zr_selectable(ctx, "Selectable", ZR_TEXT_LEFT, &selected[0]);
|
||||
zr_selectable(ctx, "Selectable", ZR_TEXT_LEFT, &selected[1]);
|
||||
zr_label(ctx, "Not Selectable", ZR_TEXT_LEFT);
|
||||
zr_selectable(ctx, "Selectable", ZR_TEXT_LEFT, &selected[2]);
|
||||
zr_selectable(ctx, "Selectable", ZR_TEXT_LEFT, &selected[3]);
|
||||
zr_layout_pop(ctx);
|
||||
}
|
||||
if (zr_layout_push(ctx, ZR_LAYOUT_NODE, "Grid", ZR_MINIMIZED))
|
||||
{
|
||||
int i;
|
||||
static int selected[16] = {1,0,0,0, 0,1,0,0, 0,0,1,0, 0,0,0,1};
|
||||
zr_layout_row_static(ctx, 50, 50, 4);
|
||||
for (i = 0; i < 16; ++i) {
|
||||
if (zr_selectable(ctx, "Z", ZR_TEXT_CENTERED, &selected[i])) {
|
||||
int x = (i % 4), y = i / 4;
|
||||
if (x > 0) selected[i - 1] ^= 1;
|
||||
if (x < 3) selected[i + 1] ^= 1;
|
||||
if (y > 0) selected[i - 4] ^= 1;
|
||||
if (y < 3) selected[i + 4] ^= 1;
|
||||
}
|
||||
}
|
||||
zr_layout_pop(ctx);
|
||||
}
|
||||
zr_layout_pop(ctx);
|
||||
}
|
||||
|
||||
if (zr_layout_push(ctx, ZR_LAYOUT_NODE, "Combo", ZR_MINIMIZED))
|
||||
{
|
||||
/* Combobox Widgets */
|
||||
enum color_mode {COL_RGB, COL_HSV};
|
||||
static float chart_selection = 8.0f;
|
||||
static const char *weapons[] = {"Fist","Pistol","Shotgun","Plasma","BFG"};
|
||||
static size_t current_weapon = 0;
|
||||
static int check_values[5];
|
||||
static float position[3];
|
||||
static int col_mode = COL_RGB;
|
||||
static struct zr_color combo_color = {130, 50, 50, 255};
|
||||
static struct zr_color combo_color2 = {130, 180, 50, 255};
|
||||
static size_t x = 20, y = 40, z = 10, w = 90;
|
||||
|
||||
char buffer[64];
|
||||
size_t sum = 0;
|
||||
struct zr_panel combo;
|
||||
|
||||
/* default combobox */
|
||||
zr_layout_row_static(ctx, 25, 200, 1);
|
||||
if (zr_combo_begin_text(ctx, &combo, weapons[current_weapon], 200)) {
|
||||
size_t i = 0;
|
||||
zr_layout_row_dynamic(ctx, 25, 1);
|
||||
for (i = 0; i < LEN(weapons); ++i) {
|
||||
if (zr_combo_item(ctx, weapons[i], ZR_TEXT_LEFT))
|
||||
current_weapon = i;
|
||||
}
|
||||
zr_combo_end(ctx);
|
||||
}
|
||||
|
||||
/* slider color combobox */
|
||||
if (zr_combo_begin_color(ctx, &combo, combo_color, 200)) {
|
||||
float ratios[] = {0.15f, 0.85f};
|
||||
zr_layout_row(ctx, ZR_DYNAMIC, 30, 2, ratios);
|
||||
zr_label(ctx, "R:", ZR_TEXT_LEFT);
|
||||
combo_color.r = (zr_byte)zr_slide_int(ctx, 0, combo_color.r, 255, 5);
|
||||
zr_label(ctx, "G:", ZR_TEXT_LEFT);
|
||||
combo_color.g = (zr_byte)zr_slide_int(ctx, 0, combo_color.g, 255, 5);
|
||||
zr_label(ctx, "B:", ZR_TEXT_LEFT);
|
||||
combo_color.b = (zr_byte)zr_slide_int(ctx, 0, combo_color.b, 255, 5);
|
||||
zr_label(ctx, "A:", ZR_TEXT_LEFT);
|
||||
combo_color.a = (zr_byte)zr_slide_int(ctx, 0, combo_color.a , 255, 5);
|
||||
zr_combo_end(ctx);
|
||||
}
|
||||
|
||||
/* property color combobox */
|
||||
if (zr_combo_begin_color(ctx, &combo, combo_color2, 200)) {
|
||||
zr_layout_row_dynamic(ctx, 25, 2);
|
||||
col_mode = zr_option(ctx, "RGB", col_mode == COL_RGB) ? COL_RGB : col_mode;
|
||||
col_mode = zr_option(ctx, "HSV", col_mode == COL_HSV) ? COL_HSV : col_mode;
|
||||
zr_layout_row_dynamic(ctx, 25, 1);
|
||||
if (col_mode == COL_RGB) {
|
||||
combo_color2.r = (zr_byte)zr_propertyi(ctx, "#R:", 0, combo_color2.r, 255, 1,1);
|
||||
combo_color2.g = (zr_byte)zr_propertyi(ctx, "#G:", 0, combo_color2.g, 255, 1,1);
|
||||
combo_color2.b = (zr_byte)zr_propertyi(ctx, "#B:", 0, combo_color2.b, 255, 1,1);
|
||||
combo_color2.a = (zr_byte)zr_propertyi(ctx, "#A:", 0, combo_color2.a, 255, 1,1);
|
||||
} else {
|
||||
zr_byte tmp[4];
|
||||
zr_color_hsva_bv(tmp, combo_color2);
|
||||
tmp[0] = (zr_byte)zr_propertyi(ctx, "#H:", 0, tmp[0], 255, 1,1);
|
||||
tmp[1] = (zr_byte)zr_propertyi(ctx, "#S:", 0, tmp[1], 255, 1,1);
|
||||
tmp[2] = (zr_byte)zr_propertyi(ctx, "#V:", 0, tmp[2], 255, 1,1);
|
||||
tmp[3] = (zr_byte)zr_propertyi(ctx, "#A:", 0, tmp[3], 255, 1,1);
|
||||
combo_color2 = zr_hsva_bv(tmp);
|
||||
}
|
||||
zr_combo_end(ctx);
|
||||
}
|
||||
|
||||
/* progressbar combobox */
|
||||
sum = x + y + z + w;
|
||||
sprintf(buffer, "%lu", sum);
|
||||
if (zr_combo_begin_text(ctx, &combo, buffer, 200)) {
|
||||
zr_layout_row_dynamic(ctx, 30, 1);
|
||||
zr_progress(ctx, &x, 100, ZR_MODIFIABLE);
|
||||
zr_progress(ctx, &y, 100, ZR_MODIFIABLE);
|
||||
zr_progress(ctx, &z, 100, ZR_MODIFIABLE);
|
||||
zr_progress(ctx, &w, 100, ZR_MODIFIABLE);
|
||||
zr_combo_end(ctx);
|
||||
}
|
||||
|
||||
/* checkbox combobox */
|
||||
sum = (size_t)(check_values[0] + check_values[1] + check_values[2] + check_values[3] + check_values[4]);
|
||||
sprintf(buffer, "%lu", sum);
|
||||
if (zr_combo_begin_text(ctx, &combo, buffer, 200)) {
|
||||
zr_layout_row_dynamic(ctx, 30, 1);
|
||||
zr_checkbox(ctx, weapons[0], &check_values[0]);
|
||||
zr_checkbox(ctx, weapons[1], &check_values[1]);
|
||||
zr_checkbox(ctx, weapons[2], &check_values[2]);
|
||||
zr_checkbox(ctx, weapons[3], &check_values[3]);
|
||||
zr_combo_end(ctx);
|
||||
}
|
||||
|
||||
/* complex text combobox */
|
||||
sprintf(buffer, "%.2f, %.2f, %.2f", position[0], position[1],position[2]);
|
||||
if (zr_combo_begin_text(ctx, &combo, buffer, 200)) {
|
||||
zr_layout_row_dynamic(ctx, 25, 1);
|
||||
zr_property_float(ctx, "#X:", -1024.0f, &position[0], 1024.0f, 1,0.5f);
|
||||
zr_property_float(ctx, "#Y:", -1024.0f, &position[1], 1024.0f, 1,0.5f);
|
||||
zr_property_float(ctx, "#Z:", -1024.0f, &position[2], 1024.0f, 1,0.5f);
|
||||
zr_combo_end(ctx);
|
||||
}
|
||||
|
||||
/* chart combobox */
|
||||
sprintf(buffer, "%.1f", chart_selection);
|
||||
if (zr_combo_begin_text(ctx, &combo, buffer, 250)) {
|
||||
size_t i = 0;
|
||||
static const float values[]={30.0f,15.0f,25.0f,10.0f,20.0f,40.0f};
|
||||
zr_layout_row_dynamic(ctx, 150, 1);
|
||||
zr_chart_begin(ctx, ZR_CHART_COLUMN, LEN(values), 0, 50);
|
||||
for (i = 0; i < LEN(values); ++i) {
|
||||
zr_flags res = zr_chart_push(ctx, values[i]);
|
||||
if (res & ZR_CHART_CLICKED) {
|
||||
chart_selection = values[i];
|
||||
zr_combo_close(ctx);
|
||||
}
|
||||
}
|
||||
zr_chart_end(ctx);
|
||||
zr_combo_end(ctx);
|
||||
}
|
||||
zr_layout_pop(ctx);
|
||||
}
|
||||
|
||||
if (zr_layout_push(ctx, ZR_LAYOUT_NODE, "Input", ZR_MINIMIZED))
|
||||
{
|
||||
static const float ratio[] = {120, 150};
|
||||
static char field_buffer[64];
|
||||
static char box_buffer[512];
|
||||
static char text[9][64];
|
||||
static size_t text_len[9];
|
||||
static size_t field_len;
|
||||
static size_t box_len;
|
||||
zr_flags active;
|
||||
|
||||
zr_layout_row(ctx, ZR_STATIC, 25, 2, ratio);
|
||||
zr_label(ctx, "Default:", ZR_TEXT_LEFT);
|
||||
|
||||
zr_edit_string(ctx, ZR_EDIT_CURSOR, text[0], &text_len[0], 64, zr_filter_default);
|
||||
zr_label(ctx, "Int:", ZR_TEXT_LEFT);
|
||||
zr_edit_string(ctx, ZR_EDIT_CURSOR, text[1], &text_len[1], 64, zr_filter_decimal);
|
||||
zr_label(ctx, "Float:", ZR_TEXT_LEFT);
|
||||
zr_edit_string(ctx, ZR_EDIT_CURSOR, text[2], &text_len[2], 64, zr_filter_float);
|
||||
zr_label(ctx, "Hex:", ZR_TEXT_LEFT);
|
||||
zr_edit_string(ctx, ZR_EDIT_CURSOR, text[4], &text_len[4], 64, zr_filter_hex);
|
||||
zr_label(ctx, "Octal:", ZR_TEXT_LEFT);
|
||||
zr_edit_string(ctx, ZR_EDIT_CURSOR, text[5], &text_len[5], 64, zr_filter_oct);
|
||||
zr_label(ctx, "Binary:", ZR_TEXT_LEFT);
|
||||
zr_edit_string(ctx, ZR_EDIT_CURSOR, text[6], &text_len[6], 64, zr_filter_binary);
|
||||
|
||||
zr_label(ctx, "Password:", ZR_TEXT_LEFT);
|
||||
{
|
||||
size_t i = 0;
|
||||
size_t old_len = text_len[8];
|
||||
char buffer[64];
|
||||
for (i = 0; i < text_len[8]; ++i) buffer[i] = '*';
|
||||
zr_edit_string(ctx, ZR_EDIT_SIMPLE, buffer, &text_len[8], 64, zr_filter_default);
|
||||
if (old_len < text_len[8])
|
||||
memcpy(&text[8][old_len], &buffer[old_len], text_len[8] - old_len);
|
||||
}
|
||||
|
||||
zr_label(ctx, "Field:", ZR_TEXT_LEFT);
|
||||
zr_edit_string(ctx, ZR_EDIT_FIELD, field_buffer, &field_len, 64, zr_filter_default);
|
||||
|
||||
zr_label(ctx, "Box:", ZR_TEXT_LEFT);
|
||||
zr_layout_row_static(ctx, 300, 278, 1);
|
||||
zr_edit_string(ctx, ZR_EDIT_BOX, box_buffer, &box_len, 512, zr_filter_default);
|
||||
|
||||
zr_layout_row(ctx, ZR_STATIC, 25, 2, ratio);
|
||||
active = zr_edit_string(ctx, ZR_EDIT_FIELD|ZR_EDIT_SIGCOMIT, text[7], &text_len[7], 64, zr_filter_ascii);
|
||||
if (zr_button_text(ctx, "Submit", ZR_BUTTON_DEFAULT) ||
|
||||
(active & ZR_EDIT_COMMITED))
|
||||
{
|
||||
text[7][text_len[7]] = '\n';
|
||||
text_len[7]++;
|
||||
memcpy(&box_buffer[box_len], &text[7], text_len[7]);
|
||||
box_len += text_len[7];
|
||||
text_len[7] = 0;
|
||||
}
|
||||
zr_layout_row_end(ctx);
|
||||
zr_layout_pop(ctx);
|
||||
}
|
||||
zr_layout_pop(ctx);
|
||||
}
|
||||
|
||||
if (zr_layout_push(ctx, ZR_LAYOUT_TAB, "Chart", ZR_MINIMIZED))
|
||||
{
|
||||
float id = 0;
|
||||
static int col_index = -1;
|
||||
static int line_index = -1;
|
||||
float step = (2*3.141592654f) / 32;
|
||||
|
||||
int i;
|
||||
int index = -1;
|
||||
struct zr_rect bounds;
|
||||
|
||||
/* line chart */
|
||||
id = 0;
|
||||
index = -1;
|
||||
zr_layout_row_dynamic(ctx, 100, 1);
|
||||
bounds = zr_widget_bounds(ctx);
|
||||
zr_chart_begin(ctx, ZR_CHART_LINES, 32, -1.0f, 1.0f);
|
||||
for (i = 0; i < 32; ++i) {
|
||||
zr_flags res = zr_chart_push(ctx, (float)cos(id));
|
||||
if (res & ZR_CHART_HOVERING)
|
||||
index = (int)i;
|
||||
if (res & ZR_CHART_CLICKED)
|
||||
line_index = (int)i;
|
||||
id += step;
|
||||
}
|
||||
zr_chart_end(ctx);
|
||||
|
||||
if (index != -1) {
|
||||
char buffer[ZR_MAX_NUMBER_BUFFER];
|
||||
float val = (float)cos((float)index*step);
|
||||
sprintf(buffer, "Value: %.2f", val);
|
||||
zr_tooltip(ctx, buffer);
|
||||
}
|
||||
if (line_index != -1) {
|
||||
zr_layout_row_dynamic(ctx, 20, 1);
|
||||
zr_labelf(ctx, ZR_TEXT_LEFT, "Selected value: %.2f", (float)cos((float)index*step));
|
||||
}
|
||||
|
||||
/* column chart */
|
||||
zr_layout_row_dynamic(ctx, 100, 1);
|
||||
bounds = zr_widget_bounds(ctx);
|
||||
zr_chart_begin(ctx, ZR_CHART_COLUMN, 32, 0.0f, 1.0f);
|
||||
for (i = 0; i < 32; ++i) {
|
||||
zr_flags res = zr_chart_push(ctx, (float)fabs(sin(id)));
|
||||
if (res & ZR_CHART_HOVERING)
|
||||
index = (int)i;
|
||||
if (res & ZR_CHART_CLICKED)
|
||||
col_index = (int)i;
|
||||
id += step;
|
||||
}
|
||||
zr_chart_end(ctx);
|
||||
|
||||
if (index != -1) {
|
||||
char buffer[ZR_MAX_NUMBER_BUFFER];
|
||||
sprintf(buffer, "Value: %.2f", (float)fabs(sin(step * (float)index)));
|
||||
zr_tooltip(ctx, buffer);
|
||||
}
|
||||
if (col_index != -1) {
|
||||
zr_layout_row_dynamic(ctx, 20, 1);
|
||||
zr_labelf(ctx, ZR_TEXT_LEFT, "Selected value: %.2f", (float)fabs(sin(step * (float)col_index)));
|
||||
}
|
||||
zr_layout_pop(ctx);
|
||||
}
|
||||
|
||||
if (zr_layout_push(ctx, ZR_LAYOUT_TAB, "Popup", ZR_MINIMIZED))
|
||||
{
|
||||
static struct zr_color color = {255,0,0, 255};
|
||||
static int select[4];
|
||||
static int popup_active;
|
||||
const struct zr_input *in = &ctx->input;
|
||||
struct zr_rect bounds;
|
||||
|
||||
/* menu contextual */
|
||||
zr_layout_row_static(ctx, 30, 150, 1);
|
||||
bounds = zr_widget_bounds(ctx);
|
||||
zr_label(ctx, "Right click me for menu", ZR_TEXT_LEFT);
|
||||
|
||||
if (zr_contextual_begin(ctx, &menu, 0, zr_vec2(100, 300), bounds)) {
|
||||
static size_t prog = 40;
|
||||
static int slider = 10;
|
||||
|
||||
zr_layout_row_dynamic(ctx, 25, 1);
|
||||
zr_checkbox(ctx, "Menu", &show_menu);
|
||||
zr_progress(ctx, &prog, 100, ZR_MODIFIABLE);
|
||||
zr_slider_int(ctx, 0, &slider, 16, 1);
|
||||
if (zr_contextual_item(ctx, "About", ZR_TEXT_CENTERED))
|
||||
show_app_about = zr_true;
|
||||
zr_selectable(ctx, select[0]?"Unselect":"Select", ZR_TEXT_LEFT, &select[0]);
|
||||
zr_selectable(ctx, select[1]?"Unselect":"Select", ZR_TEXT_LEFT, &select[1]);
|
||||
zr_selectable(ctx, select[2]?"Unselect":"Select", ZR_TEXT_LEFT, &select[2]);
|
||||
zr_selectable(ctx, select[3]?"Unselect":"Select", ZR_TEXT_LEFT, &select[3]);
|
||||
zr_contextual_end(ctx);
|
||||
}
|
||||
|
||||
/* color contextual */
|
||||
zr_layout_row_begin(ctx, ZR_STATIC, 30, 2);
|
||||
zr_layout_row_push(ctx, 100);
|
||||
zr_label(ctx, "Right Click here:", ZR_TEXT_LEFT);
|
||||
zr_layout_row_push(ctx, 50);
|
||||
bounds = zr_widget_bounds(ctx);
|
||||
zr_button_color(ctx, color, ZR_BUTTON_DEFAULT);
|
||||
zr_layout_row_end(ctx);
|
||||
|
||||
if (zr_contextual_begin(ctx, &menu, 0, zr_vec2(350, 60), bounds)) {
|
||||
zr_layout_row_dynamic(ctx, 30, 4);
|
||||
color.r = (zr_byte)zr_propertyi(ctx, "#r", 0, color.r, 255, 1, 1);
|
||||
color.g = (zr_byte)zr_propertyi(ctx, "#g", 0, color.g, 255, 1, 1);
|
||||
color.b = (zr_byte)zr_propertyi(ctx, "#b", 0, color.b, 255, 1, 1);
|
||||
color.a = (zr_byte)zr_propertyi(ctx, "#a", 0, color.a, 255, 1, 1);
|
||||
zr_contextual_end(ctx);
|
||||
}
|
||||
|
||||
/* popup */
|
||||
zr_layout_row_begin(ctx, ZR_STATIC, 30, 2);
|
||||
zr_layout_row_push(ctx, 100);
|
||||
zr_label(ctx, "Popup:", ZR_TEXT_LEFT);
|
||||
zr_layout_row_push(ctx, 50);
|
||||
if (zr_button_text(ctx, "Popup", ZR_BUTTON_DEFAULT))
|
||||
popup_active = 1;
|
||||
zr_layout_row_end(ctx);
|
||||
|
||||
if (popup_active)
|
||||
{
|
||||
static struct zr_rect s = {20, 100, 220, 150};
|
||||
if (zr_popup_begin(ctx, &menu, ZR_POPUP_STATIC, "Error", ZR_WINDOW_DYNAMIC, s))
|
||||
{
|
||||
zr_layout_row_dynamic(ctx, 25, 1);
|
||||
zr_label(ctx, "A terrible error as occured", ZR_TEXT_LEFT);
|
||||
zr_layout_row_dynamic(ctx, 25, 2);
|
||||
if (zr_button_text(ctx, "OK", ZR_BUTTON_DEFAULT)) {
|
||||
popup_active = 0;
|
||||
zr_popup_close(ctx);
|
||||
}
|
||||
if (zr_button_text(ctx, "Cancel", ZR_BUTTON_DEFAULT)) {
|
||||
popup_active = 0;
|
||||
zr_popup_close(ctx);
|
||||
}
|
||||
zr_popup_end(ctx);
|
||||
} else popup_active = zr_false;
|
||||
}
|
||||
|
||||
/* tooltip */
|
||||
zr_layout_row_static(ctx, 30, 150, 1);
|
||||
bounds = zr_widget_bounds(ctx);
|
||||
zr_label(ctx, "Hover me for tooltip", ZR_TEXT_LEFT);
|
||||
if (zr_input_is_mouse_hovering_rect(in, bounds))
|
||||
zr_tooltip(ctx, "This is a tooltip");
|
||||
|
||||
zr_layout_pop(ctx);
|
||||
}
|
||||
|
||||
if (zr_layout_push(ctx, ZR_LAYOUT_TAB, "Layout", ZR_MINIMIZED))
|
||||
{
|
||||
if (zr_layout_push(ctx, ZR_LAYOUT_NODE, "Widget", ZR_MINIMIZED))
|
||||
{
|
||||
float ratio_two[] = {0.2f, 0.6f, 0.2f};
|
||||
float width_two[] = {100, 200, 50};
|
||||
|
||||
zr_layout_row_dynamic(ctx, 30, 1);
|
||||
zr_label(ctx, "Dynamic fixed column layout with generated position and size:", ZR_TEXT_LEFT);
|
||||
zr_layout_row_dynamic(ctx, 30, 3);
|
||||
zr_button_text(ctx, "button", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "button", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "button", ZR_BUTTON_DEFAULT);
|
||||
|
||||
zr_layout_row_dynamic(ctx, 30, 1);
|
||||
zr_label(ctx, "static fixed column layout with generated position and size:", ZR_TEXT_LEFT);
|
||||
zr_layout_row_static(ctx, 30, 100, 3);
|
||||
zr_button_text(ctx, "button", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "button", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "button", ZR_BUTTON_DEFAULT);
|
||||
|
||||
zr_layout_row_dynamic(ctx, 30, 1);
|
||||
zr_label(ctx, "Dynamic array-based custom column layout with generated position and custom size:",ZR_TEXT_LEFT);
|
||||
zr_layout_row(ctx, ZR_DYNAMIC, 30, 3, ratio_two);
|
||||
zr_button_text(ctx, "button", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "button", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "button", ZR_BUTTON_DEFAULT);
|
||||
|
||||
zr_layout_row_dynamic(ctx, 30, 1);
|
||||
zr_label(ctx, "Static array-based custom column layout with generated position and custom size:",ZR_TEXT_LEFT );
|
||||
zr_layout_row(ctx, ZR_STATIC, 30, 3, width_two);
|
||||
zr_button_text(ctx, "button", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "button", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "button", ZR_BUTTON_DEFAULT);
|
||||
|
||||
zr_layout_row_dynamic(ctx, 30, 1);
|
||||
zr_label(ctx, "Dynamic immediate mode custom column layout with generated position and custom size:",ZR_TEXT_LEFT);
|
||||
zr_layout_row_begin(ctx, ZR_DYNAMIC, 30, 3);
|
||||
zr_layout_row_push(ctx, 0.2f);
|
||||
zr_button_text(ctx, "button", ZR_BUTTON_DEFAULT);
|
||||
zr_layout_row_push(ctx, 0.6f);
|
||||
zr_button_text(ctx, "button", ZR_BUTTON_DEFAULT);
|
||||
zr_layout_row_push(ctx, 0.2f);
|
||||
zr_button_text(ctx, "button", ZR_BUTTON_DEFAULT);
|
||||
zr_layout_row_end(ctx);
|
||||
|
||||
zr_layout_row_dynamic(ctx, 30, 1);
|
||||
zr_label(ctx, "Static immmediate mode custom column layout with generated position and custom size:", ZR_TEXT_LEFT);
|
||||
zr_layout_row_begin(ctx, ZR_STATIC, 30, 3);
|
||||
zr_layout_row_push(ctx, 100);
|
||||
zr_button_text(ctx, "button", ZR_BUTTON_DEFAULT);
|
||||
zr_layout_row_push(ctx, 200);
|
||||
zr_button_text(ctx, "button", ZR_BUTTON_DEFAULT);
|
||||
zr_layout_row_push(ctx, 50);
|
||||
zr_button_text(ctx, "button", ZR_BUTTON_DEFAULT);
|
||||
zr_layout_row_end(ctx);
|
||||
|
||||
zr_layout_row_dynamic(ctx, 30, 1);
|
||||
zr_label(ctx, "Static free space with custom position and custom size:", ZR_TEXT_LEFT);
|
||||
zr_layout_space_begin(ctx, ZR_STATIC, 120, 4);
|
||||
zr_layout_space_push(ctx, zr_rect(100, 0, 100, 30));
|
||||
zr_button_text(ctx, "button", ZR_BUTTON_DEFAULT);
|
||||
zr_layout_space_push(ctx, zr_rect(0, 15, 100, 30));
|
||||
zr_button_text(ctx, "button", ZR_BUTTON_DEFAULT);
|
||||
zr_layout_space_push(ctx, zr_rect(200, 15, 100, 30));
|
||||
zr_button_text(ctx, "button", ZR_BUTTON_DEFAULT);
|
||||
zr_layout_space_push(ctx, zr_rect(100, 30, 100, 30));
|
||||
zr_button_text(ctx, "button", ZR_BUTTON_DEFAULT);
|
||||
zr_layout_space_end(ctx);
|
||||
zr_layout_pop(ctx);
|
||||
}
|
||||
|
||||
if (zr_layout_push(ctx, ZR_LAYOUT_NODE, "Group", ZR_MINIMIZED))
|
||||
{
|
||||
static int group_titlebar = zr_false;
|
||||
static int group_border = zr_true;
|
||||
static int group_no_scrollbar = zr_false;
|
||||
static int group_width = 320;
|
||||
static int group_height = 200;
|
||||
struct zr_panel tab;
|
||||
|
||||
zr_flags group_flags = 0;
|
||||
if (group_border) group_flags |= ZR_WINDOW_BORDER;
|
||||
if (group_no_scrollbar) group_flags |= ZR_WINDOW_NO_SCROLLBAR;
|
||||
if (group_titlebar) group_flags |= ZR_WINDOW_TITLE;
|
||||
|
||||
zr_layout_row_dynamic(ctx, 30, 3);
|
||||
zr_checkbox(ctx, "Titlebar", &group_titlebar);
|
||||
zr_checkbox(ctx, "Border", &group_border);
|
||||
zr_checkbox(ctx, "No Scrollbar", &group_no_scrollbar);
|
||||
|
||||
zr_layout_row_begin(ctx, ZR_STATIC, 22, 2);
|
||||
zr_layout_row_push(ctx, 50);
|
||||
zr_label(ctx, "size:", ZR_TEXT_LEFT);
|
||||
zr_layout_row_push(ctx, 130);
|
||||
zr_property_int(ctx, "#Width:", 100, &group_width, 500, 10, 1);
|
||||
zr_layout_row_push(ctx, 130);
|
||||
zr_property_int(ctx, "#Height:", 100, &group_height, 500, 10, 1);
|
||||
zr_layout_row_end(ctx);
|
||||
|
||||
zr_layout_row_static(ctx, (float)group_height, group_width, 2);
|
||||
if (zr_group_begin(ctx, &tab, "Group", group_flags)) {
|
||||
int i = 0;
|
||||
static int selected[16];
|
||||
zr_layout_row_static(ctx, 18, 100, 1);
|
||||
for (i = 0; i < 16; ++i)
|
||||
zr_selectable(ctx, (selected[i]) ? "Selected": "Unselected", ZR_TEXT_CENTERED, &selected[i]);
|
||||
zr_group_end(ctx);
|
||||
}
|
||||
zr_layout_pop(ctx);
|
||||
}
|
||||
|
||||
if (zr_layout_push(ctx, ZR_LAYOUT_NODE, "Simple", ZR_MINIMIZED))
|
||||
{
|
||||
struct zr_panel tab;
|
||||
zr_layout_row_dynamic(ctx, 300, 2);
|
||||
if (zr_group_begin(ctx, &tab, "Group_Without_Border", 0)) {
|
||||
int i = 0;
|
||||
char buffer[64];
|
||||
zr_layout_row_static(ctx, 18, 150, 1);
|
||||
for (i = 0; i < 64; ++i) {
|
||||
sprintf(buffer, "0x%02x", i);
|
||||
zr_labelf(ctx, ZR_TEXT_LEFT, "%s: scrollable region", buffer);
|
||||
}
|
||||
zr_group_end(ctx);
|
||||
}
|
||||
if (zr_group_begin(ctx, &tab, "Group_With_Border", ZR_WINDOW_BORDER)) {
|
||||
int i = 0;
|
||||
char buffer[64];
|
||||
zr_layout_row_dynamic(ctx, 25, 2);
|
||||
for (i = 0; i < 64; ++i) {
|
||||
sprintf(buffer, "%08d", ((((i%7)*10)^32))+(64+(i%2)*2));
|
||||
zr_button_text(ctx, buffer, ZR_BUTTON_DEFAULT);
|
||||
}
|
||||
zr_group_end(ctx);
|
||||
}
|
||||
zr_layout_pop(ctx);
|
||||
}
|
||||
|
||||
if (zr_layout_push(ctx, ZR_LAYOUT_NODE, "Complex", ZR_MINIMIZED))
|
||||
{
|
||||
int i;
|
||||
struct zr_panel tab;
|
||||
zr_layout_space_begin(ctx, ZR_STATIC, 500, 64);
|
||||
zr_layout_space_push(ctx, zr_rect(0,0,150,500));
|
||||
if (zr_group_begin(ctx, &tab, "Group_left", ZR_WINDOW_BORDER)) {
|
||||
static int selected[32];
|
||||
zr_layout_row_static(ctx, 18, 100, 1);
|
||||
for (i = 0; i < 32; ++i)
|
||||
zr_selectable(ctx, (selected[i]) ? "Selected": "Unselected", ZR_TEXT_CENTERED, &selected[i]);
|
||||
zr_group_end(ctx);
|
||||
}
|
||||
|
||||
zr_layout_space_push(ctx, zr_rect(160,0,150,240));
|
||||
if (zr_group_begin(ctx, &tab, "Group_top", ZR_WINDOW_BORDER)) {
|
||||
zr_layout_row_dynamic(ctx, 25, 1);
|
||||
zr_button_text(ctx, "#FFAA", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "#FFBB", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "#FFCC", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "#FFDD", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "#FFEE", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "#FFFF", ZR_BUTTON_DEFAULT);
|
||||
zr_group_end(ctx);
|
||||
}
|
||||
|
||||
zr_layout_space_push(ctx, zr_rect(160,250,150,250));
|
||||
if (zr_group_begin(ctx, &tab, "Group_buttom", ZR_WINDOW_BORDER)) {
|
||||
zr_layout_row_dynamic(ctx, 25, 1);
|
||||
zr_button_text(ctx, "#FFAA", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "#FFBB", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "#FFCC", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "#FFDD", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "#FFEE", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "#FFFF", ZR_BUTTON_DEFAULT);
|
||||
zr_group_end(ctx);
|
||||
}
|
||||
|
||||
zr_layout_space_push(ctx, zr_rect(320,0,150,150));
|
||||
if (zr_group_begin(ctx, &tab, "Group_right_top", ZR_WINDOW_BORDER)) {
|
||||
static int selected[4];
|
||||
zr_layout_row_static(ctx, 18, 100, 1);
|
||||
for (i = 0; i < 4; ++i)
|
||||
zr_selectable(ctx, (selected[i]) ? "Selected": "Unselected", ZR_TEXT_CENTERED, &selected[i]);
|
||||
zr_group_end(ctx);
|
||||
}
|
||||
|
||||
zr_layout_space_push(ctx, zr_rect(320,160,150,150));
|
||||
if (zr_group_begin(ctx, &tab, "Group_right_center", ZR_WINDOW_BORDER)) {
|
||||
static int selected[4];
|
||||
zr_layout_row_static(ctx, 18, 100, 1);
|
||||
for (i = 0; i < 4; ++i)
|
||||
zr_selectable(ctx, (selected[i]) ? "Selected": "Unselected", ZR_TEXT_CENTERED, &selected[i]);
|
||||
zr_group_end(ctx);
|
||||
}
|
||||
|
||||
zr_layout_space_push(ctx, zr_rect(320,320,150,150));
|
||||
if (zr_group_begin(ctx, &tab, "Group_right_bottom", ZR_WINDOW_BORDER)) {
|
||||
static int selected[4];
|
||||
zr_layout_row_static(ctx, 18, 100, 1);
|
||||
for (i = 0; i < 4; ++i)
|
||||
zr_selectable(ctx, (selected[i]) ? "Selected": "Unselected", ZR_TEXT_CENTERED, &selected[i]);
|
||||
zr_group_end(ctx);
|
||||
}
|
||||
zr_layout_space_end(ctx);
|
||||
zr_layout_pop(ctx);
|
||||
}
|
||||
|
||||
if (zr_layout_push(ctx, ZR_LAYOUT_NODE, "Splitter", ZR_MINIMIZED))
|
||||
{
|
||||
const struct zr_input *in = &ctx->input;
|
||||
zr_layout_row_static(ctx, 20, 320, 1);
|
||||
zr_label(ctx, "Use slider and spinner to change tile size", ZR_TEXT_LEFT);
|
||||
zr_label(ctx, "Drag the space between tiles to change tile ratio", ZR_TEXT_LEFT);
|
||||
|
||||
if (zr_layout_push(ctx, ZR_LAYOUT_NODE, "Vertical", ZR_MINIMIZED))
|
||||
{
|
||||
static float a = 100, b = 100, c = 100;
|
||||
struct zr_rect bounds;
|
||||
struct zr_panel sub;
|
||||
|
||||
float row_layout[5];
|
||||
row_layout[0] = a;
|
||||
row_layout[1] = 8;
|
||||
row_layout[2] = b;
|
||||
row_layout[3] = 8;
|
||||
row_layout[4] = c;
|
||||
|
||||
/* header */
|
||||
zr_layout_row_static(ctx, 30, 100, 2);
|
||||
zr_label(ctx, "left:", ZR_TEXT_LEFT);
|
||||
zr_slider_float(ctx, 10.0f, &a, 200.0f, 10.0f);
|
||||
|
||||
zr_label(ctx, "middle:", ZR_TEXT_LEFT);
|
||||
zr_slider_float(ctx, 10.0f, &b, 200.0f, 10.0f);
|
||||
|
||||
zr_label(ctx, "right:", ZR_TEXT_LEFT);
|
||||
zr_slider_float(ctx, 10.0f, &c, 200.0f, 10.0f);
|
||||
|
||||
/* tiles */
|
||||
zr_layout_row(ctx, ZR_STATIC, 200, 5, row_layout);
|
||||
zr_push_property(ctx, ZR_PROPERTY_ITEM_SPACING, zr_vec2(0, 4));
|
||||
|
||||
/* left space */
|
||||
if (zr_group_begin(ctx, &sub, "left", ZR_WINDOW_NO_SCROLLBAR|ZR_WINDOW_BORDER|ZR_WINDOW_NO_SCROLLBAR)) {
|
||||
zr_layout_row_dynamic(ctx, 25, 1);
|
||||
zr_button_text(ctx, "#FFAA", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "#FFBB", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "#FFCC", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "#FFDD", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "#FFEE", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "#FFFF", ZR_BUTTON_DEFAULT);
|
||||
zr_group_end(ctx);
|
||||
}
|
||||
|
||||
/* scaler */
|
||||
bounds = zr_widget_bounds(ctx);
|
||||
zr_spacing(ctx, 1);
|
||||
if ((zr_input_is_mouse_hovering_rect(in, bounds) ||
|
||||
zr_input_is_mouse_prev_hovering_rect(in, bounds)) &&
|
||||
zr_input_is_mouse_down(in, ZR_BUTTON_LEFT))
|
||||
{
|
||||
a = row_layout[0] + in->mouse.delta.x;
|
||||
b = row_layout[2] - in->mouse.delta.x;
|
||||
}
|
||||
|
||||
/* middle space */
|
||||
if (zr_group_begin(ctx, &sub, "center", ZR_WINDOW_BORDER|ZR_WINDOW_NO_SCROLLBAR)) {
|
||||
zr_layout_row_dynamic(ctx, 25, 1);
|
||||
zr_button_text(ctx, "#FFAA", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "#FFBB", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "#FFCC", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "#FFDD", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "#FFEE", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "#FFFF", ZR_BUTTON_DEFAULT);
|
||||
zr_group_end(ctx);
|
||||
}
|
||||
|
||||
/* scaler */
|
||||
bounds = zr_widget_bounds(ctx);
|
||||
zr_spacing(ctx, 1);
|
||||
if ((zr_input_is_mouse_hovering_rect(in, bounds) ||
|
||||
zr_input_is_mouse_prev_hovering_rect(in, bounds)) &&
|
||||
zr_input_is_mouse_down(in, ZR_BUTTON_LEFT))
|
||||
{
|
||||
b = (row_layout[2] + in->mouse.delta.x);
|
||||
c = (row_layout[4] - in->mouse.delta.x);
|
||||
}
|
||||
|
||||
/* right space */
|
||||
if (zr_group_begin(ctx, &sub, "right", ZR_WINDOW_BORDER|ZR_WINDOW_NO_SCROLLBAR)) {
|
||||
zr_layout_row_dynamic(ctx, 25, 1);
|
||||
zr_button_text(ctx, "#FFAA", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "#FFBB", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "#FFCC", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "#FFDD", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "#FFEE", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "#FFFF", ZR_BUTTON_DEFAULT);
|
||||
zr_group_end(ctx);
|
||||
}
|
||||
|
||||
zr_pop_property(ctx);
|
||||
zr_layout_pop(ctx);
|
||||
}
|
||||
|
||||
if (zr_layout_push(ctx, ZR_LAYOUT_NODE, "Horizontal", ZR_MINIMIZED))
|
||||
{
|
||||
static float a = 100, b = 100, c = 100;
|
||||
struct zr_panel sub;
|
||||
struct zr_rect bounds;
|
||||
|
||||
/* header */
|
||||
zr_layout_row_static(ctx, 30, 100, 2);
|
||||
zr_label(ctx, "top:", ZR_TEXT_LEFT);
|
||||
zr_slider_float(ctx, 10.0f, &a, 200.0f, 10.0f);
|
||||
|
||||
zr_label(ctx, "middle:", ZR_TEXT_LEFT);
|
||||
zr_slider_float(ctx, 10.0f, &b, 200.0f, 10.0f);
|
||||
|
||||
zr_label(ctx, "bottom:", ZR_TEXT_LEFT);
|
||||
zr_slider_float(ctx, 10.0f, &c, 200.0f, 10.0f);
|
||||
|
||||
/* top space */
|
||||
zr_layout_row_dynamic(ctx, a, 1);
|
||||
if (zr_group_begin(ctx, &sub, "top", ZR_WINDOW_NO_SCROLLBAR|ZR_WINDOW_BORDER)) {
|
||||
zr_layout_row_dynamic(ctx, 25, 3);
|
||||
zr_button_text(ctx, "#FFAA", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "#FFBB", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "#FFCC", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "#FFDD", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "#FFEE", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "#FFFF", ZR_BUTTON_DEFAULT);
|
||||
zr_group_end(ctx);
|
||||
}
|
||||
|
||||
/* scaler */
|
||||
zr_layout_row_dynamic(ctx, 8, 1);
|
||||
bounds = zr_widget_bounds(ctx);
|
||||
zr_spacing(ctx, 1);
|
||||
if ((zr_input_is_mouse_hovering_rect(in, bounds) ||
|
||||
zr_input_is_mouse_prev_hovering_rect(in, bounds)) &&
|
||||
zr_input_is_mouse_down(in, ZR_BUTTON_LEFT))
|
||||
{
|
||||
a = a + in->mouse.delta.y;
|
||||
b = b - in->mouse.delta.y;
|
||||
}
|
||||
|
||||
/* middle space */
|
||||
zr_layout_row_dynamic(ctx, b, 1);
|
||||
if (zr_group_begin(ctx, &sub, "middle", ZR_WINDOW_NO_SCROLLBAR|ZR_WINDOW_BORDER)) {
|
||||
zr_layout_row_dynamic(ctx, 25, 3);
|
||||
zr_button_text(ctx, "#FFAA", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "#FFBB", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "#FFCC", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "#FFDD", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "#FFEE", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "#FFFF", ZR_BUTTON_DEFAULT);
|
||||
zr_group_end(ctx);
|
||||
}
|
||||
|
||||
{
|
||||
/* scaler */
|
||||
zr_layout_row_dynamic(ctx, 8, 1);
|
||||
bounds = zr_widget_bounds(ctx);
|
||||
if ((zr_input_is_mouse_hovering_rect(in, bounds) ||
|
||||
zr_input_is_mouse_prev_hovering_rect(in, bounds)) &&
|
||||
zr_input_is_mouse_down(in, ZR_BUTTON_LEFT))
|
||||
{
|
||||
b = b + in->mouse.delta.y;
|
||||
c = c - in->mouse.delta.y;
|
||||
}
|
||||
}
|
||||
|
||||
/* bottom space */
|
||||
zr_layout_row_dynamic(ctx, c, 1);
|
||||
if (zr_group_begin(ctx, &sub, "bottom", ZR_WINDOW_NO_SCROLLBAR|ZR_WINDOW_BORDER)) {
|
||||
zr_layout_row_dynamic(ctx, 25, 3);
|
||||
zr_button_text(ctx, "#FFAA", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "#FFBB", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "#FFCC", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "#FFDD", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "#FFEE", ZR_BUTTON_DEFAULT);
|
||||
zr_button_text(ctx, "#FFFF", ZR_BUTTON_DEFAULT);
|
||||
zr_group_end(ctx);
|
||||
}
|
||||
zr_layout_pop(ctx);
|
||||
}
|
||||
zr_layout_pop(ctx);
|
||||
}
|
||||
zr_layout_pop(ctx);
|
||||
}
|
||||
}
|
||||
zr_end(ctx);
|
||||
}
|
||||
|
||||
|
||||
|
@ -1,27 +0,0 @@
|
||||
static void
|
||||
simple_window(struct zr_context *ctx)
|
||||
{
|
||||
/* simple demo window */
|
||||
struct zr_panel layout;
|
||||
if (zr_begin(ctx, &layout, "Show", zr_rect(420, 350, 200, 200),
|
||||
ZR_WINDOW_BORDER|ZR_WINDOW_MOVABLE|ZR_WINDOW_SCALABLE|
|
||||
ZR_WINDOW_CLOSABLE|ZR_WINDOW_MINIMIZABLE|ZR_WINDOW_TITLE))
|
||||
{
|
||||
enum {EASY, HARD};
|
||||
static int op = EASY;
|
||||
static int property = 20;
|
||||
|
||||
zr_layout_row_static(ctx, 30, 80, 1);
|
||||
if (zr_button_text(ctx, "button", ZR_BUTTON_DEFAULT)) {
|
||||
/* event handling */
|
||||
}
|
||||
zr_layout_row_dynamic(ctx, 30, 2);
|
||||
if (zr_option(ctx, "easy", op == EASY)) op = EASY;
|
||||
if (zr_option(ctx, "hard", op == HARD)) op = HARD;
|
||||
|
||||
zr_layout_row_dynamic(ctx, 22, 1);
|
||||
zr_property_int(ctx, "Compression:", 0, &property, 100, 10, 1);
|
||||
}
|
||||
zr_end(ctx);
|
||||
}
|
||||
|
@ -39,6 +39,8 @@
|
||||
#define DEMO_DO_NOT_DRAW_IMAGES
|
||||
#include "../demo.c"
|
||||
|
||||
#if 0
|
||||
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Wsign-conversion"
|
||||
@ -79,6 +81,8 @@
|
||||
#pragma warning (pop)
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
typedef struct XFont XFont;
|
||||
typedef struct XSurface XSurface;
|
||||
typedef struct XWindow XWindow;
|
||||
@ -483,6 +487,8 @@ surface_del(XSurface *surf)
|
||||
free(surf);
|
||||
}
|
||||
|
||||
#if 0
|
||||
|
||||
static XSurface*
|
||||
surface_load(const char *filename, Display *dpy, int screen, Window root)
|
||||
{
|
||||
@ -513,6 +519,8 @@ icon_load(const char *filename, Display *dpy, int screen, Window root)
|
||||
return zr_image_ptr(surf);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
static void
|
||||
input_key(struct XWindow *xw, struct zr_context *ctx, XEvent *evt, int down)
|
||||
{
|
||||
|
169
zahnrad.h
169
zahnrad.h
@ -1085,6 +1085,12 @@ const char *zr_edit_box_get_selection(zr_size *len, struct zr_edit_box*);
|
||||
/*==============================================================
|
||||
* EVENTS
|
||||
* =============================================================*/
|
||||
enum zr_property_state {
|
||||
ZR_PROPERTY_DEFAULT,
|
||||
ZR_PROPERTY_EDIT,
|
||||
ZR_PROPERTY_DRAG
|
||||
};
|
||||
|
||||
enum zr_event_type {
|
||||
ZR_EVENT_WINDOW,
|
||||
ZR_EVENT_TAB,
|
||||
@ -1095,85 +1101,80 @@ enum zr_event_type {
|
||||
ZR_EVENT_SLIDER,
|
||||
ZR_EVENT_PROGRESS,
|
||||
ZR_EVENT_PROPERTY,
|
||||
ZR_EVENT_CHART,
|
||||
ZR_EVENT_MAX
|
||||
};
|
||||
|
||||
enum zr_window_event_type {
|
||||
ZR_EVENT_WINDOW_NONE = 0,
|
||||
ZR_EVENT_WINDOW_ACTIVE = ZR_FLAG(0),
|
||||
ZR_EVENT_WINDOW_EXPOSED = ZR_FLAG(1),
|
||||
ZR_EVENT_WINDOW_HIDDEN = ZR_FLAG(2),
|
||||
ZR_EVENT_WINDOW_MOVED = ZR_FLAG(3),
|
||||
ZR_EVENT_WINDOW_RESIZED = ZR_FLAG(4),
|
||||
ZR_EVENT_WINDOW_MINIMIZED = ZR_FLAG(5),
|
||||
ZR_EVENT_WINDOW_MAXIMIZED = ZR_FLAG(6),
|
||||
ZR_EVENT_WINDOW_HOVERED = ZR_FLAG(7),
|
||||
ZR_EVENT_WINDOW_CLOSE = ZR_FLAG(9),
|
||||
ZR_EVENT_WINDOW_ALL = ZR_FLAG(10)-1
|
||||
};
|
||||
/* window events */
|
||||
#define ZR_EVENT_WINDOW_NONE 0,
|
||||
#define ZR_EVENT_WINDOW_ACTIVE ZR_FLAG(0)
|
||||
#define ZR_EVENT_WINDOW_EXPOSED ZR_FLAG(1)
|
||||
#define ZR_EVENT_WINDOW_HIDDEN ZR_FLAG(2)
|
||||
#define ZR_EVENT_WINDOW_MOVED ZR_FLAG(3)
|
||||
#define ZR_EVENT_WINDOW_RESIZED ZR_FLAG(4)
|
||||
#define ZR_EVENT_WINDOW_MINIMIZED ZR_FLAG(5)
|
||||
#define ZR_EVENT_WINDOW_MAXIMIZED ZR_FLAG(6)
|
||||
#define ZR_EVENT_WINDOW_HOVERED ZR_FLAG(7)
|
||||
#define ZR_EVENT_WINDOW_CLOSED ZR_FLAG(9)
|
||||
#define ZR_EVENT_WINDOW_FOCUS ZR_FLAG(10)
|
||||
#define ZR_EVENT_WINDOW_ALL (ZR_FLAG(11)-1)
|
||||
|
||||
enum zr_button_event_type {
|
||||
ZR_EVENT_BUTTON_NONE = 0,
|
||||
ZR_EVENT_BUTTON_HOVERED = ZR_FLAG(0),
|
||||
ZR_EVENT_BUTTON_CLICKED = ZR_FLAG(2),
|
||||
ZR_EVENT_BUTTON_PRESSED = ZR_FLAG(3),
|
||||
ZR_EVENT_BUTTON_ALL = ZR_FLAG(4)-1
|
||||
};
|
||||
/* button events */
|
||||
#define ZR_EVENT_BUTTON_NONE 0
|
||||
#define ZR_EVENT_BUTTON_HOVERED ZR_FLAG(0)
|
||||
#define ZR_EVENT_BUTTON_CLICKED ZR_FLAG(2)
|
||||
#define ZR_EVENT_BUTTON_PRESSED ZR_FLAG(3)
|
||||
#define ZR_EVENT_BUTTON_ALL (ZR_FLAG(4)-1)
|
||||
|
||||
enum zr_option_event_type {
|
||||
ZR_EVENT_OPTION_NONE = 0,
|
||||
ZR_EVENT_OPTION_HOVERED = ZR_FLAG(0),
|
||||
ZR_EVENT_OPTION_TOGGLED = ZR_FLAG(2),
|
||||
ZR_EVENT_OPTION_ALL = ZR_FLAG(3)-1
|
||||
};
|
||||
/* option events */
|
||||
#define ZR_EVENT_OPTION_NONE 0
|
||||
#define ZR_EVENT_OPTION_HOVERED ZR_FLAG(0)
|
||||
#define ZR_EVENT_OPTION_TOGGLED ZR_FLAG(2)
|
||||
#define ZR_EVENT_OPTION_ALL (ZR_FLAG(3)-1)
|
||||
|
||||
enum zr_checkbox_event_type {
|
||||
ZR_EVENT_CHECK_NONE = 0,
|
||||
ZR_EVENT_CHECK_HOVERED = ZR_FLAG(0),
|
||||
ZR_EVENT_CHECK_TOGGLED = ZR_FLAG(2),
|
||||
ZR_EVENT_CHECK_ALL = ZR_FLAG(3)-1
|
||||
};
|
||||
/* checkbox events */
|
||||
#define ZR_EVENT_CHECK_NONE 0
|
||||
#define ZR_EVENT_CHECK_HOVERED ZR_FLAG(0)
|
||||
#define ZR_EVENT_CHECK_TOGGLED ZR_FLAG(2)
|
||||
#define ZR_EVENT_CHECK_ALL (ZR_FLAG(3)-1)
|
||||
|
||||
enum zr_select_event_type {
|
||||
ZR_EVENT_SELECT_NONE = 0,
|
||||
ZR_EVENT_SELECT_HOVERED = ZR_FLAG(0),
|
||||
ZR_EVENT_SELECT_TOGGLED = ZR_FLAG(2),
|
||||
ZR_EVENT_SELECT_ALL = ZR_FLAG(3)-1
|
||||
};
|
||||
/* select events */
|
||||
#define ZR_EVENT_SELECT_NONE 0
|
||||
#define ZR_EVENT_SELECT_HOVERED ZR_FLAG(0)
|
||||
#define ZR_EVENT_SELECT_TOGGLED ZR_FLAG(2)
|
||||
#define ZR_EVENT_SELECT_ALL (ZR_FLAG(3)-1)
|
||||
|
||||
enum zr_slider_event_type {
|
||||
ZR_EVENT_SLIDER_NONE = 0,
|
||||
ZR_EVENT_SLIDER_HOVERED = ZR_FLAG(0),
|
||||
ZR_EVENT_SLIDER_CHANGED = ZR_FLAG(2),
|
||||
ZR_EVENT_SLIDER_ALL = ZR_FLAG(3)-1
|
||||
};
|
||||
/* slider events */
|
||||
#define ZR_EVENT_SLIDER_NONE 0
|
||||
#define ZR_EVENT_SLIDER_HOVERED ZR_FLAG(0)
|
||||
#define ZR_EVENT_SLIDER_CHANGED ZR_FLAG(2)
|
||||
#define ZR_EVENT_SLIDER_ALL (ZR_FLAG(3)-1)
|
||||
|
||||
enum zr_progress_event_type {
|
||||
ZR_EVENT_PROGRESS_NONE = 0,
|
||||
ZR_EVENT_PROGRESS_HOVERED = ZR_FLAG(0),
|
||||
ZR_EVENT_PROGRESS_CHANGED = ZR_FLAG(2),
|
||||
ZR_EVENT_PROGRESS_ALL = ZR_FLAG(3)-1
|
||||
};
|
||||
/* progressbar events */
|
||||
#define ZR_EVENT_PROGRESS_NONE 0
|
||||
#define ZR_EVENT_PROGRESS_HOVERED ZR_FLAG(0)
|
||||
#define ZR_EVENT_PROGRESS_CHANGED ZR_FLAG(2)
|
||||
#define ZR_EVENT_PROGRESS_ALL (ZR_FLAG(3)-1)
|
||||
|
||||
enum zr_property_event_type {
|
||||
ZR_EVENT_PROPERTY_NONE = 0,
|
||||
ZR_EVENT_PROPERTY_HOVERED = ZR_FLAG(0),
|
||||
ZR_EVENT_PROPERTY_CHANGED = ZR_FLAG(2),
|
||||
ZR_EVENT_PROPERTY_INCREMENTED = ZR_FLAG(3),
|
||||
ZR_EVENT_PROPERTY_DECREMENTED = ZR_FLAG(4),
|
||||
ZR_EVENT_PROPERTY_DRAGGED = ZR_FLAG(5),
|
||||
ZR_EVENT_PROPERTY_ACTIVATED = ZR_FLAG(6),
|
||||
ZR_EVENT_PROPERTY_DEACTIVED = ZR_FLAG(7),
|
||||
ZR_EVENT_PROPERTY_ALL = ZR_FLAG(8)-1
|
||||
};
|
||||
/* property events */
|
||||
#define ZR_EVENT_PROPERTY_NONE 0
|
||||
#define ZR_EVENT_PROPERTY_HOVERED ZR_FLAG(0)
|
||||
#define ZR_EVENT_PROPERTY_CHANGED ZR_FLAG(2)
|
||||
#define ZR_EVENT_PROPERTY_STATE_CHANGED ZR_FLAG(3)
|
||||
#define ZR_EVENT_PROPERTY_ALL (ZR_FLAG(8)-1)
|
||||
|
||||
enum zr_tab_event_type {
|
||||
ZR_EVENT_TAB_NONE = 0,
|
||||
ZR_EVENT_TAB_ACTIVE = ZR_FLAG(0),
|
||||
ZR_EVENT_TAB_MINIMIZED = ZR_FLAG(1),
|
||||
ZR_EVENT_TAB_MAXIMIZED = ZR_FLAG(2),
|
||||
ZR_EVENT_TAB_ALL = ZR_FLAG(3)-1
|
||||
};
|
||||
/* tab events */
|
||||
#define ZR_EVENT_TAB_NONE 0
|
||||
#define ZR_EVENT_TAB_ACTIVE ZR_FLAG(0)
|
||||
#define ZR_EVENT_TAB_MINIMIZED ZR_FLAG(1)
|
||||
#define ZR_EVENT_TAB_MAXIMIZED ZR_FLAG(2)
|
||||
#define ZR_EVENT_TAB_ALL (ZR_FLAG(3)-1)
|
||||
|
||||
/* chart events */
|
||||
#define ZR_EVENT_CHART_NONE 0
|
||||
#define ZR_EVENT_CHART_HOVERED ZR_FLAG(1)
|
||||
#define ZR_EVENT_CHART_SELECTED ZR_FLAG(2)
|
||||
#define ZR_EVENT_CHART_ALL (ZR_FLAG(3)-1)
|
||||
|
||||
struct zr_event_header {
|
||||
zr_hash id;
|
||||
@ -1183,53 +1184,61 @@ struct zr_event_header {
|
||||
|
||||
struct zr_event_window {
|
||||
struct zr_event_header base;
|
||||
enum zr_window_event_type evt;
|
||||
zr_flags evt;
|
||||
int data[2];
|
||||
};
|
||||
|
||||
struct zr_event_button {
|
||||
struct zr_event_header base;
|
||||
enum zr_button_event_type evt;
|
||||
zr_flags evt;
|
||||
};
|
||||
|
||||
struct zr_event_tab {
|
||||
struct zr_event_header base;
|
||||
enum zr_tab_event_type evt;
|
||||
zr_flags evt;
|
||||
};
|
||||
|
||||
struct zr_event_checkbox {
|
||||
struct zr_event_header base;
|
||||
enum zr_checkbox_event_type evt;
|
||||
zr_flags evt;
|
||||
int value;
|
||||
};
|
||||
|
||||
struct zr_event_option {
|
||||
struct zr_event_header base;
|
||||
enum zr_option_event_type evt;
|
||||
zr_flags evt;
|
||||
int value;
|
||||
};
|
||||
|
||||
struct zr_event_select {
|
||||
struct zr_event_header base;
|
||||
enum zr_select_event_type evt;
|
||||
zr_flags evt;
|
||||
int value;
|
||||
};
|
||||
|
||||
struct zr_event_slider {
|
||||
struct zr_event_header base;
|
||||
enum zr_slider_event_type evt;
|
||||
zr_flags evt;
|
||||
float value;
|
||||
};
|
||||
|
||||
struct zr_event_progress {
|
||||
struct zr_event_header base;
|
||||
enum zr_progress_event_type evt;
|
||||
zr_flags evt;
|
||||
zr_size value;
|
||||
};
|
||||
|
||||
struct zr_event_property {
|
||||
struct zr_event_header base;
|
||||
enum zr_property_event_type evt;
|
||||
zr_flags evt;
|
||||
enum zr_property_state state;
|
||||
float value;
|
||||
};
|
||||
|
||||
struct zr_event_chart {
|
||||
struct zr_event_header base;
|
||||
zr_flags evt;
|
||||
int value_index;
|
||||
float value;
|
||||
};
|
||||
|
||||
@ -1244,6 +1253,7 @@ union zr_event {
|
||||
struct zr_event_option option;
|
||||
struct zr_event_select select;
|
||||
struct zr_event_property property;
|
||||
struct zr_event_chart chart;
|
||||
};
|
||||
|
||||
struct zr_event_mask {unsigned short flags[ZR_EVENT_MAX];};
|
||||
@ -1256,9 +1266,6 @@ int zr_event_mask_has(struct zr_event_mask*, enum zr_event_type, zr_flags);
|
||||
/*==============================================================
|
||||
* ELEMENT
|
||||
* =============================================================*/
|
||||
#define ZR_ELEMENT_OP 0
|
||||
#define ZR_ELEMENT_ID 1
|
||||
|
||||
/* checkbox element properties */
|
||||
#define ZR_CHECKBOX_ACTIVE 3
|
||||
|
||||
@ -1296,12 +1303,14 @@ float zr_element_get_float(const struct zr_buffer*, zr_element, int property);
|
||||
unsigned zr_element_get_uint(const struct zr_buffer*, zr_element, int property);
|
||||
struct zr_color zr_element_get_color(const struct zr_buffer*, zr_element, int property);
|
||||
zr_flags zr_element_get_flags(const struct zr_buffer*, zr_element, int property);
|
||||
const void* zr_element_get_ptr(const struct zr_buffer*, zr_element, int property);
|
||||
|
||||
void zr_element_set_int(struct zr_buffer*, zr_element, int property, int);
|
||||
void zr_element_set_float(struct zr_buffer*, zr_element, int property, float);
|
||||
void zr_element_set_uint(struct zr_buffer*, zr_element, int property, unsigned int);
|
||||
void zr_element_set_color(struct zr_buffer*, zr_element, int property, struct zr_color);
|
||||
void zr_element_set_flags(struct zr_buffer*, zr_element, int property, zr_flags);
|
||||
void zr_element_set_ptr(struct zr_buffer*, zr_element, int property, void*);
|
||||
|
||||
/*==============================================================
|
||||
* WINDOW
|
||||
|
Loading…
Reference in New Issue
Block a user