overview.c 67 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362
  1. #include <limits.h> /* INT_MAX */
  2. #include <time.h> /* struct tm, localtime */
  3. static int
  4. overview(struct nk_context *ctx)
  5. {
  6. /* window flags */
  7. static nk_bool show_menu = nk_true;
  8. static nk_flags window_flags = NK_WINDOW_TITLE|NK_WINDOW_BORDER|NK_WINDOW_SCALABLE|NK_WINDOW_MOVABLE|NK_WINDOW_MINIMIZABLE|NK_WINDOW_SCROLL_AUTO_HIDE;
  9. nk_flags actual_window_flags = 0;
  10. /* widget flags */
  11. static nk_bool disable_widgets = nk_false;
  12. /* popups */
  13. static enum nk_style_header_align header_align = NK_HEADER_RIGHT;
  14. static nk_bool show_app_about = nk_false;
  15. #ifdef INCLUDE_STYLE
  16. /* styles */
  17. static const char* themes[] = {"Black", "White", "Red", "Blue", "Dark", "Dracula",
  18. "Catppucin Latte", "Catppucin Frappe", "Catppucin Macchiato", "Catppucin Mocha"};
  19. static int current_theme = 0;
  20. #endif
  21. /* window flags */
  22. ctx->style.window.header.align = header_align;
  23. actual_window_flags = window_flags;
  24. if (!(actual_window_flags & NK_WINDOW_TITLE))
  25. actual_window_flags &= ~(NK_WINDOW_MINIMIZABLE|NK_WINDOW_CLOSABLE);
  26. if (nk_begin(ctx, "Overview", nk_rect(10, 10, 400, 600), actual_window_flags))
  27. {
  28. if (show_menu)
  29. {
  30. /* menubar */
  31. enum menu_states {MENU_DEFAULT, MENU_WINDOWS};
  32. static nk_size mprog = 60;
  33. static int mslider = 10;
  34. static nk_bool mcheck = nk_true;
  35. nk_menubar_begin(ctx);
  36. /* menu #1 */
  37. nk_layout_row_begin(ctx, NK_STATIC, 25, 5);
  38. nk_layout_row_push(ctx, 45);
  39. if (nk_menu_begin_label(ctx, "MENU", NK_TEXT_LEFT, nk_vec2(120, 200)))
  40. {
  41. static size_t prog = 40;
  42. static int slider = 10;
  43. static nk_bool check = nk_true;
  44. nk_layout_row_dynamic(ctx, 25, 1);
  45. if (nk_menu_item_label(ctx, "Hide", NK_TEXT_LEFT))
  46. show_menu = nk_false;
  47. if (nk_menu_item_label(ctx, "About", NK_TEXT_LEFT))
  48. show_app_about = nk_true;
  49. nk_progress(ctx, &prog, 100, NK_MODIFIABLE);
  50. nk_slider_int(ctx, 0, &slider, 16, 1);
  51. nk_checkbox_label(ctx, "check", &check);
  52. nk_menu_end(ctx);
  53. }
  54. /* menu #2 */
  55. nk_layout_row_push(ctx, 60);
  56. if (nk_menu_begin_label(ctx, "ADVANCED", NK_TEXT_LEFT, nk_vec2(200, 600)))
  57. {
  58. enum menu_state {MENU_NONE,MENU_FILE, MENU_EDIT,MENU_VIEW,MENU_CHART};
  59. static enum menu_state menu_state = MENU_NONE;
  60. enum nk_collapse_states state;
  61. state = (menu_state == MENU_FILE) ? NK_MAXIMIZED: NK_MINIMIZED;
  62. if (nk_tree_state_push(ctx, NK_TREE_TAB, "FILE", &state)) {
  63. menu_state = MENU_FILE;
  64. nk_menu_item_label(ctx, "New", NK_TEXT_LEFT);
  65. nk_menu_item_label(ctx, "Open", NK_TEXT_LEFT);
  66. nk_menu_item_label(ctx, "Save", NK_TEXT_LEFT);
  67. nk_menu_item_label(ctx, "Close", NK_TEXT_LEFT);
  68. nk_menu_item_label(ctx, "Exit", NK_TEXT_LEFT);
  69. nk_tree_pop(ctx);
  70. } else menu_state = (menu_state == MENU_FILE) ? MENU_NONE: menu_state;
  71. state = (menu_state == MENU_EDIT) ? NK_MAXIMIZED: NK_MINIMIZED;
  72. if (nk_tree_state_push(ctx, NK_TREE_TAB, "EDIT", &state)) {
  73. menu_state = MENU_EDIT;
  74. nk_menu_item_label(ctx, "Copy", NK_TEXT_LEFT);
  75. nk_menu_item_label(ctx, "Delete", NK_TEXT_LEFT);
  76. nk_menu_item_label(ctx, "Cut", NK_TEXT_LEFT);
  77. nk_menu_item_label(ctx, "Paste", NK_TEXT_LEFT);
  78. nk_tree_pop(ctx);
  79. } else menu_state = (menu_state == MENU_EDIT) ? MENU_NONE: menu_state;
  80. state = (menu_state == MENU_VIEW) ? NK_MAXIMIZED: NK_MINIMIZED;
  81. if (nk_tree_state_push(ctx, NK_TREE_TAB, "VIEW", &state)) {
  82. menu_state = MENU_VIEW;
  83. nk_menu_item_label(ctx, "About", NK_TEXT_LEFT);
  84. nk_menu_item_label(ctx, "Options", NK_TEXT_LEFT);
  85. nk_menu_item_label(ctx, "Customize", NK_TEXT_LEFT);
  86. nk_tree_pop(ctx);
  87. } else menu_state = (menu_state == MENU_VIEW) ? MENU_NONE: menu_state;
  88. state = (menu_state == MENU_CHART) ? NK_MAXIMIZED: NK_MINIMIZED;
  89. if (nk_tree_state_push(ctx, NK_TREE_TAB, "CHART", &state)) {
  90. size_t i = 0;
  91. const float values[]={26.0f,13.0f,30.0f,15.0f,25.0f,10.0f,20.0f,40.0f,12.0f,8.0f,22.0f,28.0f};
  92. menu_state = MENU_CHART;
  93. nk_layout_row_dynamic(ctx, 150, 1);
  94. nk_chart_begin(ctx, NK_CHART_COLUMN, NK_LEN(values), 0, 50);
  95. for (i = 0; i < NK_LEN(values); ++i)
  96. nk_chart_push(ctx, values[i]);
  97. nk_chart_end(ctx);
  98. nk_tree_pop(ctx);
  99. } else menu_state = (menu_state == MENU_CHART) ? MENU_NONE: menu_state;
  100. nk_menu_end(ctx);
  101. }
  102. /* menu widgets */
  103. nk_layout_row_push(ctx, 70);
  104. nk_progress(ctx, &mprog, 100, NK_MODIFIABLE);
  105. nk_slider_int(ctx, 0, &mslider, 16, 1);
  106. nk_checkbox_label(ctx, "check", &mcheck);
  107. nk_menubar_end(ctx);
  108. }
  109. if (show_app_about)
  110. {
  111. /* about popup */
  112. static struct nk_rect s = {20, 100, 300, 190};
  113. if (nk_popup_begin(ctx, NK_POPUP_STATIC, "About", NK_WINDOW_CLOSABLE, s))
  114. {
  115. nk_layout_row_dynamic(ctx, 20, 1);
  116. nk_label(ctx, "Nuklear", NK_TEXT_LEFT);
  117. nk_label(ctx, "By Micha Mettke", NK_TEXT_LEFT);
  118. nk_label(ctx, "nuklear is licensed under the public domain License.", NK_TEXT_LEFT);
  119. nk_popup_end(ctx);
  120. } else show_app_about = nk_false;
  121. }
  122. #ifdef INCLUDE_STYLE
  123. /* style selector */
  124. nk_layout_row_dynamic(ctx, 0, 2);
  125. {
  126. int new_theme;
  127. nk_label(ctx, "Style:", NK_TEXT_LEFT);
  128. new_theme = nk_combo(ctx, themes, NK_LEN(themes), current_theme, 25, nk_vec2(200, 200));
  129. if (new_theme != current_theme) {
  130. current_theme = new_theme;
  131. set_style(ctx, current_theme);
  132. }
  133. }
  134. #endif
  135. /* window flags */
  136. if (nk_tree_push(ctx, NK_TREE_TAB, "Window", NK_MINIMIZED)) {
  137. nk_layout_row_dynamic(ctx, 30, 2);
  138. nk_checkbox_label(ctx, "Menu", &show_menu);
  139. nk_checkbox_flags_label(ctx, "Titlebar", &window_flags, NK_WINDOW_TITLE);
  140. nk_checkbox_flags_label(ctx, "Border", &window_flags, NK_WINDOW_BORDER);
  141. nk_checkbox_flags_label(ctx, "Resizable", &window_flags, NK_WINDOW_SCALABLE);
  142. nk_checkbox_flags_label(ctx, "Movable", &window_flags, NK_WINDOW_MOVABLE);
  143. nk_checkbox_flags_label(ctx, "No Scrollbar", &window_flags, NK_WINDOW_NO_SCROLLBAR);
  144. nk_checkbox_flags_label(ctx, "Minimizable", &window_flags, NK_WINDOW_MINIMIZABLE);
  145. nk_checkbox_flags_label(ctx, "Scale Left", &window_flags, NK_WINDOW_SCALE_LEFT);
  146. nk_checkbox_label(ctx, "Disable widgets", &disable_widgets);
  147. nk_tree_pop(ctx);
  148. }
  149. if (disable_widgets)
  150. nk_widget_disable_begin(ctx);
  151. if (nk_tree_push(ctx, NK_TREE_TAB, "Widgets", NK_MINIMIZED))
  152. {
  153. enum options {A,B,C};
  154. static nk_bool checkbox_left_text_left;
  155. static nk_bool checkbox_centered_text_right;
  156. static nk_bool checkbox_right_text_right;
  157. static nk_bool checkbox_right_text_left;
  158. static int option_left;
  159. static int option_right;
  160. if (nk_tree_push(ctx, NK_TREE_NODE, "Text", NK_MINIMIZED))
  161. {
  162. /* Text Widgets */
  163. nk_layout_row_dynamic(ctx, 20, 1);
  164. nk_label(ctx, "Label aligned left", NK_TEXT_LEFT);
  165. nk_label(ctx, "Label aligned centered", NK_TEXT_CENTERED);
  166. nk_label(ctx, "Label aligned right", NK_TEXT_RIGHT);
  167. nk_label_colored(ctx, "Blue text", NK_TEXT_LEFT, nk_rgb(0,0,255));
  168. nk_label_colored(ctx, "Yellow text", NK_TEXT_LEFT, nk_rgb(255,255,0));
  169. nk_text(ctx, "Text without /0", 15, NK_TEXT_RIGHT);
  170. nk_layout_row_static(ctx, 100, 200, 1);
  171. nk_label_wrap(ctx, "This is a very long line to hopefully get this text to be wrapped into multiple lines to show line wrapping");
  172. nk_layout_row_dynamic(ctx, 100, 1);
  173. nk_label_wrap(ctx, "This is another long text to show dynamic window changes on multiline text");
  174. nk_tree_pop(ctx);
  175. }
  176. if (nk_tree_push(ctx, NK_TREE_NODE, "Button", NK_MINIMIZED))
  177. {
  178. /* Buttons Widgets */
  179. nk_layout_row_static(ctx, 30, 100, 3);
  180. if (nk_button_label(ctx, "Button"))
  181. fprintf(stdout, "Button pressed!\n");
  182. nk_button_set_behavior(ctx, NK_BUTTON_REPEATER);
  183. if (nk_button_label(ctx, "Repeater"))
  184. fprintf(stdout, "Repeater is being pressed!\n");
  185. nk_button_set_behavior(ctx, NK_BUTTON_DEFAULT);
  186. nk_button_color(ctx, nk_rgb(0,0,255));
  187. nk_layout_row_static(ctx, 25, 25, 8);
  188. nk_button_symbol(ctx, NK_SYMBOL_CIRCLE_SOLID);
  189. nk_button_symbol(ctx, NK_SYMBOL_CIRCLE_OUTLINE);
  190. nk_button_symbol(ctx, NK_SYMBOL_RECT_SOLID);
  191. nk_button_symbol(ctx, NK_SYMBOL_RECT_OUTLINE);
  192. nk_button_symbol(ctx, NK_SYMBOL_TRIANGLE_UP);
  193. nk_button_symbol(ctx, NK_SYMBOL_TRIANGLE_UP_OUTLINE);
  194. nk_button_symbol(ctx, NK_SYMBOL_TRIANGLE_DOWN);
  195. nk_button_symbol(ctx, NK_SYMBOL_TRIANGLE_DOWN_OUTLINE);
  196. nk_button_symbol(ctx, NK_SYMBOL_TRIANGLE_LEFT);
  197. nk_button_symbol(ctx, NK_SYMBOL_TRIANGLE_LEFT_OUTLINE);
  198. nk_button_symbol(ctx, NK_SYMBOL_TRIANGLE_RIGHT);
  199. nk_button_symbol(ctx, NK_SYMBOL_TRIANGLE_RIGHT_OUTLINE);
  200. nk_layout_row_static(ctx, 30, 100, 2);
  201. nk_button_symbol_label(ctx, NK_SYMBOL_TRIANGLE_LEFT, "prev", NK_TEXT_RIGHT);
  202. nk_button_symbol_label(ctx, NK_SYMBOL_TRIANGLE_RIGHT, "next", NK_TEXT_LEFT);
  203. nk_tree_pop(ctx);
  204. }
  205. if (nk_tree_push(ctx, NK_TREE_NODE, "Basic", NK_MINIMIZED))
  206. {
  207. /* Basic widgets */
  208. static int int_slider = 5;
  209. static float float_slider = 2.5f;
  210. static int int_knob = 5;
  211. static float float_knob = 2.5f;
  212. static nk_size prog_value = 40;
  213. static float property_float = 2;
  214. static int property_int = 10;
  215. static int property_neg = 10;
  216. static float range_float_min = 0;
  217. static float range_float_max = 100;
  218. static float range_float_value = 50;
  219. static int range_int_min = 0;
  220. static int range_int_value = 2048;
  221. static int range_int_max = 4096;
  222. static const float ratio[] = {120, 150};
  223. static int range_int_value_hidden = 2048;
  224. nk_layout_row_dynamic(ctx, 0, 1);
  225. nk_checkbox_label(ctx, "CheckLeft TextLeft", &checkbox_left_text_left);
  226. nk_checkbox_label_align(ctx, "CheckCenter TextRight", &checkbox_centered_text_right, NK_WIDGET_ALIGN_CENTERED | NK_WIDGET_ALIGN_MIDDLE, NK_TEXT_RIGHT);
  227. nk_checkbox_label_align(ctx, "CheckRight TextRight", &checkbox_right_text_right, NK_WIDGET_LEFT, NK_TEXT_RIGHT);
  228. nk_checkbox_label_align(ctx, "CheckRight TextLeft", &checkbox_right_text_left, NK_WIDGET_RIGHT, NK_TEXT_LEFT);
  229. nk_layout_row_static(ctx, 30, 80, 3);
  230. option_left = nk_option_label(ctx, "optionA", option_left == A) ? A : option_left;
  231. option_left = nk_option_label(ctx, "optionB", option_left == B) ? B : option_left;
  232. option_left = nk_option_label(ctx, "optionC", option_left == C) ? C : option_left;
  233. nk_layout_row_static(ctx, 30, 80, 3);
  234. option_right = nk_option_label_align(ctx, "optionA", option_right == A, NK_WIDGET_RIGHT, NK_TEXT_RIGHT) ? A : option_right;
  235. option_right = nk_option_label_align(ctx, "optionB", option_right == B, NK_WIDGET_RIGHT, NK_TEXT_RIGHT) ? B : option_right;
  236. option_right = nk_option_label_align(ctx, "optionC", option_right == C, NK_WIDGET_RIGHT, NK_TEXT_RIGHT) ? C : option_right;
  237. nk_layout_row(ctx, NK_STATIC, 30, 2, ratio);
  238. nk_labelf(ctx, NK_TEXT_LEFT, "Slider int");
  239. nk_slider_int(ctx, 0, &int_slider, 10, 1);
  240. nk_label(ctx, "Slider float", NK_TEXT_LEFT);
  241. nk_slider_float(ctx, 0, &float_slider, 5.0, 0.5f);
  242. nk_labelf(ctx, NK_TEXT_LEFT, "Progressbar: %u" , (int)prog_value);
  243. nk_progress(ctx, &prog_value, 100, NK_MODIFIABLE);
  244. nk_layout_row(ctx, NK_STATIC, 40, 2, ratio);
  245. nk_labelf(ctx, NK_TEXT_LEFT, "Knob int: %d", int_knob);
  246. nk_knob_int(ctx, 0, &int_knob, 10, 1, NK_DOWN, 60.0f);
  247. nk_labelf(ctx, NK_TEXT_LEFT, "Knob float: %.2f", float_knob);
  248. nk_knob_float(ctx, 0, &float_knob, 5.0, 0.5f, NK_DOWN, 60.0f);
  249. nk_layout_row(ctx, NK_STATIC, 25, 2, ratio);
  250. nk_label(ctx, "Property float:", NK_TEXT_LEFT);
  251. nk_property_float(ctx, "Float:", 0, &property_float, 64.0f, 0.1f, 0.2f);
  252. nk_label(ctx, "Property int:", NK_TEXT_LEFT);
  253. nk_property_int(ctx, "Int:", 0, &property_int, 100, 1, 1);
  254. nk_label(ctx, "Property neg:", NK_TEXT_LEFT);
  255. nk_property_int(ctx, "Neg:", -10, &property_neg, 10, 1, 1);
  256. nk_layout_row_dynamic(ctx, 25, 1);
  257. nk_label(ctx, "Range:", NK_TEXT_LEFT);
  258. nk_layout_row_dynamic(ctx, 25, 3);
  259. nk_property_float(ctx, "#min:", 0, &range_float_min, range_float_max, 1.0f, 0.2f);
  260. nk_property_float(ctx, "#float:", range_float_min, &range_float_value, range_float_max, 1.0f, 0.2f);
  261. nk_property_float(ctx, "#max:", range_float_min, &range_float_max, 100, 1.0f, 0.2f);
  262. nk_property_int(ctx, "#min:", INT_MIN, &range_int_min, range_int_max, 1, 10);
  263. nk_property_int(ctx, "#neg:", range_int_min, &range_int_value, range_int_max, 1, 10);
  264. nk_property_int(ctx, "#max:", range_int_min, &range_int_max, INT_MAX, 1, 10);
  265. nk_layout_row_dynamic(ctx, 0, 2);
  266. nk_label(ctx, "Hidden Label:", NK_TEXT_LEFT);
  267. nk_property_int(ctx, "##Hidden Label", range_int_min, &range_int_value_hidden, INT_MAX, 1, 10);
  268. nk_tree_pop(ctx);
  269. }
  270. if (nk_tree_push(ctx, NK_TREE_NODE, "Inactive", NK_MINIMIZED))
  271. {
  272. static nk_bool inactive = 1;
  273. nk_layout_row_dynamic(ctx, 30, 1);
  274. nk_checkbox_label(ctx, "Inactive", &inactive);
  275. nk_layout_row_static(ctx, 30, 80, 1);
  276. if (inactive) {
  277. nk_widget_disable_begin(ctx);
  278. }
  279. if (nk_button_label(ctx, "button"))
  280. fprintf(stdout, "button pressed\n");
  281. nk_widget_disable_end(ctx);
  282. nk_tree_pop(ctx);
  283. }
  284. if (nk_tree_push(ctx, NK_TREE_NODE, "Selectable", NK_MINIMIZED))
  285. {
  286. if (nk_tree_push(ctx, NK_TREE_NODE, "List", NK_MINIMIZED))
  287. {
  288. static nk_bool selected[4] = {nk_false, nk_false, nk_true, nk_false};
  289. nk_layout_row_static(ctx, 18, 100, 1);
  290. nk_selectable_label(ctx, "Selectable", NK_TEXT_LEFT, &selected[0]);
  291. nk_selectable_label(ctx, "Selectable", NK_TEXT_LEFT, &selected[1]);
  292. nk_label(ctx, "Not Selectable", NK_TEXT_LEFT);
  293. nk_selectable_label(ctx, "Selectable", NK_TEXT_LEFT, &selected[2]);
  294. nk_selectable_label(ctx, "Selectable", NK_TEXT_LEFT, &selected[3]);
  295. nk_tree_pop(ctx);
  296. }
  297. if (nk_tree_push(ctx, NK_TREE_NODE, "Grid", NK_MINIMIZED))
  298. {
  299. int i;
  300. static nk_bool selected[16] = {1,0,0,0, 0,1,0,0, 0,0,1,0, 0,0,0,1};
  301. nk_layout_row_static(ctx, 50, 50, 4);
  302. for (i = 0; i < 16; ++i) {
  303. if (nk_selectable_label(ctx, "Z", NK_TEXT_CENTERED, &selected[i])) {
  304. int x = (i % 4), y = i / 4;
  305. if (x > 0) selected[i - 1] ^= 1;
  306. if (x < 3) selected[i + 1] ^= 1;
  307. if (y > 0) selected[i - 4] ^= 1;
  308. if (y < 3) selected[i + 4] ^= 1;
  309. }
  310. }
  311. nk_tree_pop(ctx);
  312. }
  313. nk_tree_pop(ctx);
  314. }
  315. if (nk_tree_push(ctx, NK_TREE_NODE, "Combo", NK_MINIMIZED))
  316. {
  317. /* Combobox Widgets
  318. * In this library comboboxes are not limited to being a popup
  319. * list of selectable text. Instead it is a abstract concept of
  320. * having something that is *selected* or displayed, a popup window
  321. * which opens if something needs to be modified and the content
  322. * of the popup which causes the *selected* or displayed value to
  323. * change or if wanted close the combobox.
  324. *
  325. * While strange at first handling comboboxes in a abstract way
  326. * solves the problem of overloaded window content. For example
  327. * changing a color value requires 4 value modifier (slider, property,...)
  328. * for RGBA then you need a label and ways to display the current color.
  329. * If you want to go fancy you even add rgb and hsv ratio boxes.
  330. * While fine for one color if you have a lot of them it because
  331. * tedious to look at and quite wasteful in space. You could add
  332. * a popup which modifies the color but this does not solve the
  333. * fact that it still requires a lot of cluttered space to do.
  334. *
  335. * In these kind of instance abstract comboboxes are quite handy. All
  336. * value modifiers are hidden inside the combobox popup and only
  337. * the color is shown if not open. This combines the clarity of the
  338. * popup with the ease of use of just using the space for modifiers.
  339. *
  340. * Other instances are for example time and especially date picker,
  341. * which only show the currently activated time/data and hide the
  342. * selection logic inside the combobox popup.
  343. */
  344. static float chart_selection = 8.0f;
  345. static int current_weapon = 0;
  346. static nk_bool check_values[5];
  347. static float position[3];
  348. static struct nk_color combo_color = {130, 50, 50, 255};
  349. static struct nk_colorf combo_color2 = {0.509f, 0.705f, 0.2f, 1.0f};
  350. static size_t prog_a = 20, prog_b = 40, prog_c = 10, prog_d = 90;
  351. static const char *weapons[] = {"Fist","Pistol","Shotgun","Plasma","BFG"};
  352. char buffer[64];
  353. size_t sum = 0;
  354. /* default combobox */
  355. nk_layout_row_static(ctx, 25, 200, 1);
  356. current_weapon = nk_combo(ctx, weapons, NK_LEN(weapons), current_weapon, 25, nk_vec2(200,200));
  357. /* slider color combobox */
  358. if (nk_combo_begin_color(ctx, combo_color, nk_vec2(200,200))) {
  359. float ratios[] = {0.15f, 0.85f};
  360. nk_layout_row(ctx, NK_DYNAMIC, 30, 2, ratios);
  361. nk_label(ctx, "R:", NK_TEXT_LEFT);
  362. combo_color.r = (nk_byte)nk_slide_int(ctx, 0, combo_color.r, 255, 5);
  363. nk_label(ctx, "G:", NK_TEXT_LEFT);
  364. combo_color.g = (nk_byte)nk_slide_int(ctx, 0, combo_color.g, 255, 5);
  365. nk_label(ctx, "B:", NK_TEXT_LEFT);
  366. combo_color.b = (nk_byte)nk_slide_int(ctx, 0, combo_color.b, 255, 5);
  367. nk_label(ctx, "A:", NK_TEXT_LEFT);
  368. combo_color.a = (nk_byte)nk_slide_int(ctx, 0, combo_color.a , 255, 5);
  369. nk_combo_end(ctx);
  370. }
  371. /* complex color combobox */
  372. if (nk_combo_begin_color(ctx, nk_rgb_cf(combo_color2), nk_vec2(200,400))) {
  373. enum color_mode {COL_RGB, COL_HSV};
  374. static int col_mode = COL_RGB;
  375. #ifndef DEMO_DO_NOT_USE_COLOR_PICKER
  376. nk_layout_row_dynamic(ctx, 120, 1);
  377. combo_color2 = nk_color_picker(ctx, combo_color2, NK_RGBA);
  378. #endif
  379. nk_layout_row_dynamic(ctx, 25, 2);
  380. col_mode = nk_option_label(ctx, "RGB", col_mode == COL_RGB) ? COL_RGB : col_mode;
  381. col_mode = nk_option_label(ctx, "HSV", col_mode == COL_HSV) ? COL_HSV : col_mode;
  382. nk_layout_row_dynamic(ctx, 25, 1);
  383. if (col_mode == COL_RGB) {
  384. combo_color2.r = nk_propertyf(ctx, "#R:", 0, combo_color2.r, 1.0f, 0.01f,0.005f);
  385. combo_color2.g = nk_propertyf(ctx, "#G:", 0, combo_color2.g, 1.0f, 0.01f,0.005f);
  386. combo_color2.b = nk_propertyf(ctx, "#B:", 0, combo_color2.b, 1.0f, 0.01f,0.005f);
  387. combo_color2.a = nk_propertyf(ctx, "#A:", 0, combo_color2.a, 1.0f, 0.01f,0.005f);
  388. } else {
  389. float hsva[4];
  390. nk_colorf_hsva_fv(hsva, combo_color2);
  391. hsva[0] = nk_propertyf(ctx, "#H:", 0, hsva[0], 1.0f, 0.01f,0.05f);
  392. hsva[1] = nk_propertyf(ctx, "#S:", 0, hsva[1], 1.0f, 0.01f,0.05f);
  393. hsva[2] = nk_propertyf(ctx, "#V:", 0, hsva[2], 1.0f, 0.01f,0.05f);
  394. hsva[3] = nk_propertyf(ctx, "#A:", 0, hsva[3], 1.0f, 0.01f,0.05f);
  395. combo_color2 = nk_hsva_colorfv(hsva);
  396. }
  397. nk_combo_end(ctx);
  398. }
  399. /* progressbar combobox */
  400. sum = prog_a + prog_b + prog_c + prog_d;
  401. sprintf(buffer, "%lu", sum);
  402. if (nk_combo_begin_label(ctx, buffer, nk_vec2(200,200))) {
  403. nk_layout_row_dynamic(ctx, 30, 1);
  404. nk_progress(ctx, &prog_a, 100, NK_MODIFIABLE);
  405. nk_progress(ctx, &prog_b, 100, NK_MODIFIABLE);
  406. nk_progress(ctx, &prog_c, 100, NK_MODIFIABLE);
  407. nk_progress(ctx, &prog_d, 100, NK_MODIFIABLE);
  408. nk_combo_end(ctx);
  409. }
  410. /* checkbox combobox */
  411. sum = (size_t)(check_values[0] + check_values[1] + check_values[2] + check_values[3] + check_values[4]);
  412. sprintf(buffer, "%lu", sum);
  413. if (nk_combo_begin_label(ctx, buffer, nk_vec2(200,200))) {
  414. nk_layout_row_dynamic(ctx, 30, 1);
  415. nk_checkbox_label(ctx, weapons[0], &check_values[0]);
  416. nk_checkbox_label(ctx, weapons[1], &check_values[1]);
  417. nk_checkbox_label(ctx, weapons[2], &check_values[2]);
  418. nk_checkbox_label(ctx, weapons[3], &check_values[3]);
  419. nk_combo_end(ctx);
  420. }
  421. /* complex text combobox */
  422. sprintf(buffer, "%.2f, %.2f, %.2f", position[0], position[1],position[2]);
  423. if (nk_combo_begin_label(ctx, buffer, nk_vec2(200,200))) {
  424. nk_layout_row_dynamic(ctx, 25, 1);
  425. nk_property_float(ctx, "#X:", -1024.0f, &position[0], 1024.0f, 1,0.5f);
  426. nk_property_float(ctx, "#Y:", -1024.0f, &position[1], 1024.0f, 1,0.5f);
  427. nk_property_float(ctx, "#Z:", -1024.0f, &position[2], 1024.0f, 1,0.5f);
  428. nk_combo_end(ctx);
  429. }
  430. /* chart combobox */
  431. sprintf(buffer, "%.1f", chart_selection);
  432. if (nk_combo_begin_label(ctx, buffer, nk_vec2(200,250))) {
  433. size_t i = 0;
  434. static const float values[]={26.0f,13.0f,30.0f,15.0f,25.0f,10.0f,20.0f,40.0f, 12.0f, 8.0f, 22.0f, 28.0f, 5.0f};
  435. nk_layout_row_dynamic(ctx, 150, 1);
  436. nk_chart_begin(ctx, NK_CHART_COLUMN, NK_LEN(values), 0, 50);
  437. for (i = 0; i < NK_LEN(values); ++i) {
  438. nk_flags res = nk_chart_push(ctx, values[i]);
  439. if (res & NK_CHART_CLICKED) {
  440. chart_selection = values[i];
  441. nk_combo_close(ctx);
  442. }
  443. }
  444. nk_chart_end(ctx);
  445. nk_combo_end(ctx);
  446. }
  447. {
  448. static int time_selected = 0;
  449. static int date_selected = 0;
  450. static struct tm sel_time;
  451. static struct tm sel_date;
  452. if (!time_selected || !date_selected) {
  453. /* keep time and date updated if nothing is selected */
  454. time_t cur_time = time(0);
  455. struct tm *n = localtime(&cur_time);
  456. if (!time_selected)
  457. memcpy(&sel_time, n, sizeof(struct tm));
  458. if (!date_selected)
  459. memcpy(&sel_date, n, sizeof(struct tm));
  460. }
  461. /* time combobox */
  462. sprintf(buffer, "%02d:%02d:%02d", sel_time.tm_hour, sel_time.tm_min, sel_time.tm_sec);
  463. if (nk_combo_begin_label(ctx, buffer, nk_vec2(200,250))) {
  464. time_selected = 1;
  465. nk_layout_row_dynamic(ctx, 25, 1);
  466. sel_time.tm_sec = nk_propertyi(ctx, "#S:", 0, sel_time.tm_sec, 60, 1, 1);
  467. sel_time.tm_min = nk_propertyi(ctx, "#M:", 0, sel_time.tm_min, 60, 1, 1);
  468. sel_time.tm_hour = nk_propertyi(ctx, "#H:", 0, sel_time.tm_hour, 23, 1, 1);
  469. nk_combo_end(ctx);
  470. }
  471. /* date combobox */
  472. sprintf(buffer, "%02d-%02d-%02d", sel_date.tm_mday, sel_date.tm_mon+1, sel_date.tm_year+1900);
  473. if (nk_combo_begin_label(ctx, buffer, nk_vec2(350,400)))
  474. {
  475. int i = 0;
  476. const char *month[] = {"January", "February", "March",
  477. "April", "May", "June", "July", "August", "September",
  478. "October", "November", "December"};
  479. const char *week_days[] = {"SUN", "MON", "TUE", "WED", "THU", "FRI", "SAT"};
  480. const int month_days[] = {31,28,31,30,31,30,31,31,30,31,30,31};
  481. int year = sel_date.tm_year+1900;
  482. int leap_year = (!(year % 4) && ((year % 100))) || !(year % 400);
  483. int days = (sel_date.tm_mon == 1) ?
  484. month_days[sel_date.tm_mon] + leap_year:
  485. month_days[sel_date.tm_mon];
  486. /* header with month and year */
  487. date_selected = 1;
  488. nk_layout_row_begin(ctx, NK_DYNAMIC, 20, 3);
  489. nk_layout_row_push(ctx, 0.05f);
  490. if (nk_button_symbol(ctx, NK_SYMBOL_TRIANGLE_LEFT)) {
  491. if (sel_date.tm_mon == 0) {
  492. sel_date.tm_mon = 11;
  493. sel_date.tm_year = NK_MAX(0, sel_date.tm_year-1);
  494. } else sel_date.tm_mon--;
  495. }
  496. nk_layout_row_push(ctx, 0.9f);
  497. sprintf(buffer, "%s %d", month[sel_date.tm_mon], year);
  498. nk_label(ctx, buffer, NK_TEXT_CENTERED);
  499. nk_layout_row_push(ctx, 0.05f);
  500. if (nk_button_symbol(ctx, NK_SYMBOL_TRIANGLE_RIGHT)) {
  501. if (sel_date.tm_mon == 11) {
  502. sel_date.tm_mon = 0;
  503. sel_date.tm_year++;
  504. } else sel_date.tm_mon++;
  505. }
  506. nk_layout_row_end(ctx);
  507. /* good old week day formula (double because precision) */
  508. {int year_n = (sel_date.tm_mon < 2) ? year-1: year;
  509. int y = year_n % 100;
  510. int c = year_n / 100;
  511. int y4 = (int)((float)y / 4);
  512. int c4 = (int)((float)c / 4);
  513. int m = (int)(2.6 * (double)(((sel_date.tm_mon + 10) % 12) + 1) - 0.2);
  514. int week_day = (((1 + m + y + y4 + c4 - 2 * c) % 7) + 7) % 7;
  515. /* weekdays */
  516. nk_layout_row_dynamic(ctx, 35, 7);
  517. for (i = 0; i < (int)NK_LEN(week_days); ++i)
  518. nk_label(ctx, week_days[i], NK_TEXT_CENTERED);
  519. /* days */
  520. if (week_day > 0) nk_spacing(ctx, week_day);
  521. for (i = 1; i <= days; ++i) {
  522. sprintf(buffer, "%d", i);
  523. if (nk_button_label(ctx, buffer)) {
  524. sel_date.tm_mday = i;
  525. nk_combo_close(ctx);
  526. }
  527. }}
  528. nk_combo_end(ctx);
  529. }
  530. }
  531. nk_tree_pop(ctx);
  532. }
  533. if (nk_tree_push(ctx, NK_TREE_NODE, "Input", NK_MINIMIZED))
  534. {
  535. static const float ratio[] = {120, 150};
  536. static char field_buffer[64];
  537. static char field_w_overwrite_buf[64];
  538. static char text[9][64];
  539. static int text_len[9];
  540. static char box_buffer[512];
  541. static int field_len;
  542. static int field_ow_len;
  543. static int box_len;
  544. nk_flags active;
  545. nk_layout_row(ctx, NK_STATIC, 25, 2, ratio);
  546. nk_label(ctx, "Default:", NK_TEXT_LEFT);
  547. nk_edit_string(ctx, NK_EDIT_SIMPLE, text[0], &text_len[0], 64, nk_filter_default);
  548. nk_label(ctx, "Int:", NK_TEXT_LEFT);
  549. nk_edit_string(ctx, NK_EDIT_SIMPLE, text[1], &text_len[1], 64, nk_filter_decimal);
  550. nk_label(ctx, "Float:", NK_TEXT_LEFT);
  551. nk_edit_string(ctx, NK_EDIT_SIMPLE, text[2], &text_len[2], 64, nk_filter_float);
  552. nk_label(ctx, "Hex:", NK_TEXT_LEFT);
  553. nk_edit_string(ctx, NK_EDIT_SIMPLE, text[4], &text_len[4], 64, nk_filter_hex);
  554. nk_label(ctx, "Octal:", NK_TEXT_LEFT);
  555. nk_edit_string(ctx, NK_EDIT_SIMPLE, text[5], &text_len[5], 64, nk_filter_oct);
  556. nk_label(ctx, "Binary:", NK_TEXT_LEFT);
  557. nk_edit_string(ctx, NK_EDIT_SIMPLE, text[6], &text_len[6], 64, nk_filter_binary);
  558. nk_label(ctx, "Password:", NK_TEXT_LEFT);
  559. {
  560. int i = 0;
  561. int old_len = text_len[8];
  562. char buffer[64];
  563. for (i = 0; i < text_len[8]; ++i) buffer[i] = '*';
  564. nk_edit_string(ctx, NK_EDIT_FIELD, buffer, &text_len[8], 64, nk_filter_default);
  565. if (old_len < text_len[8])
  566. memcpy(&text[8][old_len], &buffer[old_len], (nk_size)(text_len[8] - old_len));
  567. }
  568. nk_label(ctx, "Field:", NK_TEXT_LEFT);
  569. nk_edit_string(ctx, NK_EDIT_FIELD, field_buffer, &field_len, 64, nk_filter_default);
  570. nk_label(ctx, "Field 2:", NK_TEXT_LEFT);
  571. nk_edit_string(ctx, NK_EDIT_SELECTABLE|NK_EDIT_CLIPBOARD, field_w_overwrite_buf, &field_ow_len, 64, nk_filter_default);
  572. nk_label(ctx, "Box:", NK_TEXT_LEFT);
  573. nk_layout_row_static(ctx, 180, 278, 1);
  574. nk_edit_string(ctx, NK_EDIT_BOX, box_buffer, &box_len, 512, nk_filter_default);
  575. nk_layout_row(ctx, NK_STATIC, 25, 2, ratio);
  576. active = nk_edit_string(ctx, NK_EDIT_FIELD|NK_EDIT_SIG_ENTER, text[7], &text_len[7], 64, nk_filter_ascii);
  577. if (nk_button_label(ctx, "Submit") ||
  578. (active & NK_EDIT_COMMITED))
  579. {
  580. text[7][text_len[7]] = '\n';
  581. text_len[7]++;
  582. memcpy(&box_buffer[box_len], &text[7], (nk_size)text_len[7]);
  583. box_len += text_len[7];
  584. text_len[7] = 0;
  585. }
  586. nk_tree_pop(ctx);
  587. }
  588. if (nk_tree_push(ctx, NK_TREE_NODE, "Horizontal Rule", NK_MINIMIZED))
  589. {
  590. nk_layout_row_dynamic(ctx, 12, 1);
  591. nk_label(ctx, "Use this to subdivide spaces visually", NK_TEXT_LEFT);
  592. nk_layout_row_dynamic(ctx, 4, 1);
  593. nk_rule_horizontal(ctx, nk_white, nk_true);
  594. nk_layout_row_dynamic(ctx, 75, 1);
  595. nk_label_wrap(ctx, "Best used in 'Card'-like layouts, with a bigger title font on top. Takes on the size of the previous layout definition. Rounding optional.");
  596. nk_tree_pop(ctx);
  597. }
  598. nk_tree_pop(ctx);
  599. }
  600. if (nk_tree_push(ctx, NK_TREE_TAB, "Chart", NK_MINIMIZED))
  601. {
  602. /* Chart Widgets
  603. * This library has two different rather simple charts. The line and the
  604. * column chart. Both provide a simple way of visualizing values and
  605. * have a retained mode and immediate mode API version. For the retain
  606. * mode version `nk_plot` and `nk_plot_function` you either provide
  607. * an array or a callback to call to handle drawing the graph.
  608. * For the immediate mode version you start by calling `nk_chart_begin`
  609. * and need to provide min and max values for scaling on the Y-axis.
  610. * and then call `nk_chart_push` to push values into the chart.
  611. * Finally `nk_chart_end` needs to be called to end the process. */
  612. float id = 0;
  613. static int col_index = -1;
  614. static int line_index = -1;
  615. static nk_bool show_markers = nk_true;
  616. float step = (2*3.141592654f) / 32;
  617. int i;
  618. int index = -1;
  619. /* line chart */
  620. id = 0;
  621. index = -1;
  622. nk_layout_row_dynamic(ctx, 15, 1);
  623. nk_checkbox_label(ctx, "Show markers", &show_markers);
  624. nk_layout_row_dynamic(ctx, 100, 1);
  625. ctx->style.chart.show_markers = show_markers;
  626. if (nk_chart_begin(ctx, NK_CHART_LINES, 32, -1.0f, 1.0f)) {
  627. for (i = 0; i < 32; ++i) {
  628. nk_flags res = nk_chart_push(ctx, (float)cos(id));
  629. if (res & NK_CHART_HOVERING)
  630. index = (int)i;
  631. if (res & NK_CHART_CLICKED)
  632. line_index = (int)i;
  633. id += step;
  634. }
  635. nk_chart_end(ctx);
  636. }
  637. if (index != -1)
  638. nk_tooltipf(ctx, "Value: %.2f", (float)cos((float)index*step));
  639. if (line_index != -1) {
  640. nk_layout_row_dynamic(ctx, 20, 1);
  641. nk_labelf(ctx, NK_TEXT_LEFT, "Selected value: %.2f", (float)cos((float)index*step));
  642. }
  643. /* column chart */
  644. nk_layout_row_dynamic(ctx, 100, 1);
  645. if (nk_chart_begin(ctx, NK_CHART_COLUMN, 32, 0.0f, 1.0f)) {
  646. for (i = 0; i < 32; ++i) {
  647. nk_flags res = nk_chart_push(ctx, (float)fabs(sin(id)));
  648. if (res & NK_CHART_HOVERING)
  649. index = (int)i;
  650. if (res & NK_CHART_CLICKED)
  651. col_index = (int)i;
  652. id += step;
  653. }
  654. nk_chart_end(ctx);
  655. }
  656. if (index != -1)
  657. nk_tooltipf(ctx, "Value: %.2f", (float)fabs(sin(step * (float)index)));
  658. if (col_index != -1) {
  659. nk_layout_row_dynamic(ctx, 20, 1);
  660. nk_labelf(ctx, NK_TEXT_LEFT, "Selected value: %.2f", (float)fabs(sin(step * (float)col_index)));
  661. }
  662. /* mixed chart */
  663. nk_layout_row_dynamic(ctx, 100, 1);
  664. if (nk_chart_begin(ctx, NK_CHART_COLUMN, 32, 0.0f, 1.0f)) {
  665. nk_chart_add_slot(ctx, NK_CHART_LINES, 32, -1.0f, 1.0f);
  666. nk_chart_add_slot(ctx, NK_CHART_LINES, 32, -1.0f, 1.0f);
  667. for (id = 0, i = 0; i < 32; ++i) {
  668. nk_chart_push_slot(ctx, (float)fabs(sin(id)), 0);
  669. nk_chart_push_slot(ctx, (float)cos(id), 1);
  670. nk_chart_push_slot(ctx, (float)sin(id), 2);
  671. id += step;
  672. }
  673. }
  674. nk_chart_end(ctx);
  675. /* mixed colored chart */
  676. nk_layout_row_dynamic(ctx, 100, 1);
  677. if (nk_chart_begin_colored(ctx, NK_CHART_LINES, nk_rgb(255,0,0), nk_rgb(150,0,0), 32, 0.0f, 1.0f)) {
  678. nk_chart_add_slot_colored(ctx, NK_CHART_LINES, nk_rgb(0,0,255), nk_rgb(0,0,150),32, -1.0f, 1.0f);
  679. nk_chart_add_slot_colored(ctx, NK_CHART_LINES, nk_rgb(0,255,0), nk_rgb(0,150,0), 32, -1.0f, 1.0f);
  680. for (id = 0, i = 0; i < 32; ++i) {
  681. nk_chart_push_slot(ctx, (float)fabs(sin(id)), 0);
  682. nk_chart_push_slot(ctx, (float)cos(id), 1);
  683. nk_chart_push_slot(ctx, (float)sin(id), 2);
  684. id += step;
  685. }
  686. }
  687. nk_chart_end(ctx);
  688. nk_tree_pop(ctx);
  689. }
  690. if (nk_tree_push(ctx, NK_TREE_TAB, "Popup", NK_MINIMIZED))
  691. {
  692. static struct nk_color color = {255,0,0, 255};
  693. static nk_bool select[4];
  694. static nk_bool popup_active;
  695. const struct nk_input *in = &ctx->input;
  696. struct nk_rect bounds;
  697. /* menu contextual */
  698. nk_layout_row_static(ctx, 30, 160, 1);
  699. bounds = nk_widget_bounds(ctx);
  700. nk_label(ctx, "Right click me for menu", NK_TEXT_LEFT);
  701. if (nk_contextual_begin(ctx, 0, nk_vec2(100, 300), bounds)) {
  702. static size_t prog = 40;
  703. static int slider = 10;
  704. nk_layout_row_dynamic(ctx, 25, 1);
  705. nk_checkbox_label(ctx, "Menu", &show_menu);
  706. nk_progress(ctx, &prog, 100, NK_MODIFIABLE);
  707. nk_slider_int(ctx, 0, &slider, 16, 1);
  708. if (nk_contextual_item_label(ctx, "About", NK_TEXT_CENTERED))
  709. show_app_about = nk_true;
  710. nk_selectable_label(ctx, select[0]?"Unselect":"Select", NK_TEXT_LEFT, &select[0]);
  711. nk_selectable_label(ctx, select[1]?"Unselect":"Select", NK_TEXT_LEFT, &select[1]);
  712. nk_selectable_label(ctx, select[2]?"Unselect":"Select", NK_TEXT_LEFT, &select[2]);
  713. nk_selectable_label(ctx, select[3]?"Unselect":"Select", NK_TEXT_LEFT, &select[3]);
  714. nk_contextual_end(ctx);
  715. }
  716. /* color contextual */
  717. nk_layout_row_begin(ctx, NK_STATIC, 30, 2);
  718. nk_layout_row_push(ctx, 120);
  719. nk_label(ctx, "Right Click here:", NK_TEXT_LEFT);
  720. nk_layout_row_push(ctx, 50);
  721. bounds = nk_widget_bounds(ctx);
  722. nk_button_color(ctx, color);
  723. nk_layout_row_end(ctx);
  724. if (nk_contextual_begin(ctx, 0, nk_vec2(350, 60), bounds)) {
  725. nk_layout_row_dynamic(ctx, 30, 4);
  726. color.r = (nk_byte)nk_propertyi(ctx, "#r", 0, color.r, 255, 1, 1);
  727. color.g = (nk_byte)nk_propertyi(ctx, "#g", 0, color.g, 255, 1, 1);
  728. color.b = (nk_byte)nk_propertyi(ctx, "#b", 0, color.b, 255, 1, 1);
  729. color.a = (nk_byte)nk_propertyi(ctx, "#a", 0, color.a, 255, 1, 1);
  730. nk_contextual_end(ctx);
  731. }
  732. /* popup */
  733. nk_layout_row_begin(ctx, NK_STATIC, 30, 2);
  734. nk_layout_row_push(ctx, 120);
  735. nk_label(ctx, "Popup:", NK_TEXT_LEFT);
  736. nk_layout_row_push(ctx, 50);
  737. if (nk_button_label(ctx, "Popup"))
  738. popup_active = 1;
  739. nk_layout_row_end(ctx);
  740. if (popup_active)
  741. {
  742. static struct nk_rect s = {20, 100, 220, 90};
  743. if (nk_popup_begin(ctx, NK_POPUP_STATIC, "Error", 0, s))
  744. {
  745. nk_layout_row_dynamic(ctx, 25, 1);
  746. nk_label(ctx, "A terrible error as occurred", NK_TEXT_LEFT);
  747. nk_layout_row_dynamic(ctx, 25, 2);
  748. if (nk_button_label(ctx, "OK")) {
  749. popup_active = 0;
  750. nk_popup_close(ctx);
  751. }
  752. if (nk_button_label(ctx, "Cancel")) {
  753. popup_active = 0;
  754. nk_popup_close(ctx);
  755. }
  756. nk_popup_end(ctx);
  757. } else popup_active = nk_false;
  758. }
  759. /* tooltip */
  760. nk_layout_row_static(ctx, 30, 150, 1);
  761. bounds = nk_widget_bounds(ctx);
  762. nk_label(ctx, "Hover me for tooltip", NK_TEXT_LEFT);
  763. if (nk_input_is_mouse_hovering_rect(in, bounds))
  764. nk_tooltip(ctx, "This is a tooltip");
  765. nk_tree_pop(ctx);
  766. }
  767. if (nk_tree_push(ctx, NK_TREE_TAB, "Layout", NK_MINIMIZED))
  768. {
  769. if (nk_tree_push(ctx, NK_TREE_NODE, "Widget", NK_MINIMIZED))
  770. {
  771. float ratio_two[] = {0.2f, 0.6f, 0.2f};
  772. float width_two[] = {100, 200, 50};
  773. nk_layout_row_dynamic(ctx, 30, 1);
  774. nk_label(ctx, "Dynamic fixed column layout with generated position and size:", NK_TEXT_LEFT);
  775. nk_layout_row_dynamic(ctx, 30, 3);
  776. nk_button_label(ctx, "button");
  777. nk_button_label(ctx, "button");
  778. nk_button_label(ctx, "button");
  779. nk_layout_row_dynamic(ctx, 30, 1);
  780. nk_label(ctx, "static fixed column layout with generated position and size:", NK_TEXT_LEFT);
  781. nk_layout_row_static(ctx, 30, 100, 3);
  782. nk_button_label(ctx, "button");
  783. nk_button_label(ctx, "button");
  784. nk_button_label(ctx, "button");
  785. nk_layout_row_dynamic(ctx, 30, 1);
  786. nk_label(ctx, "Dynamic array-based custom column layout with generated position and custom size:",NK_TEXT_LEFT);
  787. nk_layout_row(ctx, NK_DYNAMIC, 30, 3, ratio_two);
  788. nk_button_label(ctx, "button");
  789. nk_button_label(ctx, "button");
  790. nk_button_label(ctx, "button");
  791. nk_layout_row_dynamic(ctx, 30, 1);
  792. nk_label(ctx, "Static array-based custom column layout with generated position and custom size:",NK_TEXT_LEFT );
  793. nk_layout_row(ctx, NK_STATIC, 30, 3, width_two);
  794. nk_button_label(ctx, "button");
  795. nk_button_label(ctx, "button");
  796. nk_button_label(ctx, "button");
  797. nk_layout_row_dynamic(ctx, 30, 1);
  798. nk_label(ctx, "Dynamic immediate mode custom column layout with generated position and custom size:",NK_TEXT_LEFT);
  799. nk_layout_row_begin(ctx, NK_DYNAMIC, 30, 3);
  800. nk_layout_row_push(ctx, 0.2f);
  801. nk_button_label(ctx, "button");
  802. nk_layout_row_push(ctx, 0.6f);
  803. nk_button_label(ctx, "button");
  804. nk_layout_row_push(ctx, 0.2f);
  805. nk_button_label(ctx, "button");
  806. nk_layout_row_end(ctx);
  807. nk_layout_row_dynamic(ctx, 30, 1);
  808. nk_label(ctx, "Static immediate mode custom column layout with generated position and custom size:", NK_TEXT_LEFT);
  809. nk_layout_row_begin(ctx, NK_STATIC, 30, 3);
  810. nk_layout_row_push(ctx, 100);
  811. nk_button_label(ctx, "button");
  812. nk_layout_row_push(ctx, 200);
  813. nk_button_label(ctx, "button");
  814. nk_layout_row_push(ctx, 50);
  815. nk_button_label(ctx, "button");
  816. nk_layout_row_end(ctx);
  817. nk_layout_row_dynamic(ctx, 30, 1);
  818. nk_label(ctx, "Static free space with custom position and custom size:", NK_TEXT_LEFT);
  819. nk_layout_space_begin(ctx, NK_STATIC, 60, 4);
  820. nk_layout_space_push(ctx, nk_rect(100, 0, 100, 30));
  821. nk_button_label(ctx, "button");
  822. nk_layout_space_push(ctx, nk_rect(0, 15, 100, 30));
  823. nk_button_label(ctx, "button");
  824. nk_layout_space_push(ctx, nk_rect(200, 15, 100, 30));
  825. nk_button_label(ctx, "button");
  826. nk_layout_space_push(ctx, nk_rect(100, 30, 100, 30));
  827. nk_button_label(ctx, "button");
  828. nk_layout_space_end(ctx);
  829. nk_layout_row_dynamic(ctx, 30, 1);
  830. nk_label(ctx, "Row template:", NK_TEXT_LEFT);
  831. nk_layout_row_template_begin(ctx, 30);
  832. nk_layout_row_template_push_dynamic(ctx);
  833. nk_layout_row_template_push_variable(ctx, 80);
  834. nk_layout_row_template_push_static(ctx, 80);
  835. nk_layout_row_template_end(ctx);
  836. nk_button_label(ctx, "button");
  837. nk_button_label(ctx, "button");
  838. nk_button_label(ctx, "button");
  839. nk_tree_pop(ctx);
  840. }
  841. if (nk_tree_push(ctx, NK_TREE_NODE, "Group", NK_MINIMIZED))
  842. {
  843. static nk_bool group_titlebar = nk_false;
  844. static nk_bool group_border = nk_true;
  845. static nk_bool group_no_scrollbar = nk_false;
  846. static int group_width = 320;
  847. static int group_height = 200;
  848. nk_flags group_flags = 0;
  849. if (group_border) group_flags |= NK_WINDOW_BORDER;
  850. if (group_no_scrollbar) group_flags |= NK_WINDOW_NO_SCROLLBAR;
  851. if (group_titlebar) group_flags |= NK_WINDOW_TITLE;
  852. nk_layout_row_dynamic(ctx, 30, 3);
  853. nk_checkbox_label(ctx, "Titlebar", &group_titlebar);
  854. nk_checkbox_label(ctx, "Border", &group_border);
  855. nk_checkbox_label(ctx, "No Scrollbar", &group_no_scrollbar);
  856. nk_layout_row_begin(ctx, NK_STATIC, 22, 3);
  857. nk_layout_row_push(ctx, 50);
  858. nk_label(ctx, "size:", NK_TEXT_LEFT);
  859. nk_layout_row_push(ctx, 130);
  860. nk_property_int(ctx, "#Width:", 100, &group_width, 500, 10, 1);
  861. nk_layout_row_push(ctx, 130);
  862. nk_property_int(ctx, "#Height:", 100, &group_height, 500, 10, 1);
  863. nk_layout_row_end(ctx);
  864. nk_layout_row_static(ctx, (float)group_height, group_width, 2);
  865. if (nk_group_begin(ctx, "Group", group_flags)) {
  866. int i = 0;
  867. static nk_bool selected[16];
  868. nk_layout_row_static(ctx, 18, 100, 1);
  869. for (i = 0; i < 16; ++i)
  870. nk_selectable_label(ctx, (selected[i]) ? "Selected": "Unselected", NK_TEXT_CENTERED, &selected[i]);
  871. nk_group_end(ctx);
  872. }
  873. nk_tree_pop(ctx);
  874. }
  875. if (nk_tree_push(ctx, NK_TREE_NODE, "Tree", NK_MINIMIZED))
  876. {
  877. static nk_bool root_selected = 0;
  878. nk_bool sel = root_selected;
  879. if (nk_tree_element_push(ctx, NK_TREE_NODE, "Root", NK_MINIMIZED, &sel)) {
  880. static nk_bool selected[8];
  881. int i = 0;
  882. nk_bool node_select = selected[0];
  883. if (sel != root_selected) {
  884. root_selected = sel;
  885. for (i = 0; i < 8; ++i)
  886. selected[i] = sel;
  887. }
  888. if (nk_tree_element_push(ctx, NK_TREE_NODE, "Node", NK_MINIMIZED, &node_select)) {
  889. int j = 0;
  890. static nk_bool sel_nodes[4];
  891. if (node_select != selected[0]) {
  892. selected[0] = node_select;
  893. for (i = 0; i < 4; ++i)
  894. sel_nodes[i] = node_select;
  895. }
  896. nk_layout_row_static(ctx, 18, 100, 1);
  897. for (j = 0; j < 4; ++j)
  898. nk_selectable_symbol_label(ctx, NK_SYMBOL_CIRCLE_SOLID, (sel_nodes[j]) ? "Selected": "Unselected", NK_TEXT_RIGHT, &sel_nodes[j]);
  899. nk_tree_element_pop(ctx);
  900. }
  901. nk_layout_row_static(ctx, 18, 100, 1);
  902. for (i = 1; i < 8; ++i)
  903. nk_selectable_symbol_label(ctx, NK_SYMBOL_CIRCLE_SOLID, (selected[i]) ? "Selected": "Unselected", NK_TEXT_RIGHT, &selected[i]);
  904. nk_tree_element_pop(ctx);
  905. }
  906. nk_tree_pop(ctx);
  907. }
  908. if (nk_tree_push(ctx, NK_TREE_NODE, "Notebook", NK_MINIMIZED))
  909. {
  910. static int current_tab = 0;
  911. float step = (2*3.141592654f) / 32;
  912. enum chart_type {CHART_LINE, CHART_HISTO, CHART_MIXED};
  913. const char *names[] = {"Lines", "Columns", "Mixed"};
  914. float id = 0;
  915. int i;
  916. /* Header */
  917. nk_style_push_vec2(ctx, &ctx->style.window.spacing, nk_vec2(0,0));
  918. nk_style_push_float(ctx, &ctx->style.button.rounding, 0);
  919. nk_layout_row_begin(ctx, NK_STATIC, 20, 3);
  920. for (i = 0; i < 3; ++i) {
  921. /* make sure button perfectly fits text */
  922. const struct nk_user_font *f = ctx->style.font;
  923. float text_width = f->width(f->userdata, f->height, names[i], nk_strlen(names[i]));
  924. float widget_width = text_width + 3 * ctx->style.button.padding.x;
  925. nk_layout_row_push(ctx, widget_width);
  926. if (current_tab == i) {
  927. /* active tab gets highlighted */
  928. struct nk_style_item button_color = ctx->style.button.normal;
  929. ctx->style.button.normal = ctx->style.button.active;
  930. current_tab = nk_button_label(ctx, names[i]) ? i: current_tab;
  931. ctx->style.button.normal = button_color;
  932. } else current_tab = nk_button_label(ctx, names[i]) ? i: current_tab;
  933. }
  934. nk_style_pop_float(ctx);
  935. /* Body */
  936. nk_layout_row_dynamic(ctx, 140, 1);
  937. if (nk_group_begin(ctx, "Notebook", NK_WINDOW_BORDER))
  938. {
  939. nk_style_pop_vec2(ctx);
  940. switch (current_tab) {
  941. default: break;
  942. case CHART_LINE:
  943. nk_layout_row_dynamic(ctx, 100, 1);
  944. if (nk_chart_begin_colored(ctx, NK_CHART_LINES, nk_rgb(255,0,0), nk_rgb(150,0,0), 32, 0.0f, 1.0f)) {
  945. nk_chart_add_slot_colored(ctx, NK_CHART_LINES, nk_rgb(0,0,255), nk_rgb(0,0,150),32, -1.0f, 1.0f);
  946. for (i = 0, id = 0; i < 32; ++i) {
  947. nk_chart_push_slot(ctx, (float)fabs(sin(id)), 0);
  948. nk_chart_push_slot(ctx, (float)cos(id), 1);
  949. id += step;
  950. }
  951. }
  952. nk_chart_end(ctx);
  953. break;
  954. case CHART_HISTO:
  955. nk_layout_row_dynamic(ctx, 100, 1);
  956. if (nk_chart_begin_colored(ctx, NK_CHART_COLUMN, nk_rgb(255,0,0), nk_rgb(150,0,0), 32, 0.0f, 1.0f)) {
  957. for (i = 0, id = 0; i < 32; ++i) {
  958. nk_chart_push_slot(ctx, (float)fabs(sin(id)), 0);
  959. id += step;
  960. }
  961. }
  962. nk_chart_end(ctx);
  963. break;
  964. case CHART_MIXED:
  965. nk_layout_row_dynamic(ctx, 100, 1);
  966. if (nk_chart_begin_colored(ctx, NK_CHART_LINES, nk_rgb(255,0,0), nk_rgb(150,0,0), 32, 0.0f, 1.0f)) {
  967. nk_chart_add_slot_colored(ctx, NK_CHART_LINES, nk_rgb(0,0,255), nk_rgb(0,0,150),32, -1.0f, 1.0f);
  968. nk_chart_add_slot_colored(ctx, NK_CHART_COLUMN, nk_rgb(0,255,0), nk_rgb(0,150,0), 32, 0.0f, 1.0f);
  969. for (i = 0, id = 0; i < 32; ++i) {
  970. nk_chart_push_slot(ctx, (float)fabs(sin(id)), 0);
  971. nk_chart_push_slot(ctx, (float)fabs(cos(id)), 1);
  972. nk_chart_push_slot(ctx, (float)fabs(sin(id)), 2);
  973. id += step;
  974. }
  975. }
  976. nk_chart_end(ctx);
  977. break;
  978. }
  979. nk_group_end(ctx);
  980. } else nk_style_pop_vec2(ctx);
  981. nk_tree_pop(ctx);
  982. }
  983. if (nk_tree_push(ctx, NK_TREE_NODE, "Simple", NK_MINIMIZED))
  984. {
  985. nk_layout_row_dynamic(ctx, 300, 2);
  986. if (nk_group_begin(ctx, "Group_Without_Border", 0)) {
  987. int i = 0;
  988. char buffer[64];
  989. nk_layout_row_static(ctx, 18, 150, 1);
  990. for (i = 0; i < 64; ++i) {
  991. sprintf(buffer, "0x%02x", i);
  992. nk_labelf(ctx, NK_TEXT_LEFT, "%s: scrollable region", buffer);
  993. }
  994. nk_group_end(ctx);
  995. }
  996. if (nk_group_begin(ctx, "Group_With_Border", NK_WINDOW_BORDER)) {
  997. int i = 0;
  998. char buffer[64];
  999. nk_layout_row_dynamic(ctx, 25, 2);
  1000. for (i = 0; i < 64; ++i) {
  1001. sprintf(buffer, "%08d", ((((i%7)*10)^32))+(64+(i%2)*2));
  1002. nk_button_label(ctx, buffer);
  1003. }
  1004. nk_group_end(ctx);
  1005. }
  1006. nk_tree_pop(ctx);
  1007. }
  1008. if (nk_tree_push(ctx, NK_TREE_NODE, "Complex", NK_MINIMIZED))
  1009. {
  1010. int i;
  1011. nk_layout_space_begin(ctx, NK_STATIC, 500, 64);
  1012. nk_layout_space_push(ctx, nk_rect(0,0,150,500));
  1013. if (nk_group_begin(ctx, "Group_left", NK_WINDOW_BORDER)) {
  1014. static nk_bool selected[32];
  1015. nk_layout_row_static(ctx, 18, 100, 1);
  1016. for (i = 0; i < 32; ++i)
  1017. nk_selectable_label(ctx, (selected[i]) ? "Selected": "Unselected", NK_TEXT_CENTERED, &selected[i]);
  1018. nk_group_end(ctx);
  1019. }
  1020. nk_layout_space_push(ctx, nk_rect(160,0,150,240));
  1021. if (nk_group_begin(ctx, "Group_top", NK_WINDOW_BORDER)) {
  1022. nk_layout_row_dynamic(ctx, 25, 1);
  1023. nk_button_label(ctx, "#FFAA");
  1024. nk_button_label(ctx, "#FFBB");
  1025. nk_button_label(ctx, "#FFCC");
  1026. nk_button_label(ctx, "#FFDD");
  1027. nk_button_label(ctx, "#FFEE");
  1028. nk_button_label(ctx, "#FFFF");
  1029. nk_group_end(ctx);
  1030. }
  1031. nk_layout_space_push(ctx, nk_rect(160,250,150,250));
  1032. if (nk_group_begin(ctx, "Group_buttom", NK_WINDOW_BORDER)) {
  1033. nk_layout_row_dynamic(ctx, 25, 1);
  1034. nk_button_label(ctx, "#FFAA");
  1035. nk_button_label(ctx, "#FFBB");
  1036. nk_button_label(ctx, "#FFCC");
  1037. nk_button_label(ctx, "#FFDD");
  1038. nk_button_label(ctx, "#FFEE");
  1039. nk_button_label(ctx, "#FFFF");
  1040. nk_group_end(ctx);
  1041. }
  1042. nk_layout_space_push(ctx, nk_rect(320,0,150,150));
  1043. if (nk_group_begin(ctx, "Group_right_top", NK_WINDOW_BORDER)) {
  1044. static nk_bool selected[4];
  1045. nk_layout_row_static(ctx, 18, 100, 1);
  1046. for (i = 0; i < 4; ++i)
  1047. nk_selectable_label(ctx, (selected[i]) ? "Selected": "Unselected", NK_TEXT_CENTERED, &selected[i]);
  1048. nk_group_end(ctx);
  1049. }
  1050. nk_layout_space_push(ctx, nk_rect(320,160,150,150));
  1051. if (nk_group_begin(ctx, "Group_right_center", NK_WINDOW_BORDER)) {
  1052. static nk_bool selected[4];
  1053. nk_layout_row_static(ctx, 18, 100, 1);
  1054. for (i = 0; i < 4; ++i)
  1055. nk_selectable_label(ctx, (selected[i]) ? "Selected": "Unselected", NK_TEXT_CENTERED, &selected[i]);
  1056. nk_group_end(ctx);
  1057. }
  1058. nk_layout_space_push(ctx, nk_rect(320,320,150,150));
  1059. if (nk_group_begin(ctx, "Group_right_bottom", NK_WINDOW_BORDER)) {
  1060. static nk_bool selected[4];
  1061. nk_layout_row_static(ctx, 18, 100, 1);
  1062. for (i = 0; i < 4; ++i)
  1063. nk_selectable_label(ctx, (selected[i]) ? "Selected": "Unselected", NK_TEXT_CENTERED, &selected[i]);
  1064. nk_group_end(ctx);
  1065. }
  1066. nk_layout_space_end(ctx);
  1067. nk_tree_pop(ctx);
  1068. }
  1069. if (nk_tree_push(ctx, NK_TREE_NODE, "Splitter", NK_MINIMIZED))
  1070. {
  1071. const struct nk_input *in = &ctx->input;
  1072. nk_layout_row_static(ctx, 20, 320, 1);
  1073. nk_label(ctx, "Use slider and spinner to change tile size", NK_TEXT_LEFT);
  1074. nk_label(ctx, "Drag the space between tiles to change tile ratio", NK_TEXT_LEFT);
  1075. if (nk_tree_push(ctx, NK_TREE_NODE, "Vertical", NK_MINIMIZED))
  1076. {
  1077. static float a = 100, b = 100, c = 100;
  1078. struct nk_rect bounds;
  1079. float row_layout[5];
  1080. row_layout[0] = a;
  1081. row_layout[1] = 8;
  1082. row_layout[2] = b;
  1083. row_layout[3] = 8;
  1084. row_layout[4] = c;
  1085. /* header */
  1086. nk_layout_row_static(ctx, 30, 100, 2);
  1087. nk_label(ctx, "left:", NK_TEXT_LEFT);
  1088. nk_slider_float(ctx, 10.0f, &a, 200.0f, 10.0f);
  1089. nk_label(ctx, "middle:", NK_TEXT_LEFT);
  1090. nk_slider_float(ctx, 10.0f, &b, 200.0f, 10.0f);
  1091. nk_label(ctx, "right:", NK_TEXT_LEFT);
  1092. nk_slider_float(ctx, 10.0f, &c, 200.0f, 10.0f);
  1093. /* tiles */
  1094. nk_layout_row(ctx, NK_STATIC, 200, 5, row_layout);
  1095. /* left space */
  1096. if (nk_group_begin(ctx, "left", NK_WINDOW_NO_SCROLLBAR|NK_WINDOW_BORDER|NK_WINDOW_NO_SCROLLBAR)) {
  1097. nk_layout_row_dynamic(ctx, 25, 1);
  1098. nk_button_label(ctx, "#FFAA");
  1099. nk_button_label(ctx, "#FFBB");
  1100. nk_button_label(ctx, "#FFCC");
  1101. nk_button_label(ctx, "#FFDD");
  1102. nk_button_label(ctx, "#FFEE");
  1103. nk_button_label(ctx, "#FFFF");
  1104. nk_group_end(ctx);
  1105. }
  1106. /* scaler */
  1107. bounds = nk_widget_bounds(ctx);
  1108. nk_spacing(ctx, 1);
  1109. if ((nk_input_is_mouse_hovering_rect(in, bounds) ||
  1110. nk_input_is_mouse_prev_hovering_rect(in, bounds)) &&
  1111. nk_input_is_mouse_down(in, NK_BUTTON_LEFT))
  1112. {
  1113. a = row_layout[0] + in->mouse.delta.x;
  1114. b = row_layout[2] - in->mouse.delta.x;
  1115. }
  1116. /* middle space */
  1117. if (nk_group_begin(ctx, "center", NK_WINDOW_BORDER|NK_WINDOW_NO_SCROLLBAR)) {
  1118. nk_layout_row_dynamic(ctx, 25, 1);
  1119. nk_button_label(ctx, "#FFAA");
  1120. nk_button_label(ctx, "#FFBB");
  1121. nk_button_label(ctx, "#FFCC");
  1122. nk_button_label(ctx, "#FFDD");
  1123. nk_button_label(ctx, "#FFEE");
  1124. nk_button_label(ctx, "#FFFF");
  1125. nk_group_end(ctx);
  1126. }
  1127. /* scaler */
  1128. bounds = nk_widget_bounds(ctx);
  1129. nk_spacing(ctx, 1);
  1130. if ((nk_input_is_mouse_hovering_rect(in, bounds) ||
  1131. nk_input_is_mouse_prev_hovering_rect(in, bounds)) &&
  1132. nk_input_is_mouse_down(in, NK_BUTTON_LEFT))
  1133. {
  1134. b = (row_layout[2] + in->mouse.delta.x);
  1135. c = (row_layout[4] - in->mouse.delta.x);
  1136. }
  1137. /* right space */
  1138. if (nk_group_begin(ctx, "right", NK_WINDOW_BORDER|NK_WINDOW_NO_SCROLLBAR)) {
  1139. nk_layout_row_dynamic(ctx, 25, 1);
  1140. nk_button_label(ctx, "#FFAA");
  1141. nk_button_label(ctx, "#FFBB");
  1142. nk_button_label(ctx, "#FFCC");
  1143. nk_button_label(ctx, "#FFDD");
  1144. nk_button_label(ctx, "#FFEE");
  1145. nk_button_label(ctx, "#FFFF");
  1146. nk_group_end(ctx);
  1147. }
  1148. nk_tree_pop(ctx);
  1149. }
  1150. if (nk_tree_push(ctx, NK_TREE_NODE, "Horizontal", NK_MINIMIZED))
  1151. {
  1152. static float a = 100, b = 100, c = 100;
  1153. struct nk_rect bounds;
  1154. /* header */
  1155. nk_layout_row_static(ctx, 30, 100, 2);
  1156. nk_label(ctx, "top:", NK_TEXT_LEFT);
  1157. nk_slider_float(ctx, 10.0f, &a, 200.0f, 10.0f);
  1158. nk_label(ctx, "middle:", NK_TEXT_LEFT);
  1159. nk_slider_float(ctx, 10.0f, &b, 200.0f, 10.0f);
  1160. nk_label(ctx, "bottom:", NK_TEXT_LEFT);
  1161. nk_slider_float(ctx, 10.0f, &c, 200.0f, 10.0f);
  1162. /* top space */
  1163. nk_layout_row_dynamic(ctx, a, 1);
  1164. if (nk_group_begin(ctx, "top", NK_WINDOW_NO_SCROLLBAR|NK_WINDOW_BORDER)) {
  1165. nk_layout_row_dynamic(ctx, 25, 3);
  1166. nk_button_label(ctx, "#FFAA");
  1167. nk_button_label(ctx, "#FFBB");
  1168. nk_button_label(ctx, "#FFCC");
  1169. nk_button_label(ctx, "#FFDD");
  1170. nk_button_label(ctx, "#FFEE");
  1171. nk_button_label(ctx, "#FFFF");
  1172. nk_group_end(ctx);
  1173. }
  1174. /* scaler */
  1175. nk_layout_row_dynamic(ctx, 8, 1);
  1176. bounds = nk_widget_bounds(ctx);
  1177. nk_spacing(ctx, 1);
  1178. if ((nk_input_is_mouse_hovering_rect(in, bounds) ||
  1179. nk_input_is_mouse_prev_hovering_rect(in, bounds)) &&
  1180. nk_input_is_mouse_down(in, NK_BUTTON_LEFT))
  1181. {
  1182. a = a + in->mouse.delta.y;
  1183. b = b - in->mouse.delta.y;
  1184. }
  1185. /* middle space */
  1186. nk_layout_row_dynamic(ctx, b, 1);
  1187. if (nk_group_begin(ctx, "middle", NK_WINDOW_NO_SCROLLBAR|NK_WINDOW_BORDER)) {
  1188. nk_layout_row_dynamic(ctx, 25, 3);
  1189. nk_button_label(ctx, "#FFAA");
  1190. nk_button_label(ctx, "#FFBB");
  1191. nk_button_label(ctx, "#FFCC");
  1192. nk_button_label(ctx, "#FFDD");
  1193. nk_button_label(ctx, "#FFEE");
  1194. nk_button_label(ctx, "#FFFF");
  1195. nk_group_end(ctx);
  1196. }
  1197. {
  1198. /* scaler */
  1199. nk_layout_row_dynamic(ctx, 8, 1);
  1200. bounds = nk_widget_bounds(ctx);
  1201. if ((nk_input_is_mouse_hovering_rect(in, bounds) ||
  1202. nk_input_is_mouse_prev_hovering_rect(in, bounds)) &&
  1203. nk_input_is_mouse_down(in, NK_BUTTON_LEFT))
  1204. {
  1205. b = b + in->mouse.delta.y;
  1206. c = c - in->mouse.delta.y;
  1207. }
  1208. }
  1209. /* bottom space */
  1210. nk_layout_row_dynamic(ctx, c, 1);
  1211. if (nk_group_begin(ctx, "bottom", NK_WINDOW_NO_SCROLLBAR|NK_WINDOW_BORDER)) {
  1212. nk_layout_row_dynamic(ctx, 25, 3);
  1213. nk_button_label(ctx, "#FFAA");
  1214. nk_button_label(ctx, "#FFBB");
  1215. nk_button_label(ctx, "#FFCC");
  1216. nk_button_label(ctx, "#FFDD");
  1217. nk_button_label(ctx, "#FFEE");
  1218. nk_button_label(ctx, "#FFFF");
  1219. nk_group_end(ctx);
  1220. }
  1221. nk_tree_pop(ctx);
  1222. }
  1223. nk_tree_pop(ctx);
  1224. }
  1225. nk_tree_pop(ctx);
  1226. }
  1227. if (disable_widgets)
  1228. nk_widget_disable_end(ctx);
  1229. }
  1230. nk_end(ctx);
  1231. return !nk_window_is_closed(ctx, "Overview");
  1232. }