2015-10-06 00:38:21 +03:00
|
|
|
#define MIN(a,b) ((a) < (b) ? (a) : (b))
|
|
|
|
#define MAX(a,b) ((a) < (b) ? (b) : (a))
|
|
|
|
#define CLAMP(i,v,x) (MAX(MIN(v,x), i))
|
|
|
|
#define LEN(a) (sizeof(a)/sizeof(a)[0])
|
|
|
|
#define UNUSED(a) ((void)(a))
|
|
|
|
|
2015-05-09 15:26:44 +03:00
|
|
|
#define MAX_BUFFER 64
|
2015-09-06 20:13:07 +03:00
|
|
|
#define MAX_MEMORY (32 * 1024)
|
|
|
|
#define MAX_COMMAND_MEMORY (16 * 1024)
|
2015-08-29 12:04:09 +03:00
|
|
|
#define WINDOW_WIDTH 1200
|
|
|
|
#define WINDOW_HEIGHT 800
|
2015-05-09 15:26:44 +03:00
|
|
|
|
2015-11-05 21:39:51 +03:00
|
|
|
enum theme {THEME_BLACK, THEME_WHITE};
|
2015-08-15 13:00:01 +03:00
|
|
|
|
2015-11-05 21:39:51 +03:00
|
|
|
struct demo {
|
2015-11-19 20:36:16 +03:00
|
|
|
int running;
|
2015-11-05 21:39:51 +03:00
|
|
|
struct zr_input input;
|
|
|
|
struct zr_command_queue queue;
|
|
|
|
struct zr_style config_black;
|
|
|
|
struct zr_style config_white;
|
|
|
|
struct zr_user_font font;
|
|
|
|
struct zr_window panel;
|
|
|
|
struct zr_window sub;
|
2015-11-06 17:50:22 +03:00
|
|
|
struct zr_window metrics;
|
2015-11-19 20:36:16 +03:00
|
|
|
size_t w, h;
|
2015-11-05 21:39:51 +03:00
|
|
|
enum theme theme;
|
2015-11-09 23:40:35 +03:00
|
|
|
struct zr_edit_box text;
|
2015-11-05 21:39:51 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
2015-11-19 20:36:16 +03:00
|
|
|
zr_labelf(struct zr_context *panel, enum zr_text_align align, const char *fmt, ...)
|
2015-11-05 21:39:51 +03:00
|
|
|
{
|
2015-11-19 20:36:16 +03:00
|
|
|
char buffer[1024];
|
2015-11-05 21:39:51 +03:00
|
|
|
va_list args;
|
|
|
|
va_start(args, fmt);
|
|
|
|
vsnprintf(buffer, sizeof(buffer), fmt, args);
|
|
|
|
buffer[1023] = 0;
|
|
|
|
zr_label(panel, buffer, align);
|
|
|
|
va_end(args);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
show_test_window(struct zr_window *window, struct zr_style *config, enum theme *theme,
|
2015-11-19 20:36:16 +03:00
|
|
|
struct zr_edit_box *edit_box)
|
2015-08-15 13:00:01 +03:00
|
|
|
{
|
2015-11-05 21:39:51 +03:00
|
|
|
zr_flags ret;
|
|
|
|
struct zr_context layout;
|
2015-08-15 13:00:01 +03:00
|
|
|
|
2015-11-05 21:39:51 +03:00
|
|
|
/* window flags */
|
2015-11-19 20:36:16 +03:00
|
|
|
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;
|
2015-11-05 21:39:51 +03:00
|
|
|
static zr_flags window_flags = 0;
|
|
|
|
|
|
|
|
/* header flags */
|
2015-11-19 20:36:16 +03:00
|
|
|
static int minimizable = zr_true;
|
|
|
|
static int close = zr_true;
|
|
|
|
static int scale = zr_false;
|
|
|
|
static int move = zr_false;
|
2015-11-05 21:39:51 +03:00
|
|
|
static zr_flags header_flags = 0;
|
|
|
|
|
|
|
|
/* collapsable headers */
|
2015-11-19 20:36:16 +03:00
|
|
|
static int window_option_state = ZR_MINIMIZED;
|
|
|
|
static int header_option_state = ZR_MINIMIZED;
|
|
|
|
static int widget_state = ZR_MINIMIZED;
|
|
|
|
static int graph_state = ZR_MINIMIZED;
|
|
|
|
static int style_state = ZR_MINIMIZED;
|
|
|
|
static int group_state = ZR_MINIMIZED;
|
|
|
|
static int shelf_state = ZR_MINIMIZED;
|
|
|
|
static int splitter_state = ZR_MINIMIZED;
|
2015-11-05 21:39:51 +03:00
|
|
|
|
|
|
|
/* popups */
|
|
|
|
static enum zr_header_align header_align = ZR_HEADER_RIGHT;
|
2015-11-19 20:36:16 +03:00
|
|
|
static int show_app_about = zr_false;
|
|
|
|
static int show_contextual = zr_false;
|
2015-11-06 17:50:22 +03:00
|
|
|
static struct zr_rect contextual_bounds;
|
2015-11-19 20:36:16 +03:00
|
|
|
static int show_close_popup = zr_false;
|
|
|
|
static int show_color_picker_popup = zr_false;
|
|
|
|
static int color_picker_index;
|
2015-11-05 21:39:51 +03:00
|
|
|
static struct zr_color color_picker_color;
|
|
|
|
|
|
|
|
/* window flags */
|
|
|
|
window->style = config;
|
|
|
|
window_flags = 0;
|
|
|
|
if (border) window_flags |= ZR_WINDOW_BORDER;
|
|
|
|
if (resize) window_flags |= ZR_WINDOW_SCALEABLE;
|
|
|
|
if (moveable) window_flags |= ZR_WINDOW_MOVEABLE;
|
|
|
|
if (no_scrollbar) window_flags |= ZR_WINDOW_NO_SCROLLBAR;
|
2015-11-06 00:34:42 +03:00
|
|
|
if (window->flags & ZR_WINDOW_ACTIVE) window_flags |= ZR_WINDOW_ACTIVE;
|
|
|
|
if (window->flags & ZR_WINDOW_ROM) window_flags |= ZR_WINDOW_ROM;
|
|
|
|
if (window->flags & ZR_WINDOW_MINIMIZED) window_flags |= ZR_WINDOW_MINIMIZED;
|
2015-11-05 21:39:51 +03:00
|
|
|
|
|
|
|
/* header flags */
|
|
|
|
header_flags = 0;
|
|
|
|
if (minimizable) header_flags |= ZR_MINIMIZABLE;
|
|
|
|
if (close) header_flags |= ZR_CLOSEABLE;
|
|
|
|
if (scale) header_flags |= ZR_SCALEABLE;
|
|
|
|
if (move) header_flags |= ZR_MOVEABLE;
|
|
|
|
|
|
|
|
/* main window */
|
|
|
|
window->flags = window_flags;
|
|
|
|
zr_begin(&layout, window);
|
|
|
|
ret = zr_header(&layout, (titlebar)? "Zahnrad":"", header_flags, header_flags, header_align);
|
|
|
|
if (ret & ZR_CLOSEABLE) {
|
|
|
|
layout.flags &= (zr_flags)~ZR_WINDOW_HIDDEN;
|
|
|
|
layout.valid = zr_true;
|
2015-11-19 20:36:16 +03:00
|
|
|
return 0;
|
2015-08-15 13:00:01 +03:00
|
|
|
}
|
|
|
|
|
2015-11-05 21:39:51 +03:00
|
|
|
if (show_menu)
|
|
|
|
{
|
|
|
|
/* menubar */
|
|
|
|
struct zr_context menu;
|
2015-11-19 20:36:16 +03:00
|
|
|
static int file_state = ZR_MINIMIZED;
|
|
|
|
static size_t mprog = 60;
|
|
|
|
static int mslider = 10;
|
|
|
|
static int mcheck = zr_true;
|
2015-08-15 13:00:01 +03:00
|
|
|
|
2015-11-05 21:39:51 +03:00
|
|
|
zr_menubar_begin(&layout);
|
2015-08-15 13:00:01 +03:00
|
|
|
|
2015-11-05 21:39:51 +03:00
|
|
|
zr_layout_row_begin(&layout, ZR_STATIC, 25, 2);
|
|
|
|
zr_layout_row_push(&layout, 45);
|
|
|
|
zr_menu_begin(&layout, &menu, "MENU", 100, &file_state);
|
|
|
|
{
|
2015-11-19 20:36:16 +03:00
|
|
|
static size_t prog = 40;
|
|
|
|
static int slider = 10;
|
|
|
|
static int check = zr_true;
|
2015-11-05 21:39:51 +03:00
|
|
|
zr_layout_row_dynamic(&menu, 25, 1);
|
|
|
|
zr_progress(&menu, &prog, 100, ZR_MODIFYABLE);
|
|
|
|
zr_slider_int(&menu, 0, &slider, 16, 1);
|
|
|
|
zr_checkbox(&menu, "check", &check);
|
|
|
|
if (zr_menu_item(&menu, ZR_TEXT_CENTERED, "Hide")) {
|
|
|
|
show_menu = zr_false;
|
|
|
|
zr_menu_close(&menu, &file_state);
|
|
|
|
}
|
|
|
|
if (zr_menu_item(&menu, ZR_TEXT_CENTERED, "About")) {
|
|
|
|
show_app_about = zr_true;
|
|
|
|
zr_menu_close(&menu, &file_state);
|
|
|
|
}
|
|
|
|
if (zr_menu_item(&menu, ZR_TEXT_CENTERED, "Quit")) {
|
|
|
|
show_close_popup = zr_true;
|
|
|
|
zr_menu_close(&menu, &file_state);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
zr_menu_end(&layout, &menu);
|
2015-08-15 13:00:01 +03:00
|
|
|
|
2015-11-05 21:39:51 +03:00
|
|
|
zr_layout_row_push(&layout, 60);
|
|
|
|
zr_progress(&layout, &mprog, 100, ZR_MODIFYABLE);
|
|
|
|
zr_slider_int(&layout, 0, &mslider, 16, 1);
|
|
|
|
zr_checkbox(&layout, "check", &mcheck);
|
2015-08-15 13:00:01 +03:00
|
|
|
|
2015-11-05 21:39:51 +03:00
|
|
|
zr_menubar_end(&layout);
|
|
|
|
}
|
2015-08-15 13:00:01 +03:00
|
|
|
|
2015-11-05 21:39:51 +03:00
|
|
|
if (show_app_about)
|
2015-09-30 11:19:19 +03:00
|
|
|
{
|
2015-11-05 21:39:51 +03:00
|
|
|
/* about popup */
|
|
|
|
struct zr_context popup;
|
|
|
|
static struct zr_vec2 about_scrollbar;
|
2015-11-08 13:02:18 +03:00
|
|
|
static struct zr_rect s = {20, 100, 300, 190};
|
2015-11-05 21:39:51 +03:00
|
|
|
zr_popup_begin(&layout, &popup, ZR_POPUP_STATIC, 0, s, about_scrollbar);
|
|
|
|
if (zr_header(&popup, "About", ZR_CLOSEABLE, ZR_CLOSEABLE, ZR_HEADER_LEFT)){
|
|
|
|
show_app_about = zr_false;
|
|
|
|
zr_popup_close(&popup);
|
2015-09-22 22:08:59 +03:00
|
|
|
}
|
2015-11-05 21:39:51 +03:00
|
|
|
zr_layout_row_dynamic(&popup, 20, 1);
|
|
|
|
zr_label(&popup, "Zahnrad", ZR_TEXT_LEFT);
|
|
|
|
zr_label(&popup, "By Micha Mettke", ZR_TEXT_LEFT);
|
|
|
|
zr_label(&popup, "Zahnrad is licensed under the MIT License.", ZR_TEXT_LEFT);
|
|
|
|
zr_label(&popup, "See LICENSE for more information", ZR_TEXT_LEFT);
|
|
|
|
zr_popup_end(&layout, &popup, &about_scrollbar);
|
2015-09-22 22:08:59 +03:00
|
|
|
}
|
2015-08-15 13:00:01 +03:00
|
|
|
|
2015-11-05 21:39:51 +03:00
|
|
|
if (show_close_popup)
|
2015-08-15 13:00:01 +03:00
|
|
|
{
|
2015-11-05 21:39:51 +03:00
|
|
|
/* close popup */
|
|
|
|
struct zr_context popup;
|
|
|
|
static struct zr_vec2 close_scrollbar = {0,0};
|
|
|
|
static const struct zr_rect s = {20, 150, 230, 150};
|
|
|
|
zr_popup_begin(&layout, &popup, ZR_POPUP_STATIC, 0, s, close_scrollbar);
|
|
|
|
if (zr_header(&popup, "Quit", ZR_CLOSEABLE, ZR_CLOSEABLE, ZR_HEADER_LEFT)) {
|
|
|
|
show_close_popup = zr_false;
|
|
|
|
zr_popup_close(&popup);
|
|
|
|
}
|
|
|
|
zr_layout_row_dynamic(&popup, 30, 1);
|
|
|
|
zr_label(&popup, "Are you sure you want to exit?", ZR_TEXT_LEFT);
|
|
|
|
zr_layout_row_dynamic(&popup, 30, 4);
|
|
|
|
zr_spacing(&popup, 1);
|
|
|
|
if (zr_button_text(&popup, "Yes", ZR_BUTTON_DEFAULT)) {
|
|
|
|
show_close_popup = zr_false;
|
|
|
|
zr_popup_close(&popup);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (zr_button_text(&popup, "No", ZR_BUTTON_DEFAULT)) {
|
|
|
|
show_close_popup = zr_false;
|
|
|
|
zr_popup_close(&popup);
|
|
|
|
}
|
|
|
|
zr_popup_end(&layout, &popup, NULL);
|
2015-08-21 18:34:51 +03:00
|
|
|
}
|
2015-07-27 20:56:19 +03:00
|
|
|
|
2015-11-05 21:39:51 +03:00
|
|
|
if (show_color_picker_popup)
|
2015-08-15 13:00:01 +03:00
|
|
|
{
|
2015-11-05 21:39:51 +03:00
|
|
|
/* color picker popup */
|
2015-11-19 20:36:16 +03:00
|
|
|
static int active[4];
|
2015-11-05 21:39:51 +03:00
|
|
|
struct zr_context popup;
|
2015-11-19 20:36:16 +03:00
|
|
|
int r,g,b,a;
|
2015-11-10 18:25:06 +03:00
|
|
|
zr_popup_begin(&layout, &popup, ZR_POPUP_STATIC,0, zr_rect(10, 100, 350, 280), zr_vec2(0,0));
|
2015-11-05 21:39:51 +03:00
|
|
|
if (zr_header(&popup, "Color", ZR_CLOSEABLE, ZR_CLOSEABLE, ZR_HEADER_LEFT))
|
|
|
|
{
|
|
|
|
zr_popup_close(&popup);
|
|
|
|
show_color_picker_popup = zr_false;
|
|
|
|
memset(active, 0, sizeof(active));
|
2015-08-15 13:00:01 +03:00
|
|
|
}
|
|
|
|
|
2015-11-05 21:39:51 +03:00
|
|
|
zr_layout_row_dynamic(&popup, 30, 2);
|
2015-11-08 01:59:38 +03:00
|
|
|
zr_label(&popup, zr_style_color_name((enum zr_style_colors)color_picker_index), ZR_TEXT_LEFT);
|
2015-11-05 21:39:51 +03:00
|
|
|
zr_button_color(&popup, color_picker_color, ZR_BUTTON_DEFAULT);
|
2015-08-15 13:00:01 +03:00
|
|
|
|
2015-11-10 18:25:06 +03:00
|
|
|
zr_layout_row_dynamic(&popup, 30, 3);
|
|
|
|
r = color_picker_color.r; g = color_picker_color.g;
|
|
|
|
b = color_picker_color.b; a = color_picker_color.a;
|
|
|
|
|
|
|
|
/* color selection */
|
|
|
|
zr_drag_int(&popup, 0, &r, 255, 1);
|
2015-11-05 21:39:51 +03:00
|
|
|
zr_spinner_int(&popup, 0, &r, 255, 1, &active[0]);
|
|
|
|
zr_slider_int(&popup, 0, &r, 255, 10);
|
2015-11-10 18:25:06 +03:00
|
|
|
|
|
|
|
zr_drag_int(&popup, 0, &g, 255, 1);
|
2015-11-05 21:39:51 +03:00
|
|
|
zr_spinner_int(&popup, 0, &g, 255, 1, &active[1]);
|
|
|
|
zr_slider_int(&popup, 0, &g, 255, 10);
|
2015-11-10 18:25:06 +03:00
|
|
|
|
|
|
|
zr_drag_int(&popup, 0, &b, 255, 1);
|
2015-11-05 21:39:51 +03:00
|
|
|
zr_spinner_int(&popup, 0, &b, 255, 1, &active[2]);
|
|
|
|
zr_slider_int(&popup, 0, &b, 255, 10);
|
2015-11-10 18:25:06 +03:00
|
|
|
|
|
|
|
zr_drag_int(&popup, 0, &a, 255, 1);
|
2015-11-05 21:39:51 +03:00
|
|
|
zr_spinner_int(&popup, 0, &a, 255, 1, &active[3]);
|
|
|
|
zr_slider_int(&popup, 0, &a, 255, 10);
|
|
|
|
color_picker_color = zr_rgba((zr_byte)r,(zr_byte)g,(zr_byte)b,(zr_byte)a);
|
2015-09-22 22:08:59 +03:00
|
|
|
|
2015-11-05 21:39:51 +03:00
|
|
|
zr_layout_row_dynamic(&popup, 30, 4);
|
|
|
|
zr_spacing(&popup, 1);
|
|
|
|
if (zr_button_text(&popup, "ok", ZR_BUTTON_DEFAULT))
|
|
|
|
{
|
|
|
|
zr_popup_close(&popup);
|
|
|
|
show_color_picker_popup = zr_false;
|
|
|
|
config->colors[color_picker_index] = color_picker_color;
|
|
|
|
memset(active, 0, sizeof(active));
|
|
|
|
}
|
|
|
|
if (zr_button_text(&popup, "cancel", ZR_BUTTON_DEFAULT))
|
|
|
|
{
|
|
|
|
zr_popup_close(&popup);
|
|
|
|
show_color_picker_popup = zr_false;
|
|
|
|
memset(active, 0, sizeof(active));
|
|
|
|
}
|
|
|
|
zr_popup_end(&layout, &popup, NULL);
|
2015-09-22 22:08:59 +03:00
|
|
|
}
|
2015-07-27 20:56:19 +03:00
|
|
|
|
2015-11-06 12:44:53 +03:00
|
|
|
/* contextual menu */
|
|
|
|
if (zr_input_mouse_clicked(layout.input, ZR_BUTTON_RIGHT, layout.bounds)) {
|
|
|
|
contextual_bounds = zr_rect(layout.input->mouse.pos.x, layout.input->mouse.pos.y, 100, 200);
|
|
|
|
show_contextual = zr_true;
|
|
|
|
}
|
|
|
|
if (show_contextual) {
|
|
|
|
struct zr_context menu;
|
2015-11-19 20:36:16 +03:00
|
|
|
static size_t prog = 40;
|
|
|
|
static int slider = 10;
|
2015-11-06 12:44:53 +03:00
|
|
|
|
|
|
|
zr_contextual_begin(&layout, &menu, ZR_WINDOW_NO_SCROLLBAR, &show_contextual, contextual_bounds);
|
|
|
|
zr_layout_row_dynamic(&menu, 25, 1);
|
|
|
|
zr_checkbox(&menu, "Menu", &show_menu);
|
|
|
|
zr_progress(&menu, &prog, 100, ZR_MODIFYABLE);
|
|
|
|
zr_slider_int(&menu, 0, &slider, 16, 1);
|
|
|
|
if (zr_contextual_item(&menu, "About", ZR_TEXT_CENTERED))
|
|
|
|
show_app_about = zr_true;
|
|
|
|
if (zr_contextual_item(&menu, "Quit", ZR_TEXT_CENTERED))
|
|
|
|
show_close_popup = zr_true;
|
|
|
|
zr_contextual_end(&layout, &menu, &show_contextual);
|
|
|
|
}
|
|
|
|
|
2015-11-05 21:39:51 +03:00
|
|
|
if (zr_layout_push(&layout, ZR_LAYOUT_TAB, "Window", &window_option_state))
|
2015-09-25 15:06:44 +03:00
|
|
|
{
|
2015-11-05 21:39:51 +03:00
|
|
|
/* window options */
|
|
|
|
zr_layout_row_dynamic(&layout, 30, 2);
|
|
|
|
zr_checkbox(&layout, "Titlebar", &titlebar);
|
|
|
|
zr_checkbox(&layout, "Menu", &show_menu);
|
|
|
|
zr_checkbox(&layout, "Border", &border);
|
|
|
|
zr_checkbox(&layout, "Resizable", &resize);
|
|
|
|
zr_checkbox(&layout, "Moveable", &moveable);
|
|
|
|
zr_checkbox(&layout, "No Scrollbar", &no_scrollbar);
|
|
|
|
zr_layout_pop(&layout);
|
2015-09-25 15:06:44 +03:00
|
|
|
}
|
|
|
|
|
2015-11-05 21:39:51 +03:00
|
|
|
if (zr_layout_push(&layout, ZR_LAYOUT_TAB, "Header", &header_option_state))
|
2015-06-09 18:05:05 +03:00
|
|
|
{
|
2015-11-05 21:39:51 +03:00
|
|
|
/* header options */
|
|
|
|
zr_layout_row_dynamic(&layout, 30, 2);
|
|
|
|
zr_checkbox(&layout, "Minimizable", &minimizable);
|
|
|
|
zr_checkbox(&layout, "Closeable", &close);
|
|
|
|
zr_checkbox(&layout, "Scaleable", &scale);
|
|
|
|
zr_checkbox(&layout, "Moveable", &move);
|
|
|
|
zr_layout_pop(&layout);
|
2015-06-09 18:05:05 +03:00
|
|
|
}
|
2015-05-13 15:47:11 +03:00
|
|
|
|
2015-11-05 21:39:51 +03:00
|
|
|
if (zr_layout_push(&layout, ZR_LAYOUT_TAB, "Style", &style_state))
|
2015-08-13 16:57:28 +03:00
|
|
|
{
|
2015-11-05 21:39:51 +03:00
|
|
|
/* style editor */
|
2015-11-19 20:36:16 +03:00
|
|
|
static int property_state = ZR_MINIMIZED;
|
|
|
|
static int rounding_state = ZR_MINIMIZED;
|
|
|
|
static int color_state = ZR_MINIMIZED;
|
2015-11-05 21:39:51 +03:00
|
|
|
struct zr_context combo;
|
|
|
|
static const char *themes[] = {"Black", "White"};
|
2015-11-19 20:36:16 +03:00
|
|
|
static int theme_active = zr_false;
|
2015-11-05 21:39:51 +03:00
|
|
|
|
|
|
|
/* theme */
|
|
|
|
zr_layout_row_static(&layout, 30, 80, 2);
|
|
|
|
zr_label(&layout, "Theme:", ZR_TEXT_LEFT);
|
|
|
|
zr_combo_begin(&layout, &combo, themes[*theme], &theme_active);
|
|
|
|
zr_layout_row_dynamic(&combo, 25, 1);
|
|
|
|
*theme = zr_combo_item(&combo, themes[THEME_BLACK], ZR_TEXT_CENTERED) ? THEME_BLACK : *theme;
|
|
|
|
*theme = zr_combo_item(&combo, themes[THEME_WHITE], ZR_TEXT_CENTERED) ? THEME_WHITE : *theme;
|
|
|
|
zr_combo_end(&layout, &combo, &theme_active);
|
|
|
|
|
|
|
|
if (zr_layout_push(&layout, ZR_LAYOUT_NODE, "Properties", &property_state))
|
2015-07-29 23:19:17 +03:00
|
|
|
{
|
2015-11-05 21:39:51 +03:00
|
|
|
/* properties */
|
2015-11-19 20:36:16 +03:00
|
|
|
size_t i = 0;
|
2015-11-05 21:39:51 +03:00
|
|
|
zr_layout_row_dynamic(&layout, 30, 3);
|
|
|
|
for (i = 0; i <= ZR_PROPERTY_SCROLLBAR_SIZE; ++i) {
|
2015-11-08 01:59:38 +03:00
|
|
|
zr_label(&layout, zr_style_property_name((enum zr_style_properties)i), ZR_TEXT_LEFT);
|
2015-11-05 21:39:51 +03:00
|
|
|
zr_spinner_float(&layout, 0, &config->properties[i].x, 20, 1, NULL);
|
|
|
|
zr_spinner_float(&layout, 0, &config->properties[i].y, 20, 1, NULL);
|
2015-07-29 23:19:17 +03:00
|
|
|
}
|
2015-11-05 21:39:51 +03:00
|
|
|
zr_layout_pop(&layout);
|
2015-07-29 23:19:17 +03:00
|
|
|
}
|
2015-05-13 15:47:11 +03:00
|
|
|
|
2015-11-05 21:39:51 +03:00
|
|
|
if (zr_layout_push(&layout, ZR_LAYOUT_NODE, "Rounding", &rounding_state))
|
|
|
|
{
|
|
|
|
/* rounding */
|
2015-11-19 20:36:16 +03:00
|
|
|
size_t i = 0;
|
2015-11-05 21:39:51 +03:00
|
|
|
zr_layout_row_dynamic(&layout, 30, 2);
|
|
|
|
for (i = 0; i < ZR_ROUNDING_MAX; ++i) {
|
2015-11-08 01:59:38 +03:00
|
|
|
zr_label(&layout, zr_style_rounding_name((enum zr_style_rounding)i), ZR_TEXT_LEFT);
|
2015-11-05 21:39:51 +03:00
|
|
|
zr_spinner_float(&layout, 0, &config->rounding[i], 20, 1, NULL);
|
|
|
|
}
|
|
|
|
zr_layout_pop(&layout);
|
|
|
|
}
|
2015-05-09 15:26:44 +03:00
|
|
|
|
2015-11-05 21:39:51 +03:00
|
|
|
if (zr_layout_push(&layout, ZR_LAYOUT_NODE, "Color", &color_state))
|
|
|
|
{
|
|
|
|
/* color */
|
2015-11-19 20:36:16 +03:00
|
|
|
size_t i = 0;
|
2015-11-05 21:39:51 +03:00
|
|
|
struct zr_context tab;
|
|
|
|
static struct zr_vec2 scrollbar;
|
2015-11-11 18:56:21 +03:00
|
|
|
zr_layout_row_dynamic(&layout, 20, 1);
|
|
|
|
zr_label(&layout, "Click on the color to modify", ZR_TEXT_LEFT);
|
2015-11-05 21:39:51 +03:00
|
|
|
zr_layout_row_dynamic(&layout, 400, 1);
|
|
|
|
zr_group_begin(&layout, &tab, NULL, 0, scrollbar);
|
|
|
|
for (i = 0; i < ZR_COLOR_COUNT; ++i) {
|
|
|
|
zr_layout_row_dynamic(&tab, 30, 2);
|
2015-11-08 01:59:38 +03:00
|
|
|
zr_label(&tab, zr_style_color_name((enum zr_style_colors)i), ZR_TEXT_LEFT);
|
2015-11-05 21:39:51 +03:00
|
|
|
if (zr_button_color(&tab, config->colors[i], ZR_BUTTON_DEFAULT)) {
|
|
|
|
show_color_picker_popup = zr_true;
|
2015-11-19 20:36:16 +03:00
|
|
|
color_picker_index = (int)i;
|
2015-11-05 21:39:51 +03:00
|
|
|
color_picker_color = config->colors[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
zr_group_end(&layout, &tab, &scrollbar);
|
|
|
|
zr_layout_pop(&layout);
|
2015-05-09 15:26:44 +03:00
|
|
|
}
|
2015-11-05 21:39:51 +03:00
|
|
|
zr_layout_pop(&layout);
|
2015-05-09 15:26:44 +03:00
|
|
|
}
|
2015-05-13 15:47:11 +03:00
|
|
|
|
2015-11-05 21:39:51 +03:00
|
|
|
if (zr_layout_push(&layout, ZR_LAYOUT_TAB, "Widgets", &widget_state))
|
|
|
|
{
|
2015-11-19 20:36:16 +03:00
|
|
|
static int text_state = zr_false;
|
|
|
|
static int main_state = zr_false;
|
|
|
|
static int button_state = zr_false;
|
|
|
|
static int combo_state = zr_false;
|
|
|
|
static int input_state = zr_false;
|
|
|
|
static int sel_state = zr_false;
|
2015-05-13 15:47:11 +03:00
|
|
|
|
2015-11-05 21:39:51 +03:00
|
|
|
enum options {A,B,C};
|
2015-11-19 20:36:16 +03:00
|
|
|
static int checkbox;
|
|
|
|
static int option;
|
2015-05-09 15:26:44 +03:00
|
|
|
|
2015-11-05 21:39:51 +03:00
|
|
|
if (zr_layout_push(&layout, ZR_LAYOUT_NODE, "Text", &text_state))
|
|
|
|
{
|
|
|
|
/* Text Widgets */
|
|
|
|
zr_layout_row_dynamic(&layout, 20, 1);
|
|
|
|
zr_label(&layout, "Label aligned left", ZR_TEXT_LEFT);
|
|
|
|
zr_label(&layout, "Label aligned centered", ZR_TEXT_CENTERED);
|
|
|
|
zr_label(&layout, "Label aligned right", ZR_TEXT_RIGHT);
|
|
|
|
zr_label_colored(&layout, "Blue text", ZR_TEXT_LEFT, zr_rgb(0,0,255));
|
|
|
|
zr_label_colored(&layout, "Yellow text", ZR_TEXT_LEFT, zr_rgb(255,255,0));
|
|
|
|
zr_text(&layout, "Text without /0", 15, ZR_TEXT_RIGHT);
|
|
|
|
|
|
|
|
zr_layout_row_static(&layout, 100, 200, 1);
|
|
|
|
zr_label_wrap(&layout, "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(&layout, 100, 1);
|
|
|
|
zr_label_wrap(&layout, "This is another long text to show dynamic window changes on multiline text");
|
|
|
|
zr_layout_pop(&layout);
|
|
|
|
}
|
2015-06-08 11:55:35 +03:00
|
|
|
|
2015-11-05 21:39:51 +03:00
|
|
|
if (zr_layout_push(&layout, ZR_LAYOUT_NODE, "Button", &button_state))
|
|
|
|
{
|
|
|
|
/* Buttons Widgets */
|
|
|
|
zr_layout_row_static(&layout, 30, 100, 3);
|
|
|
|
if (zr_button_text(&layout, "Button", ZR_BUTTON_DEFAULT))
|
|
|
|
fprintf(stdout, "Button pressed!\n");
|
|
|
|
if (zr_button_text(&layout, "Repeater", ZR_BUTTON_REPEATER))
|
|
|
|
fprintf(stdout, "Repeater is being pressed!\n");
|
|
|
|
zr_button_color(&layout, zr_rgb(0,0,255), ZR_BUTTON_DEFAULT);
|
|
|
|
|
|
|
|
zr_layout_row_static(&layout, 20, 20, 8);
|
|
|
|
zr_button_symbol(&layout, ZR_SYMBOL_CIRCLE, ZR_BUTTON_DEFAULT);
|
|
|
|
zr_button_symbol(&layout, ZR_SYMBOL_CIRCLE_FILLED, ZR_BUTTON_DEFAULT);
|
|
|
|
zr_button_symbol(&layout, ZR_SYMBOL_RECT, ZR_BUTTON_DEFAULT);
|
|
|
|
zr_button_symbol(&layout, ZR_SYMBOL_RECT_FILLED, ZR_BUTTON_DEFAULT);
|
|
|
|
zr_button_symbol(&layout, ZR_SYMBOL_TRIANGLE_UP, ZR_BUTTON_DEFAULT);
|
|
|
|
zr_button_symbol(&layout, ZR_SYMBOL_TRIANGLE_DOWN, ZR_BUTTON_DEFAULT);
|
|
|
|
zr_button_symbol(&layout, ZR_SYMBOL_TRIANGLE_LEFT, ZR_BUTTON_DEFAULT);
|
|
|
|
zr_button_symbol(&layout, ZR_SYMBOL_TRIANGLE_RIGHT, ZR_BUTTON_DEFAULT);
|
|
|
|
|
|
|
|
zr_layout_row_static(&layout, 30, 100, 2);
|
|
|
|
zr_button_text_symbol(&layout, ZR_SYMBOL_TRIANGLE_LEFT, "prev", ZR_TEXT_RIGHT, ZR_BUTTON_DEFAULT);
|
|
|
|
zr_button_text_symbol(&layout, ZR_SYMBOL_TRIANGLE_RIGHT, "next", ZR_TEXT_LEFT, ZR_BUTTON_DEFAULT);
|
|
|
|
zr_layout_pop(&layout);
|
|
|
|
}
|
2015-08-15 13:00:01 +03:00
|
|
|
|
2015-11-05 21:39:51 +03:00
|
|
|
if (zr_layout_push(&layout, ZR_LAYOUT_NODE, "Basic", &main_state))
|
2015-08-13 16:57:28 +03:00
|
|
|
{
|
2015-11-05 21:39:51 +03:00
|
|
|
/* Basic widgets */
|
2015-11-19 20:36:16 +03:00
|
|
|
static int int_slider = 5;
|
|
|
|
static float float_slider = 2.5f;
|
|
|
|
static size_t prog_value = 40;
|
|
|
|
static float float_spinner = 2.5f;
|
|
|
|
static int int_spinner = 20;
|
|
|
|
static float drag_float = 2;
|
|
|
|
static int drag_int = 10;
|
|
|
|
static int r = 255,g = 160, b = 0;
|
|
|
|
static int h = 100, s = 70, v = 20;
|
|
|
|
static int spinneri_active, spinnerf_active;
|
|
|
|
static const float ratio[] = {120, 150};
|
2015-11-05 21:39:51 +03:00
|
|
|
const struct zr_input *in = zr_input(&layout);
|
|
|
|
struct zr_rect bounds;
|
2015-11-10 18:25:06 +03:00
|
|
|
struct zr_color color;
|
2015-11-05 21:39:51 +03:00
|
|
|
|
|
|
|
zr_layout_row_static(&layout, 30, 100, 1);
|
|
|
|
zr_checkbox(&layout, "Checkbox", &checkbox);
|
|
|
|
|
|
|
|
zr_layout_row_static(&layout, 30, 80, 3);
|
|
|
|
option = zr_option(&layout, "optionA", option == A) ? A : option;
|
|
|
|
option = zr_option(&layout, "optionB", option == B) ? B : option;
|
|
|
|
option = zr_option(&layout, "optionC", option == C) ? C : option;
|
|
|
|
|
|
|
|
zr_layout_row_static(&layout, 30, 150, 1);
|
|
|
|
zr_layout_peek(&bounds, &layout);
|
|
|
|
zr_label(&layout, "Hover me for tooltip", ZR_TEXT_LEFT);
|
|
|
|
if (zr_input_is_mouse_hovering_rect(in, bounds))
|
|
|
|
zr_tooltip(&layout, "This is a tooltip");
|
|
|
|
|
|
|
|
zr_layout_row(&layout, ZR_STATIC, 30, 2, ratio);
|
2015-11-10 17:07:43 +03:00
|
|
|
zr_labelf(&layout, ZR_TEXT_LEFT, "Slider int: %d", int_slider);
|
2015-11-05 21:39:51 +03:00
|
|
|
zr_slider_int(&layout, 0, &int_slider, 10, 1);
|
2015-11-10 18:25:06 +03:00
|
|
|
|
2015-11-10 17:07:43 +03:00
|
|
|
zr_labelf(&layout, ZR_TEXT_LEFT, "Slider float: %.2f", float_slider);
|
2015-11-08 02:27:10 +03:00
|
|
|
zr_slider_float(&layout, 0, &float_slider, 5.0, 0.5f);
|
2015-11-06 12:12:30 +03:00
|
|
|
zr_labelf(&layout, ZR_TEXT_LEFT, "Progressbar: %lu:" , prog_value);
|
2015-11-05 21:39:51 +03:00
|
|
|
zr_progress(&layout, &prog_value, 100, ZR_MODIFYABLE);
|
2015-11-10 17:07:43 +03:00
|
|
|
|
2015-11-10 18:25:06 +03:00
|
|
|
zr_layout_row(&layout, ZR_STATIC, 30, 2, ratio);
|
2015-11-06 12:12:30 +03:00
|
|
|
zr_label(&layout, "Spinner int:", ZR_TEXT_LEFT);
|
|
|
|
zr_spinner_int(&layout, 0, &int_spinner, 50.0, 1, &spinneri_active);
|
|
|
|
zr_label(&layout, "Spinner float:", ZR_TEXT_LEFT);
|
2015-11-08 02:27:10 +03:00
|
|
|
zr_spinner_float(&layout, 0, &float_spinner, 5.0, 0.5f, &spinnerf_active);
|
2015-11-10 18:25:06 +03:00
|
|
|
|
|
|
|
zr_label(&layout, "Drag float:", ZR_TEXT_LEFT);
|
|
|
|
zr_drag_float(&layout, 0, &drag_float, 64.0f, 0.1f);
|
|
|
|
zr_label(&layout, "Drag int:", ZR_TEXT_LEFT);
|
|
|
|
zr_drag_int(&layout, 0, &drag_int, 100, 1);
|
|
|
|
|
|
|
|
zr_layout_row_dynamic(&layout, 30, 6);
|
|
|
|
zr_label(&layout, "RGB:", ZR_TEXT_LEFT);
|
|
|
|
zr_drag_int(&layout, 0, &r, 255, 1);
|
|
|
|
zr_drag_int(&layout, 0, &g, 255, 1);
|
|
|
|
zr_drag_int(&layout, 0, &b, 255, 1);
|
|
|
|
color = zr_rgb((zr_byte)r,(zr_byte)g,(zr_byte)b);
|
|
|
|
zr_button_color(&layout, color, ZR_BUTTON_DEFAULT);
|
|
|
|
|
|
|
|
zr_layout_row_dynamic(&layout, 30, 6);
|
|
|
|
zr_label(&layout, "HSV:", ZR_TEXT_LEFT);
|
|
|
|
zr_drag_int(&layout, 0, &h, 255, 1);
|
|
|
|
zr_drag_int(&layout, 0, &s, 255, 1);
|
|
|
|
zr_drag_int(&layout, 0, &v, 255, 1);
|
|
|
|
color = zr_hsv((zr_byte)h,(zr_byte)s,(zr_byte)v);
|
|
|
|
zr_button_color(&layout, color, ZR_BUTTON_DEFAULT);
|
|
|
|
|
2015-11-05 21:39:51 +03:00
|
|
|
zr_layout_pop(&layout);
|
2015-08-13 16:57:28 +03:00
|
|
|
}
|
2015-05-17 14:38:37 +03:00
|
|
|
|
2015-11-05 21:39:51 +03:00
|
|
|
if (zr_layout_push(&layout, ZR_LAYOUT_NODE, "Selectable", &sel_state))
|
2015-07-30 23:19:06 +03:00
|
|
|
{
|
2015-11-19 20:36:16 +03:00
|
|
|
static int basic_state = ZR_MINIMIZED;
|
|
|
|
static int list_state = ZR_MINIMIZED;
|
|
|
|
static int grid_state = ZR_MINIMIZED;
|
2015-11-05 21:39:51 +03:00
|
|
|
if (zr_layout_push(&layout, ZR_LAYOUT_NODE, "Basic", &basic_state))
|
|
|
|
{
|
|
|
|
zr_layout_row_static(&layout, 18, 100, 2);
|
|
|
|
zr_select(&layout, "Selected", ZR_TEXT_LEFT, zr_true);
|
|
|
|
zr_select(&layout, "Not Selected", ZR_TEXT_LEFT, zr_false);
|
2015-09-18 00:09:49 +03:00
|
|
|
zr_layout_pop(&layout);
|
2015-07-30 23:19:06 +03:00
|
|
|
}
|
2015-11-05 21:39:51 +03:00
|
|
|
if (zr_layout_push(&layout, ZR_LAYOUT_NODE, "List", &list_state))
|
|
|
|
{
|
2015-11-19 20:36:16 +03:00
|
|
|
static int selected[4] = {zr_false, zr_false, zr_true, zr_false};
|
2015-11-05 21:39:51 +03:00
|
|
|
zr_layout_row_static(&layout, 18, 100, 1);
|
|
|
|
zr_selectable(&layout, "Selectable", ZR_TEXT_LEFT, &selected[0]);
|
|
|
|
zr_selectable(&layout, "Selectable", ZR_TEXT_LEFT, &selected[1]);
|
|
|
|
zr_label(&layout, "Not Selectable", ZR_TEXT_LEFT);
|
|
|
|
zr_selectable(&layout, "Selectable", ZR_TEXT_LEFT, &selected[2]);
|
|
|
|
zr_selectable(&layout, "Selectable", ZR_TEXT_LEFT, &selected[3]);
|
2015-09-18 00:09:49 +03:00
|
|
|
zr_layout_pop(&layout);
|
2015-07-30 23:19:06 +03:00
|
|
|
}
|
2015-11-05 21:39:51 +03:00
|
|
|
if (zr_layout_push(&layout, ZR_LAYOUT_NODE, "Grid", &grid_state))
|
|
|
|
{
|
2015-11-08 01:59:38 +03:00
|
|
|
int i;
|
2015-11-19 20:36:16 +03:00
|
|
|
static int selected[16];
|
2015-11-05 21:39:51 +03:00
|
|
|
zr_layout_row_static(&layout, 50, 50, 4);
|
|
|
|
for (i = 0; i < 16; ++i) {
|
|
|
|
if (zr_selectable(&layout, "Z", ZR_TEXT_CENTERED, &selected[i])) {
|
2015-11-19 20:36:16 +03:00
|
|
|
int x = (i % 4), y = i / 4;
|
2015-11-05 21:39:51 +03:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
2015-09-18 00:09:49 +03:00
|
|
|
zr_layout_pop(&layout);
|
2015-07-30 23:19:06 +03:00
|
|
|
}
|
2015-09-18 00:09:49 +03:00
|
|
|
zr_layout_pop(&layout);
|
2015-07-30 23:19:06 +03:00
|
|
|
}
|
2015-05-17 14:38:37 +03:00
|
|
|
|
2015-11-05 21:39:51 +03:00
|
|
|
if (zr_layout_push(&layout, ZR_LAYOUT_NODE, "Combo", &combo_state))
|
2015-09-15 19:13:43 +03:00
|
|
|
{
|
2015-11-05 21:39:51 +03:00
|
|
|
/* Combobox Widgets */
|
2015-11-19 20:36:16 +03:00
|
|
|
static int weapon_active = zr_false;
|
|
|
|
static int com_color_active = zr_false;
|
|
|
|
static int prog_active = zr_false;
|
|
|
|
static int check_active = zr_false;
|
2015-11-05 21:39:51 +03:00
|
|
|
|
|
|
|
static const char *weapons[] = {"Fist","Pistol","Shotgun","Plasma","BFG"};
|
2015-11-19 20:36:16 +03:00
|
|
|
static size_t current_weapon = 0;
|
|
|
|
static int check_values[5];
|
|
|
|
static int r = 130, g = 50, b = 50, a = 255;
|
|
|
|
static size_t x = 20, y = 40, z = 10, w = 90;
|
2015-11-05 21:39:51 +03:00
|
|
|
|
|
|
|
struct zr_context combo;
|
2015-11-19 20:36:16 +03:00
|
|
|
char buffer[32];
|
|
|
|
size_t sum = 0;
|
2015-11-05 21:39:51 +03:00
|
|
|
|
|
|
|
/* default combobox */
|
|
|
|
zr_layout_row_static(&layout, 30, 200, 1);
|
|
|
|
zr_combo_begin(&layout, &combo, weapons[current_weapon], &weapon_active);
|
2015-08-10 21:34:47 +03:00
|
|
|
{
|
2015-11-19 20:36:16 +03:00
|
|
|
size_t i = 0;
|
2015-11-05 21:39:51 +03:00
|
|
|
zr_layout_row_dynamic(&combo, 25, 1);
|
|
|
|
for (i = 0; i < LEN(weapons); ++i) {
|
|
|
|
if (zr_combo_item(&combo, weapons[i], ZR_TEXT_LEFT))
|
|
|
|
current_weapon = i;
|
2015-08-10 21:34:47 +03:00
|
|
|
}
|
|
|
|
}
|
2015-11-05 21:39:51 +03:00
|
|
|
zr_combo_end(&layout, &combo, &weapon_active);
|
2015-08-10 21:34:47 +03:00
|
|
|
|
2015-11-05 21:39:51 +03:00
|
|
|
/* slider color combobox */
|
|
|
|
sprintf(buffer, "#%02x%02x%02x%02x", r, g, b, a);
|
|
|
|
zr_style_push_color(config, ZR_COLOR_SPINNER, zr_rgba((zr_byte)r,(zr_byte)g,(zr_byte)b,(zr_byte)a));
|
|
|
|
zr_combo_begin(&layout, &combo, buffer, &com_color_active);
|
2015-08-27 20:25:13 +03:00
|
|
|
{
|
2015-11-19 20:36:16 +03:00
|
|
|
float ratios[] = {0.15f, 0.85f};
|
2015-11-05 21:39:51 +03:00
|
|
|
zr_layout_row(&combo, ZR_DYNAMIC, 30, 2, ratios);
|
|
|
|
zr_label(&combo, "R", ZR_TEXT_LEFT);
|
|
|
|
zr_slider_int(&combo, 0, &r, 255, 5);
|
|
|
|
zr_label(&combo, "G", ZR_TEXT_LEFT);
|
|
|
|
zr_slider_int(&combo, 0, &g, 255, 5);
|
|
|
|
zr_label(&combo, "B", ZR_TEXT_LEFT);
|
|
|
|
zr_slider_int(&combo, 0, &b, 255, 5);
|
|
|
|
zr_label(&combo, "A", ZR_TEXT_LEFT);
|
|
|
|
zr_slider_int(&combo, 0, &a, 255, 5);
|
2015-08-27 20:25:13 +03:00
|
|
|
}
|
2015-11-05 21:39:51 +03:00
|
|
|
zr_combo_end(&layout, &combo, NULL);
|
|
|
|
zr_style_pop_color(config);
|
2015-07-30 23:19:06 +03:00
|
|
|
|
2015-11-05 21:39:51 +03:00
|
|
|
/* progressbar combobox */
|
|
|
|
sum = x + y + z + w;
|
|
|
|
sprintf(buffer, "%lu", sum);
|
|
|
|
zr_combo_begin(&layout, &combo, buffer, &prog_active);
|
|
|
|
{
|
|
|
|
zr_layout_row_dynamic(&combo, 30, 1);
|
|
|
|
zr_progress(&combo, &x, 100, ZR_MODIFYABLE);
|
|
|
|
zr_progress(&combo, &y, 100, ZR_MODIFYABLE);
|
|
|
|
zr_progress(&combo, &z, 100, ZR_MODIFYABLE);
|
|
|
|
zr_progress(&combo, &w, 100, ZR_MODIFYABLE);
|
|
|
|
}
|
|
|
|
zr_combo_end(&layout, &combo, NULL);
|
|
|
|
|
|
|
|
/* checkbox combobox */
|
2015-11-19 20:36:16 +03:00
|
|
|
sum = (size_t)(check_values[0] + check_values[1] + check_values[2] + check_values[3] + check_values[4]);
|
2015-11-05 21:39:51 +03:00
|
|
|
sprintf(buffer, "%lu", sum);
|
|
|
|
zr_combo_begin(&layout, &combo, buffer, &check_active);
|
|
|
|
{
|
|
|
|
zr_layout_row_dynamic(&combo, 30, 1);
|
|
|
|
zr_checkbox(&combo, weapons[0], &check_values[0]);
|
|
|
|
zr_checkbox(&combo, weapons[1], &check_values[1]);
|
|
|
|
zr_checkbox(&combo, weapons[2], &check_values[2]);
|
|
|
|
zr_checkbox(&combo, weapons[3], &check_values[3]);
|
|
|
|
}
|
|
|
|
zr_combo_end(&layout, &combo, NULL);
|
|
|
|
|
|
|
|
zr_layout_pop(&layout);
|
2015-07-30 23:19:06 +03:00
|
|
|
}
|
2015-11-09 23:40:35 +03:00
|
|
|
if (zr_layout_push(&layout, ZR_LAYOUT_NODE, "Input", &input_state))
|
|
|
|
{
|
2015-11-11 14:03:17 +03:00
|
|
|
static char text[8][64];
|
2015-11-19 20:36:16 +03:00
|
|
|
static size_t text_len[8];
|
|
|
|
static int text_active[8];
|
|
|
|
static size_t text_cursor[8];
|
|
|
|
static const float ratio[] = {120, 100};
|
2015-11-09 23:40:35 +03:00
|
|
|
|
|
|
|
zr_layout_row(&layout, ZR_STATIC, 25, 2, ratio);
|
|
|
|
zr_label(&layout, "Default:", ZR_TEXT_LEFT);
|
|
|
|
zr_edit(&layout, text[0], &text_len[0], 64, &text_active[0], &text_cursor[0], ZR_INPUT_DEFAULT);
|
|
|
|
zr_label(&layout, "Int:", ZR_TEXT_LEFT);
|
|
|
|
zr_edit(&layout, text[1], &text_len[1], 64, &text_active[1], &text_cursor[1], ZR_INPUT_DEC);
|
|
|
|
zr_label(&layout, "Float:", ZR_TEXT_LEFT);
|
|
|
|
zr_edit(&layout, text[2], &text_len[2], 64, &text_active[2], &text_cursor[2], ZR_INPUT_FLOAT);
|
|
|
|
zr_label(&layout, "Hex:", ZR_TEXT_LEFT);
|
|
|
|
zr_edit(&layout, text[4], &text_len[4], 64, &text_active[4], &text_cursor[4], ZR_INPUT_HEX);
|
|
|
|
zr_label(&layout, "Octal:", ZR_TEXT_LEFT);
|
|
|
|
zr_edit(&layout, text[5], &text_len[5], 64, &text_active[5], &text_cursor[5], ZR_INPUT_OCT);
|
|
|
|
zr_label(&layout, "Binary:", ZR_TEXT_LEFT);
|
|
|
|
zr_edit(&layout, text[6], &text_len[6], 64, &text_active[6], &text_cursor[6], ZR_INPUT_BIN);
|
|
|
|
zr_label(&layout, "Editbox:", ZR_TEXT_LEFT);
|
|
|
|
zr_editbox(&layout, edit_box);
|
|
|
|
|
2015-11-11 14:03:17 +03:00
|
|
|
zr_edit(&layout, text[7], &text_len[7], 64, &text_active[7], &text_cursor[7], ZR_INPUT_ASCII);
|
|
|
|
if (zr_button_text(&layout, "Submit", ZR_BUTTON_DEFAULT)
|
|
|
|
||(text_active[7] && zr_input_is_key_pressed(window->input, ZR_KEY_ENTER))) {
|
|
|
|
text_active[7] = 0;
|
|
|
|
text_cursor[7] = 0;
|
|
|
|
text_len[7] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
zr_layout_row_end(&layout);
|
2015-11-09 23:40:35 +03:00
|
|
|
zr_layout_pop(&layout);
|
|
|
|
}
|
2015-11-05 21:39:51 +03:00
|
|
|
zr_layout_pop(&layout);
|
2015-07-30 23:19:06 +03:00
|
|
|
}
|
2015-08-06 17:36:28 +03:00
|
|
|
|
2015-11-05 21:39:51 +03:00
|
|
|
if (zr_layout_push(&layout, ZR_LAYOUT_TAB, "Graph", &graph_state))
|
2015-08-06 17:36:28 +03:00
|
|
|
{
|
2015-11-19 20:36:16 +03:00
|
|
|
static const float values[]={8.0f,15.0f,20.0f,12.0f,30.0f,12.0f,35.0f,40.0f,20.0f};
|
|
|
|
static int col_index = -1;
|
|
|
|
static int line_index = -1;
|
2015-11-05 21:39:51 +03:00
|
|
|
static struct zr_vec2 scrollbar;
|
|
|
|
|
2015-11-19 20:36:16 +03:00
|
|
|
size_t i;
|
|
|
|
float min_value;
|
|
|
|
float max_value;
|
|
|
|
int index = -1;
|
2015-11-05 21:39:51 +03:00
|
|
|
struct zr_rect bounds;
|
|
|
|
struct zr_graph graph;
|
|
|
|
char buffer[64];
|
|
|
|
|
|
|
|
/* find min and max graph value */
|
|
|
|
max_value = values[0];
|
|
|
|
min_value = values[0];
|
|
|
|
for (i = 0; i < LEN(values); ++i) {
|
|
|
|
if (values[i] > max_value)
|
|
|
|
max_value = values[i];
|
|
|
|
if (values[i] < min_value)
|
|
|
|
min_value = values[i];
|
2015-08-06 17:36:28 +03:00
|
|
|
}
|
2015-11-05 21:39:51 +03:00
|
|
|
|
|
|
|
/* column graph */
|
|
|
|
zr_layout_row_dynamic(&layout, 100, 1);
|
|
|
|
zr_layout_peek(&bounds, &layout);
|
|
|
|
zr_graph_begin(&layout, &graph, ZR_GRAPH_COLUMN, LEN(values), min_value, max_value);
|
|
|
|
for (i = 0; i < LEN(values); ++i) {
|
|
|
|
zr_flags res = zr_graph_push(&layout, &graph, values[i]);
|
|
|
|
if (res & ZR_GRAPH_HOVERING)
|
2015-11-19 20:36:16 +03:00
|
|
|
index = (int)i;
|
2015-11-05 21:39:51 +03:00
|
|
|
if (res & ZR_GRAPH_CLICKED)
|
2015-11-19 20:36:16 +03:00
|
|
|
col_index = (int)i;
|
2015-11-05 21:39:51 +03:00
|
|
|
}
|
|
|
|
zr_graph_end(&layout, &graph);
|
|
|
|
|
|
|
|
if (index != -1) {
|
|
|
|
sprintf(buffer, "Value: %.2f", values[index]);
|
|
|
|
zr_tooltip(&layout, buffer);
|
|
|
|
}
|
|
|
|
if (col_index != -1) {
|
|
|
|
zr_layout_row_dynamic(&layout, 20, 1);
|
|
|
|
zr_labelf(&layout, ZR_TEXT_LEFT, "Selected value: %.2f", values[col_index]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* line graph */
|
|
|
|
index = -1;
|
|
|
|
zr_layout_row_dynamic(&layout, 100, 1);
|
|
|
|
zr_layout_peek(&bounds, &layout);
|
|
|
|
zr_graph_begin(&layout, &graph, ZR_GRAPH_LINES, LEN(values), min_value, max_value);
|
|
|
|
for (i = 0; i < LEN(values); ++i) {
|
|
|
|
zr_flags res = zr_graph_push(&layout, &graph, values[i]);
|
|
|
|
if (res & ZR_GRAPH_HOVERING)
|
2015-11-19 20:36:16 +03:00
|
|
|
index = (int)i;
|
2015-11-05 21:39:51 +03:00
|
|
|
if (res & ZR_GRAPH_CLICKED)
|
2015-11-19 20:36:16 +03:00
|
|
|
line_index = (int)i;
|
2015-11-05 21:39:51 +03:00
|
|
|
}
|
|
|
|
zr_graph_end(&layout, &graph);
|
|
|
|
|
|
|
|
if (index != -1) {
|
|
|
|
sprintf(buffer, "Value: %.2f", values[index]);
|
|
|
|
zr_tooltip(&layout, buffer);
|
|
|
|
}
|
|
|
|
if (line_index != -1) {
|
|
|
|
zr_layout_row_dynamic(&layout, 20, 1);
|
|
|
|
zr_labelf(&layout, ZR_TEXT_LEFT, "Selected value: %.2f", values[line_index]);
|
|
|
|
}
|
|
|
|
zr_layout_pop(&layout);
|
|
|
|
}
|
|
|
|
|
2015-11-06 12:44:53 +03:00
|
|
|
if (zr_layout_push(&layout, ZR_LAYOUT_TAB, "Group", &group_state))
|
2015-11-05 21:39:51 +03:00
|
|
|
{
|
2015-11-19 20:36:16 +03:00
|
|
|
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;
|
2015-11-05 21:39:51 +03:00
|
|
|
static struct zr_vec2 scrollbar;
|
2015-11-19 20:36:16 +03:00
|
|
|
static int width_active, height_active;
|
2015-11-05 21:39:51 +03:00
|
|
|
struct zr_context tab;
|
|
|
|
|
|
|
|
zr_flags group_flags = 0;
|
|
|
|
if (group_border) group_flags |= ZR_WINDOW_BORDER;
|
|
|
|
if (group_no_scrollbar) group_flags |= ZR_WINDOW_NO_SCROLLBAR;
|
|
|
|
|
|
|
|
zr_layout_row_dynamic(&layout, 30, 3);
|
|
|
|
zr_checkbox(&layout, "Titlebar", &group_titlebar);
|
|
|
|
zr_checkbox(&layout, "Border", &group_border);
|
|
|
|
zr_checkbox(&layout, "No Scrollbar", &group_no_scrollbar);
|
|
|
|
|
2015-09-30 11:19:19 +03:00
|
|
|
zr_layout_row_begin(&layout, ZR_STATIC, 30, 2);
|
2015-11-05 21:39:51 +03:00
|
|
|
zr_layout_row_push(&layout, 50);
|
|
|
|
zr_label(&layout, "size:", ZR_TEXT_LEFT);
|
|
|
|
zr_layout_row_push(&layout, 130);
|
|
|
|
zr_spinner_int(&layout, 100, &group_width, 500, 10, &width_active);
|
|
|
|
zr_layout_row_push(&layout, 130);
|
|
|
|
zr_spinner_int(&layout, 100, &group_height, 500, 10, &height_active);
|
|
|
|
zr_layout_row_end(&layout);
|
|
|
|
|
2015-11-19 20:36:16 +03:00
|
|
|
zr_layout_row_static(&layout, (float)group_height, (size_t)group_width, 2);
|
2015-11-05 21:39:51 +03:00
|
|
|
zr_group_begin(&layout, &tab, group_titlebar ? "Group" : NULL, group_flags, scrollbar);
|
2015-09-30 11:19:19 +03:00
|
|
|
{
|
2015-11-05 21:39:51 +03:00
|
|
|
int i = 0;
|
2015-11-19 20:36:16 +03:00
|
|
|
static int selected[16];
|
2015-11-05 21:39:51 +03:00
|
|
|
zr_layout_row_static(&tab, 18, 100, 1);
|
|
|
|
for (i = 0; i < 16; ++i)
|
|
|
|
zr_selectable(&tab, (selected[i]) ? "Selected": "Unselected", ZR_TEXT_CENTERED, &selected[i]);
|
2015-09-30 11:19:19 +03:00
|
|
|
}
|
2015-11-05 21:39:51 +03:00
|
|
|
zr_group_end(&layout, &tab, &scrollbar);
|
|
|
|
zr_layout_pop(&layout);
|
2015-08-06 17:36:28 +03:00
|
|
|
}
|
2015-11-05 21:39:51 +03:00
|
|
|
|
|
|
|
if (zr_layout_push(&layout, ZR_LAYOUT_TAB, "Shelf", &shelf_state))
|
|
|
|
{
|
|
|
|
static const char *tabs[] = {"Up","Down","Left","Right"};
|
2015-11-19 20:36:16 +03:00
|
|
|
static int active = 0;
|
2015-11-05 21:39:51 +03:00
|
|
|
static struct zr_vec2 scrollbar;
|
|
|
|
struct zr_context tab;
|
|
|
|
|
|
|
|
zr_layout_row_dynamic(&layout, 140, 1);
|
|
|
|
zr_shelf_begin(&layout, &tab, tabs, LEN(tabs), &active, scrollbar);
|
|
|
|
zr_layout_row_static(&tab, 50, 50, 4);
|
|
|
|
if (active == 0) {
|
|
|
|
zr_button_symbol(&tab, ZR_SYMBOL_TRIANGLE_UP, ZR_BUTTON_DEFAULT);
|
|
|
|
zr_button_symbol(&tab, ZR_SYMBOL_TRIANGLE_DOWN, ZR_BUTTON_DEFAULT);
|
|
|
|
zr_button_symbol(&tab, ZR_SYMBOL_TRIANGLE_LEFT, ZR_BUTTON_DEFAULT);
|
|
|
|
zr_button_symbol(&tab, ZR_SYMBOL_TRIANGLE_RIGHT, ZR_BUTTON_DEFAULT);
|
|
|
|
} else if (active == 1) {
|
|
|
|
zr_button_symbol(&tab, ZR_SYMBOL_TRIANGLE_DOWN, ZR_BUTTON_DEFAULT);
|
|
|
|
zr_button_symbol(&tab, ZR_SYMBOL_TRIANGLE_LEFT, ZR_BUTTON_DEFAULT);
|
|
|
|
zr_button_symbol(&tab, ZR_SYMBOL_TRIANGLE_RIGHT, ZR_BUTTON_DEFAULT);
|
|
|
|
zr_button_symbol(&tab, ZR_SYMBOL_TRIANGLE_UP, ZR_BUTTON_DEFAULT);
|
|
|
|
} else if (active == 2) {
|
|
|
|
zr_button_symbol(&tab, ZR_SYMBOL_TRIANGLE_LEFT, ZR_BUTTON_DEFAULT);
|
|
|
|
zr_button_symbol(&tab, ZR_SYMBOL_TRIANGLE_RIGHT, ZR_BUTTON_DEFAULT);
|
|
|
|
zr_button_symbol(&tab, ZR_SYMBOL_TRIANGLE_UP, ZR_BUTTON_DEFAULT);
|
|
|
|
zr_button_symbol(&tab, ZR_SYMBOL_TRIANGLE_DOWN, ZR_BUTTON_DEFAULT);
|
|
|
|
} else if (active == 3) {
|
|
|
|
zr_button_symbol(&tab, ZR_SYMBOL_TRIANGLE_RIGHT, ZR_BUTTON_DEFAULT);
|
|
|
|
zr_button_symbol(&tab, ZR_SYMBOL_TRIANGLE_UP, ZR_BUTTON_DEFAULT);
|
|
|
|
zr_button_symbol(&tab, ZR_SYMBOL_TRIANGLE_DOWN, ZR_BUTTON_DEFAULT);
|
|
|
|
zr_button_symbol(&tab, ZR_SYMBOL_TRIANGLE_LEFT, ZR_BUTTON_DEFAULT);
|
|
|
|
}
|
|
|
|
zr_shelf_end(&layout, &tab, &scrollbar);
|
|
|
|
zr_layout_pop(&layout);
|
|
|
|
}
|
2015-11-06 12:44:53 +03:00
|
|
|
|
|
|
|
if (zr_layout_push(&layout, ZR_LAYOUT_TAB, "Splitter", &splitter_state))
|
|
|
|
{
|
2015-11-19 20:36:16 +03:00
|
|
|
static int vertical_state = ZR_MINIMIZED;
|
|
|
|
static int horizontal_state = ZR_MINIMIZED;
|
2015-11-06 14:56:57 +03:00
|
|
|
const struct zr_input *in = window->input;
|
2015-11-06 12:44:53 +03:00
|
|
|
|
2015-11-08 02:27:10 +03:00
|
|
|
zr_layout_row_static(&layout, 20, 320, 1);
|
|
|
|
zr_label(&layout, "Use slider and spinner to change tile size", ZR_TEXT_LEFT);
|
|
|
|
zr_label(&layout, "Drag the space between tiles to change tile ratio", ZR_TEXT_LEFT);
|
|
|
|
|
2015-11-06 14:56:57 +03:00
|
|
|
if (zr_layout_push(&layout, ZR_LAYOUT_NODE, "Vertical", &vertical_state))
|
|
|
|
{
|
2015-11-19 20:36:16 +03:00
|
|
|
static float a = 100, b = 100, c = 100;
|
|
|
|
static int a_active, b_active, c_active;
|
2015-11-11 18:56:21 +03:00
|
|
|
struct zr_rect bounds;
|
2015-11-06 14:56:57 +03:00
|
|
|
struct zr_context sub;
|
|
|
|
|
2015-11-19 20:36:16 +03:00
|
|
|
float row_layout[5];
|
2015-11-06 14:56:57 +03:00
|
|
|
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(&layout, 30, 100, 3);
|
|
|
|
zr_label(&layout, "left:", ZR_TEXT_LEFT);
|
|
|
|
zr_slider_float(&layout, 10.0f, &a, 200.0f, 10.0f);
|
|
|
|
zr_spinner_float(&layout, 10.0f, &a, 200.0f, 1.0f, &a_active);
|
2015-11-06 12:44:53 +03:00
|
|
|
|
2015-11-06 14:56:57 +03:00
|
|
|
zr_label(&layout, "middle:", ZR_TEXT_LEFT);
|
|
|
|
zr_slider_float(&layout, 10.0f, &b, 200.0f, 10.0f);
|
|
|
|
zr_spinner_float(&layout, 10.0f, &b, 200.0f, 1.0f, &b_active);
|
|
|
|
|
|
|
|
zr_label(&layout, "right:", ZR_TEXT_LEFT);
|
|
|
|
zr_slider_float(&layout, 10.0f, &c, 200.0f, 10.0f);
|
|
|
|
zr_spinner_float(&layout, 10.0f, &c, 200.0f, 1.0f, &c_active);
|
|
|
|
|
|
|
|
/* tiles */
|
|
|
|
zr_layout_row(&layout, ZR_STATIC, 200, 5, row_layout);
|
|
|
|
zr_style_push_property(config, ZR_PROPERTY_ITEM_SPACING, zr_vec2(0, 4));
|
|
|
|
|
|
|
|
/* left space */
|
|
|
|
zr_group_begin(&layout, &sub, NULL, ZR_WINDOW_NO_SCROLLBAR|ZR_WINDOW_BORDER, zr_vec2(0,0));
|
|
|
|
zr_group_end(&layout, &sub, NULL);
|
2015-11-06 12:44:53 +03:00
|
|
|
|
|
|
|
/* scaler */
|
2015-11-06 14:56:57 +03:00
|
|
|
zr_layout_peek(&bounds, &layout);
|
|
|
|
zr_spacing(&layout, 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 */
|
|
|
|
zr_group_begin(&layout, &sub, NULL, ZR_WINDOW_BORDER, zr_vec2(0,0));
|
|
|
|
zr_group_end(&layout, &sub, NULL);
|
|
|
|
|
|
|
|
/* scaler */
|
|
|
|
zr_layout_peek(&bounds, &layout);
|
|
|
|
zr_spacing(&layout, 1);
|
2015-11-06 12:44:53 +03:00
|
|
|
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))
|
|
|
|
{
|
2015-11-06 14:56:57 +03:00
|
|
|
b = (row_layout[2] + in->mouse.delta.x);
|
|
|
|
c = (row_layout[4] - in->mouse.delta.x);
|
2015-11-06 12:44:53 +03:00
|
|
|
}
|
2015-11-06 14:56:57 +03:00
|
|
|
|
|
|
|
/* right space */
|
|
|
|
zr_group_begin(&layout, &sub, NULL, ZR_WINDOW_BORDER, zr_vec2(0,0));
|
|
|
|
zr_group_end(&layout, &sub, NULL);
|
|
|
|
|
|
|
|
zr_style_pop_property(config);
|
|
|
|
zr_layout_pop(&layout);
|
2015-11-06 12:44:53 +03:00
|
|
|
}
|
|
|
|
|
2015-11-06 14:56:57 +03:00
|
|
|
if (zr_layout_push(&layout, ZR_LAYOUT_NODE, "Horizontal", &horizontal_state))
|
|
|
|
{
|
2015-11-19 20:36:16 +03:00
|
|
|
static float a = 100, b = 100, c = 100;
|
|
|
|
static int a_active, b_active, c_active;
|
2015-11-06 14:56:57 +03:00
|
|
|
struct zr_context sub;
|
|
|
|
struct zr_rect bounds;
|
2015-11-06 12:44:53 +03:00
|
|
|
|
2015-11-06 14:56:57 +03:00
|
|
|
/* header */
|
|
|
|
zr_layout_row_static(&layout, 30, 100, 3);
|
|
|
|
zr_label(&layout, "top:", ZR_TEXT_LEFT);
|
|
|
|
zr_slider_float(&layout, 10.0f, &a, 200.0f, 10.0f);
|
|
|
|
zr_spinner_float(&layout, 10.0f, &a, 200.0f, 1.0f, &a_active);
|
|
|
|
|
|
|
|
zr_label(&layout, "middle:", ZR_TEXT_LEFT);
|
|
|
|
zr_slider_float(&layout, 10.0f, &b, 200.0f, 10.0f);
|
|
|
|
zr_spinner_float(&layout, 10.0f, &b, 200.0f, 1.0f, &b_active);
|
|
|
|
|
|
|
|
zr_label(&layout, "bottom:", ZR_TEXT_LEFT);
|
|
|
|
zr_slider_float(&layout, 10.0f, &c, 200.0f, 10.0f);
|
|
|
|
zr_spinner_float(&layout, 10.0f, &c, 200.0f, 1.0f, &c_active);
|
|
|
|
|
|
|
|
zr_style_push_property(config, ZR_PROPERTY_ITEM_SPACING, zr_vec2(4, 0));
|
|
|
|
|
|
|
|
/* top space */
|
|
|
|
zr_layout_row_dynamic(&layout, a, 1);
|
|
|
|
zr_group_begin(&layout, &sub, NULL, ZR_WINDOW_NO_SCROLLBAR|ZR_WINDOW_BORDER, zr_vec2(0,0));
|
|
|
|
zr_group_end(&layout, &sub, NULL);
|
|
|
|
|
|
|
|
/* scaler */
|
|
|
|
zr_layout_row_dynamic(&layout, 8, 1);
|
|
|
|
zr_layout_peek(&bounds, &layout);
|
|
|
|
zr_spacing(&layout, 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;
|
|
|
|
}
|
2015-11-06 12:44:53 +03:00
|
|
|
|
2015-11-06 14:56:57 +03:00
|
|
|
/* middle space */
|
|
|
|
zr_layout_row_dynamic(&layout, b, 1);
|
|
|
|
zr_group_begin(&layout, &sub, NULL, ZR_WINDOW_NO_SCROLLBAR|ZR_WINDOW_BORDER, zr_vec2(0,0));
|
|
|
|
zr_group_end(&layout, &sub, NULL);
|
2015-11-06 12:44:53 +03:00
|
|
|
|
2015-11-06 14:56:57 +03:00
|
|
|
/* scaler */
|
|
|
|
zr_layout_row_dynamic(&layout, 8, 1);
|
|
|
|
zr_layout_peek(&bounds, &layout);
|
|
|
|
zr_spacing(&layout, 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 = b + in->mouse.delta.y;
|
|
|
|
c = c - in->mouse.delta.y;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* bottom space */
|
|
|
|
zr_layout_row_dynamic(&layout, c, 1);
|
|
|
|
zr_group_begin(&layout, &sub, NULL, ZR_WINDOW_NO_SCROLLBAR|ZR_WINDOW_BORDER, zr_vec2(0,0));
|
|
|
|
zr_group_end(&layout, &sub, NULL);
|
|
|
|
|
|
|
|
zr_style_pop_property(config);
|
|
|
|
zr_layout_pop(&layout);
|
|
|
|
}
|
|
|
|
zr_layout_pop(&layout);
|
|
|
|
}
|
2015-11-05 21:39:51 +03:00
|
|
|
zr_end(&layout, window);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-11-09 23:40:35 +03:00
|
|
|
static void
|
2015-11-19 20:36:16 +03:00
|
|
|
copy_callback(zr_handle handle, const char *text, size_t size)
|
2015-11-09 23:40:35 +03:00
|
|
|
{
|
2015-11-19 20:36:16 +03:00
|
|
|
char buffer[1024];
|
2015-11-09 23:40:35 +03:00
|
|
|
UNUSED(handle);
|
|
|
|
if (size >= 1023) return;
|
|
|
|
memcpy(buffer, text, size);
|
|
|
|
buffer[size] = '\0';
|
|
|
|
clipboard_set(buffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
paste_callback(zr_handle handle, struct zr_edit_box *box)
|
|
|
|
{
|
2015-11-19 20:36:16 +03:00
|
|
|
size_t len;
|
2015-11-09 23:40:35 +03:00
|
|
|
const char *text;
|
|
|
|
UNUSED(handle);
|
|
|
|
if (!clipboard_is_filled())return;
|
|
|
|
text = clipboard_get();
|
|
|
|
len = strlen(text);
|
|
|
|
zr_edit_box_add(box, text, len);
|
|
|
|
}
|
|
|
|
|
2015-11-05 21:39:51 +03:00
|
|
|
static void
|
|
|
|
init_demo(struct demo *gui)
|
|
|
|
{
|
|
|
|
gui->running = zr_true;
|
|
|
|
|
|
|
|
/* themes */
|
|
|
|
zr_style_default(&gui->config_black, ZR_DEFAULT_ALL, &gui->font);
|
|
|
|
zr_style_default(&gui->config_white, ZR_DEFAULT_ALL, &gui->font);
|
|
|
|
|
|
|
|
gui->config_white.colors[ZR_COLOR_TEXT] = zr_rgba(70, 70, 70, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_TEXT_HOVERING] = zr_rgba(10, 10, 10, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_TEXT_ACTIVE] = zr_rgba(20, 20, 20, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_WINDOW] = zr_rgba(175, 175, 175, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_HEADER] = zr_rgba(175, 175, 175, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_BORDER] = zr_rgba(0, 0, 0, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_BUTTON] = zr_rgba(185, 185, 185, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_BUTTON_HOVER] = zr_rgba(170, 170, 170, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_BUTTON_ACTIVE] = zr_rgba(160, 160, 160, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_TOGGLE] = zr_rgba(150, 150, 150, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_TOGGLE_HOVER] = zr_rgba(120, 120, 120, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_TOGGLE_CURSOR] = zr_rgba(175, 175, 175, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_SELECTABLE] = zr_rgba(190, 190, 190, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_SELECTABLE_HOVER] = zr_rgba(150, 150, 150, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_SELECTABLE_TEXT] = zr_rgba(70, 70, 70, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_SLIDER] = zr_rgba(190, 190, 190, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_SLIDER_CURSOR] = zr_rgba(80, 80, 80, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_SLIDER_CURSOR_HOVER] = zr_rgba(70, 70, 70, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_SLIDER_CURSOR_ACTIVE] = zr_rgba(60, 60, 60, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_PROGRESS] = zr_rgba(190, 190, 190, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_PROGRESS_CURSOR] = zr_rgba(80, 80, 80, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_PROGRESS_CURSOR_HOVER] = zr_rgba(70, 70, 70, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_PROGRESS_CURSOR_ACTIVE] = zr_rgba(60, 60, 60, 255);
|
2015-11-10 17:07:43 +03:00
|
|
|
gui->config_white.colors[ZR_COLOR_DRAG] = zr_rgba(150, 150, 150, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_DRAG_HOVER] = zr_rgba(160, 160, 160, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_DRAG_ACTIVE] = zr_rgba(165, 165, 165, 255);
|
2015-11-05 21:39:51 +03:00
|
|
|
gui->config_white.colors[ZR_COLOR_INPUT] = zr_rgba(150, 150, 150, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_INPUT_CURSOR] = zr_rgba(0, 0, 0, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_INPUT_TEXT] = zr_rgba(0, 0, 0, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_SPINNER] = zr_rgba(175, 175, 175, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_SPINNER_TRIANGLE] = zr_rgba(0, 0, 0, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_HISTO] = zr_rgba(160, 160, 160, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_HISTO_BARS] = zr_rgba(45, 45, 45, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_HISTO_NEGATIVE] = zr_rgba(255, 255, 255, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_HISTO_HIGHLIGHT] = zr_rgba( 255, 0, 0, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_PLOT] = zr_rgba(160, 160, 160, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_PLOT_LINES] = zr_rgba(45, 45, 45, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_PLOT_HIGHLIGHT] = zr_rgba(255, 0, 0, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_SCROLLBAR] = zr_rgba(180, 180, 180, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_SCROLLBAR_CURSOR] = zr_rgba(140, 140, 140, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_SCROLLBAR_CURSOR_HOVER] = zr_rgba(150, 150, 150, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_SCROLLBAR_CURSOR_ACTIVE] = zr_rgba(160, 160, 160, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_TABLE_LINES] = zr_rgba(100, 100, 100, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_TAB_HEADER] = zr_rgba(180, 180, 180, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_SHELF] = zr_rgba(150, 150, 150, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_SHELF_TEXT] = zr_rgba(0, 0, 0, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_SHELF_ACTIVE] = zr_rgba(180, 180, 180, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_SHELF_ACTIVE_TEXT] = zr_rgba(0, 0, 0, 255);
|
|
|
|
gui->config_white.colors[ZR_COLOR_SCALER] = zr_rgba(100, 100, 100, 255);
|
|
|
|
|
|
|
|
/* windows */
|
|
|
|
zr_window_init(&gui->panel, zr_rect(30, 30, 400, 600),
|
|
|
|
ZR_WINDOW_BORDER|ZR_WINDOW_MOVEABLE|ZR_WINDOW_SCALEABLE,
|
|
|
|
&gui->queue, &gui->config_black, &gui->input);
|
|
|
|
zr_window_init(&gui->sub, zr_rect(400, 50, 220, 180),
|
|
|
|
ZR_WINDOW_BORDER|ZR_WINDOW_MOVEABLE|ZR_WINDOW_SCALEABLE,
|
|
|
|
&gui->queue, &gui->config_black, &gui->input);
|
2015-11-06 17:50:22 +03:00
|
|
|
zr_window_init(&gui->metrics, zr_rect(200, 400, 250, 300),
|
|
|
|
ZR_WINDOW_BORDER|ZR_WINDOW_MOVEABLE|ZR_WINDOW_SCALEABLE,
|
|
|
|
&gui->queue, &gui->config_black, &gui->input);
|
|
|
|
|
2015-11-09 23:40:35 +03:00
|
|
|
{
|
|
|
|
/* edit box */
|
|
|
|
static char text[64];
|
|
|
|
struct zr_clipboard clip;
|
|
|
|
clip.userdata.ptr = 0;
|
|
|
|
clip.paste = paste_callback;
|
|
|
|
clip.copy = copy_callback;
|
|
|
|
zr_edit_box_init_fixed(&gui->text, text, 64, &clip, 0);
|
|
|
|
}
|
2015-11-05 21:39:51 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
run_demo(struct demo *gui)
|
|
|
|
{
|
2015-11-05 22:14:15 +03:00
|
|
|
struct zr_context layout;
|
2015-11-05 21:39:51 +03:00
|
|
|
struct zr_style *current = (gui->theme == THEME_BLACK) ? &gui->config_black : &gui->config_white;
|
2015-11-19 20:36:16 +03:00
|
|
|
gui->running = show_test_window(&gui->panel, current, &gui->theme, &gui->text);
|
2015-11-05 22:14:15 +03:00
|
|
|
|
2015-11-06 17:50:22 +03:00
|
|
|
/* ussage example */
|
2015-11-05 22:14:15 +03:00
|
|
|
gui->sub.style = current;
|
|
|
|
zr_begin(&layout, &gui->sub);
|
|
|
|
{
|
|
|
|
enum {EASY, HARD};
|
2015-11-19 20:36:16 +03:00
|
|
|
static int op = EASY;
|
|
|
|
static float value = 0.5f;
|
2015-11-05 22:14:15 +03:00
|
|
|
zr_header(&layout, "Show", ZR_CLOSEABLE, 0, ZR_HEADER_LEFT);
|
|
|
|
zr_layout_row_static(&layout, 30, 80, 1);
|
|
|
|
if (zr_button_text(&layout, "button", ZR_BUTTON_DEFAULT)) {
|
|
|
|
/* event handling */
|
|
|
|
}
|
|
|
|
zr_layout_row_dynamic(&layout, 30, 2);
|
|
|
|
if (zr_option(&layout, "easy", op == EASY)) op = EASY;
|
|
|
|
if (zr_option(&layout, "hard", op == HARD)) op = HARD;
|
|
|
|
zr_layout_row_begin(&layout, ZR_STATIC, 30, 2);
|
|
|
|
{
|
|
|
|
zr_layout_row_push(&layout, 50);
|
|
|
|
zr_label(&layout, "Volume:", ZR_TEXT_LEFT);
|
|
|
|
zr_layout_row_push(&layout, 110);
|
|
|
|
zr_slider_float(&layout, 0, &value, 1.0f, 0.1f);
|
|
|
|
}
|
|
|
|
zr_layout_row_end(&layout);
|
|
|
|
}
|
|
|
|
zr_end(&layout, &gui->sub);
|
|
|
|
|
2015-11-06 17:50:22 +03:00
|
|
|
/* metrics window */
|
|
|
|
gui->metrics.style = current;
|
|
|
|
zr_begin(&layout, &gui->metrics);
|
|
|
|
{
|
2015-11-19 20:36:16 +03:00
|
|
|
static int prim_state = ZR_MINIMIZED;
|
|
|
|
static int mem_state = ZR_MINIMIZED;
|
2015-11-06 17:50:22 +03:00
|
|
|
struct zr_memory_status status;
|
|
|
|
struct zr_command_stats *stats = &gui->panel.buffer.stats;
|
|
|
|
zr_buffer_info(&status, &gui->queue.buffer);
|
|
|
|
|
|
|
|
zr_header(&layout, "Metrics", ZR_CLOSEABLE, 0, ZR_HEADER_LEFT);
|
|
|
|
if (zr_layout_push(&layout, ZR_LAYOUT_NODE, "Memory", &mem_state))
|
|
|
|
{
|
|
|
|
zr_layout_row_dynamic(&layout, 20, 2);
|
|
|
|
zr_label(&layout,"Total:", ZR_TEXT_LEFT);
|
|
|
|
zr_labelf(&layout, ZR_TEXT_LEFT, "%lu", status.size);
|
|
|
|
zr_label(&layout,"Used:", ZR_TEXT_LEFT);
|
|
|
|
zr_labelf(&layout, ZR_TEXT_LEFT, "%lu", status.allocated);
|
|
|
|
zr_label(&layout,"Required:", ZR_TEXT_LEFT);
|
|
|
|
zr_labelf(&layout, ZR_TEXT_LEFT, "%lu", status.needed);
|
|
|
|
zr_label(&layout,"Calls:", ZR_TEXT_LEFT);
|
|
|
|
zr_labelf(&layout, ZR_TEXT_LEFT, "%lu", status.calls);
|
|
|
|
zr_layout_pop(&layout);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (zr_layout_push(&layout, ZR_LAYOUT_NODE, "Primitives", &prim_state))
|
|
|
|
{
|
|
|
|
zr_layout_row_dynamic(&layout, 20, 2);
|
|
|
|
zr_label(&layout,"Scissor:", ZR_TEXT_LEFT);
|
|
|
|
zr_labelf(&layout, ZR_TEXT_LEFT, "%u", stats->scissors);
|
|
|
|
zr_label(&layout,"Lines:", ZR_TEXT_LEFT);
|
|
|
|
zr_labelf(&layout, ZR_TEXT_LEFT, "%u", stats->lines);
|
|
|
|
zr_label(&layout,"Curves:", ZR_TEXT_LEFT);
|
|
|
|
zr_labelf(&layout, ZR_TEXT_LEFT, "%u", stats->curves);
|
|
|
|
zr_label(&layout,"Rectangles:", ZR_TEXT_LEFT);
|
|
|
|
zr_labelf(&layout, ZR_TEXT_LEFT, "%u", stats->rectangles);
|
|
|
|
zr_label(&layout,"Circles:", ZR_TEXT_LEFT);
|
|
|
|
zr_labelf(&layout, ZR_TEXT_LEFT, "%u", stats->circles);
|
|
|
|
zr_label(&layout,"Triangles:", ZR_TEXT_LEFT);
|
|
|
|
zr_labelf(&layout, ZR_TEXT_LEFT, "%u", stats->triangles);
|
|
|
|
zr_label(&layout,"Images:", ZR_TEXT_LEFT);
|
|
|
|
zr_labelf(&layout, ZR_TEXT_LEFT, "%u", stats->images);
|
|
|
|
zr_label(&layout,"Text:", ZR_TEXT_LEFT);
|
|
|
|
zr_labelf(&layout, ZR_TEXT_LEFT, "%u", stats->text);
|
|
|
|
zr_label(&layout,"Glyphes:", ZR_TEXT_LEFT);
|
|
|
|
zr_labelf(&layout, ZR_TEXT_LEFT, "%u", stats->glyphes);
|
|
|
|
zr_layout_pop(&layout);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
zr_end(&layout, &gui->metrics);
|
2015-05-09 15:26:44 +03:00
|
|
|
}
|
|
|
|
|