NK_API nk_flags nk_edit_string2(struct nk_context* ctx, nk_flags flags, char *buffer, int *len, int max) { nk_edit_string(ctx, flags, buffer, len, max, 0); // char* cbuffer = malloc(max); // for (int i = 0; i < max; i++) { // cbuffer[i] = buffer[i]; // } // nk_edit_string(ctx, flags, cbuffer, len, max, 0); // for (int i = 0; i < max; i++) { // buffer[i] = cbuffer[i]; // } // free(cbuffer); }
/* =============================================================== * * GRID * * ===============================================================*/ static void grid_demo(struct nk_context *ctx, struct media *media) { static char text[3][64]; static int text_len[3]; static const char *items[] = {"Item 0","item 1","item 2"}; static int selected_item = 0; static int check = 1; int i; nk_style_set_font(ctx, &media->font_20->handle); if (nk_begin(ctx, "Grid Demo", nk_rect(600, 350, 275, 250), NK_WINDOW_TITLE|NK_WINDOW_BORDER|NK_WINDOW_MOVABLE| NK_WINDOW_NO_SCROLLBAR)) { nk_style_set_font(ctx, &media->font_18->handle); nk_layout_row_dynamic(ctx, 30, 2); nk_label(ctx, "Floating point:", NK_TEXT_RIGHT); nk_edit_string(ctx, NK_EDIT_FIELD, text[0], &text_len[0], 64, nk_filter_float); nk_label(ctx, "Hexadecimal:", NK_TEXT_RIGHT); nk_edit_string(ctx, NK_EDIT_FIELD, text[1], &text_len[1], 64, nk_filter_hex); nk_label(ctx, "Binary:", NK_TEXT_RIGHT); nk_edit_string(ctx, NK_EDIT_FIELD, text[2], &text_len[2], 64, nk_filter_binary); nk_label(ctx, "Checkbox:", NK_TEXT_RIGHT); nk_checkbox_label(ctx, "Check me", &check); nk_label(ctx, "Combobox:", NK_TEXT_RIGHT); if (nk_combo_begin_label(ctx, items[selected_item], nk_vec2(nk_widget_width(ctx), 200))) { nk_layout_row_dynamic(ctx, 25, 1); for (i = 0; i < 3; ++i) if (nk_combo_item_label(ctx, items[i], NK_TEXT_LEFT)) selected_item = i; nk_combo_end(ctx); } } nk_end(ctx); nk_style_set_font(ctx, &media->font_14->handle); }
void nk_wnd_main(nk_menu_handle_t *nk, const char* title) { unsigned i; video_shader_ctx_t shader_info; struct nk_panel layout; struct nk_context *ctx = &nk->ctx; const int id = NK_WND_MAIN; settings_t *settings = config_get_ptr(); char core_basename[PATH_MAX_LENGTH] = {0}; static char picker_filter[PATH_MAX_LENGTH]; static char picker_title[PATH_MAX_LENGTH]; static char* picker_startup_dir; int len_core, len_content = 0; strlcpy(core_basename, path_basename(core), sizeof(core_basename)); if (!out) out = core; if (!string_is_empty(core)) len_core = strlen(path_basename(core)); if (!string_is_empty(content)) len_content = strlen(content); if (nk->window[NK_WND_FILE_PICKER].open) { if (nk_wnd_file_picker(nk, picker_title, picker_startup_dir, out, picker_filter)) { RARCH_LOG ("%s selected\n", out); nk_window_close(&nk->ctx, picker_title); } } if (nk_begin(ctx, &layout, title, nk_rect(240, 10, 600, 400), NK_WINDOW_CLOSABLE|NK_WINDOW_MINIMIZABLE|NK_WINDOW_MOVABLE| NK_WINDOW_SCALABLE|NK_WINDOW_BORDER)) { nk_layout_row_dynamic(ctx, 30, 1); nk_label(ctx,"Core:", NK_TEXT_LEFT); nk_layout_row(ctx, NK_DYNAMIC, 30, 3, ratio); nk_edit_string(ctx, NK_EDIT_SIMPLE, core_basename, &len_core, 64, nk_filter_default); if (nk_button_text(ctx, "...", 3, NK_BUTTON_DEFAULT)) { out = core; strlcpy(picker_title, "Select core", sizeof(picker_title)); strlcpy(picker_filter, ".dll", sizeof(picker_filter)); picker_startup_dir = settings->directory.libretro; nk->window[NK_WND_FILE_PICKER].open = true; } nk_layout_row_dynamic(ctx, 30, 1); nk_label(ctx,"Content:", NK_TEXT_LEFT); nk_layout_row(ctx, NK_DYNAMIC, 30, 3, ratio); nk_edit_string(ctx, NK_EDIT_SIMPLE, content, &len_content, 64, nk_filter_default); if (nk_button_text(ctx, "...", 3, NK_BUTTON_DEFAULT)) { out = content; strlcpy(picker_title, "Select content", sizeof(picker_title)); strlcpy(picker_filter, ".zip", sizeof(picker_filter)); picker_startup_dir = settings->directory.menu_content; nk->window[NK_WND_FILE_PICKER].open = true; } } /* save position and size to restore after context reset */ nk_wnd_set_state(nk, id, nk_window_get_position(ctx), nk_window_get_size(ctx)); nk_end(ctx); }
/* nuklear - v1.00 - public domain */ static void calculator(struct nk_context *ctx) { if (nk_begin(ctx, "Calculator", nk_rect(10, 10, 180, 250), NK_WINDOW_BORDER|NK_WINDOW_NO_SCROLLBAR|NK_WINDOW_MOVABLE)) { static int set = 0, prev = 0, op = 0; static const char numbers[] = "789456123"; static const char ops[] = "+-*/"; static double a = 0, b = 0; static double *current = &a; size_t i = 0; int solve = 0; {int len; char buffer[256]; nk_layout_row_dynamic(ctx, 35, 1); len = snprintf(buffer, 256, "%.2f", *current); nk_edit_string(ctx, NK_EDIT_SIMPLE, buffer, &len, 255, nk_filter_float); buffer[len] = 0; *current = atof(buffer);} nk_layout_row_dynamic(ctx, 35, 4); for (i = 0; i < 16; ++i) { if (i >= 12 && i < 15) { if (i > 12) continue; if (nk_button_label(ctx, "C")) { a = b = op = 0; current = &a; set = 0; } if (nk_button_label(ctx, "0")) { *current = *current*10.0f; set = 0; } if (nk_button_label(ctx, "=")) { solve = 1; prev = op; op = 0; } } else if (((i+1) % 4)) { if (nk_button_text(ctx, &numbers[(i/4)*3+i%4], 1)) { *current = *current * 10.0f + numbers[(i/4)*3+i%4] - '0'; set = 0; } } else if (nk_button_text(ctx, &ops[i/4], 1)) { if (!set) { if (current != &b) { current = &b; } else { prev = op; solve = 1; } } op = ops[i/4]; set = 1; } } if (solve) { if (prev == '+') a = a + b; if (prev == '-') a = a - b; if (prev == '*') a = a * b; if (prev == '/') a = a / b; current = &a; if (set) current = &b; b = 0; set = 0; } } nk_end(ctx); }
void draw_hd_homerun_tab(struct nk_context *ctx, int *tab_screen_height, struct hd_homerun_tab *hd_homerun, struct main_tab *main_settings) { *tab_screen_height = 472; int setup_device = nk_false; const float location_ratio[] = { 0.35f, 0.5f, 0.15f }; const float devices_ratio[] = { 0.8f, 0.2f }; const float tuner_ratio[] = { .35f, 0.4f, 0.13 }; const float channel_ratio[] = { 0.35f, 0.4f }; const float program_ratio[] = { 0.35f, 0.4f }; const float done_ratio[] = { 0.45f, 0.1f }; const float ipv4_ratio[] = { 0.35f, 0.4f}; const float port_ratio[] = { 0.35f, 0.4f }; static int before_selected, after_selected; static int done = nk_false; #if HD_HOMERUN nk_layout_row_dynamic(ctx, 25, 1); nk_label_colored_wrap(ctx, "'hdhomerun_config' command line utility found in environment.", nk_rgb(60, 255, 60)); #else nk_layout_row(ctx, NK_DYNAMIC, 25, 3, location_ratio); nk_label(ctx, "'hdhomerun_config' utility*:", NK_TEXT_LEFT); nk_edit_string(ctx, NK_EDIT_SIMPLE, hd_homerun->location, &hd_homerun->location_len, 260, nk_filter_ascii); if(nk_button_label(ctx, "Browse")) { hd_homerun->is_homerun_browser_active = nk_true; main_settings->scaleWindowForFileBrowser = nk_true; } nk_layout_row_dynamic(ctx, 40, 1); nk_label_wrap(ctx, "*Absolute location of 'hdhomerun_config' executable. Displaying this message means " "either utility is not installed or environment variables aren't set for proper detection."); #endif nk_layout_row_dynamic(ctx, 120, 1); if(nk_group_begin(ctx, "Choose a device:", NK_WINDOW_TITLE|NK_WINDOW_BORDER)) { if(hd_homerun->device_num == 0) { nk_layout_row_dynamic(ctx, 20, 1); nk_label_wrap(ctx, "No devices found, yet. Please check your settings and try again."); } else { nk_layout_row_dynamic(ctx, 20, 1); for(int i = 0; i < hd_homerun->device_num; i++) { nk_selectable_label(ctx, hd_homerun->devices[i], NK_TEXT_LEFT, &hd_homerun->device_select[i]); if(hd_homerun->device_select[i]) { before_selected = i - 1; after_selected = i + 1; for( int j = 0; j <= before_selected; j++) hd_homerun->device_select[j] = nk_false; for(int j = after_selected; j < hd_homerun->device_num; j++) hd_homerun->device_select[j] = nk_false; } } for(int i = 0; i < hd_homerun->device_num; i++) { if(hd_homerun->device_select[i] == nk_true) { hd_homerun->selected = i; break; } else hd_homerun->selected = -1; } } nk_group_end(ctx); } nk_layout_row(ctx, NK_DYNAMIC, 25, 2, devices_ratio); nk_spacing(ctx, 1); if(hd_homerun->selected == -1) { if(nk_button_label(ctx, "Find Devices")) { pthread_attr_init(&attr_find); int err = pthread_create(&tid_find, &attr_find, find_hd_homerun_devices, hd_homerun); if(!err) printf("Find Device thread created!\n"); } } if(hd_homerun->selected != -1 && done == nk_false) { nk_layout_row(ctx, NK_DYNAMIC, 25, 3, tuner_ratio); nk_label(ctx, "Tuner number in use:", NK_TEXT_LEFT); nk_edit_string(ctx, NK_EDIT_SIMPLE, hd_homerun->tuner, &hd_homerun->tuner_len, 2, nk_filter_decimal); nk_label(ctx, "(default is 0)", NK_TEXT_RIGHT); nk_layout_row(ctx, NK_DYNAMIC, 25, 2, channel_ratio); nk_label(ctx, "Channel number to select:", NK_TEXT_LEFT); nk_edit_string(ctx, NK_EDIT_SIMPLE, hd_homerun->channel, &hd_homerun->channel_len, 5, nk_filter_decimal); nk_layout_row(ctx, NK_DYNAMIC, 25, 2, program_ratio); nk_label(ctx, "Program number for extraction:", NK_TEXT_LEFT); nk_edit_string(ctx, NK_EDIT_SIMPLE, hd_homerun->program, &hd_homerun->program_len, 10, nk_filter_decimal); nk_layout_row(ctx, NK_DYNAMIC, 25, 2,ipv4_ratio); nk_label(ctx, "Target IPv4 address:", NK_TEXT_LEFT); nk_edit_string(ctx, NK_EDIT_SIMPLE, hd_homerun->ipv4_address, &hd_homerun->ipv4_address_len, 16, nk_filter_ascii); nk_layout_row(ctx, NK_DYNAMIC, 25, 2, port_ratio); nk_label(ctx, "Target Port number:", NK_TEXT_LEFT); nk_edit_string(ctx, NK_EDIT_SIMPLE, hd_homerun->port_number, &hd_homerun->port_number_len, 7, nk_filter_decimal); nk_layout_row(ctx, NK_DYNAMIC, 25, 2, done_ratio); nk_spacing(ctx, 1); if(nk_button_label(ctx, "Done")) { pthread_attr_init(&attr_setup); int err = pthread_create(&tid_setup, &attr_setup, setup_hd_homerun_device, hd_homerun); if(!err) printf("Setup Device thread created!\n"); pthread_join(tid_setup, NULL); done = nk_true; } } if (done == nk_true) { nk_layout_row_dynamic(ctx, 20, 1); nk_label(ctx, "Stream is being transimitted to target.", NK_TEXT_CENTERED); nk_layout_row_dynamic(ctx, 20, 1); nk_label(ctx, "Please start CCExtractor with UDP settings if not started.", NK_TEXT_CENTERED); } }
void draw_debug_tab(struct nk_context *ctx, int *tab_screen_height, struct main_tab *main_settings, struct output_tab *output, struct debug_tab *debug) { *tab_screen_height = 472; const float stream_ratio[] = { 0.45f, 0.45f, 0.1f }; nk_layout_row_dynamic(ctx, 4, 1); nk_spacing(ctx, 1); nk_layout_row(ctx, NK_DYNAMIC, 25, 3, stream_ratio); nk_checkbox_label(ctx, "Write elementary stream to this file", &debug->is_elementary_stream); nk_edit_string(ctx, NK_EDIT_SIMPLE, debug->elementary_stream, &debug->elementary_stream_len, 260, nk_filter_ascii); if(nk_button_label(ctx, "Browse")) { debug->is_debug_browser_active = nk_true; main_settings->scaleWindowForFileBrowser = nk_true; } nk_layout_row_dynamic(ctx, 25, 1); nk_checkbox_label(ctx, "Dump Intereseting packets, usually those that don't seem to follow specs.", &debug->is_dump_packets); nk_layout_row_dynamic(ctx, 25, 1); nk_checkbox_label(ctx, "Print debug traces from EIA-608 decoder.", &debug->is_debug_608); nk_layout_row_dynamic(ctx, 25, 1); nk_checkbox_label(ctx, "Print debug traces from EIA-708 decoder.", &debug->is_debug_708); nk_layout_row_dynamic(ctx, 25, 1); nk_checkbox_label(ctx, "Enable lots of time stamp output.", &debug->is_stamp_output); nk_layout_row_dynamic(ctx, 25, 1); nk_checkbox_label(ctx, "Print debug info about the analysed elementary video stream.", &debug->is_debug_analysed_vid); nk_layout_row_dynamic(ctx, 25, 1); nk_checkbox_label(ctx, "Print debug trace with raw 608/708 data with time stamps.", &debug->is_raw_608_708); nk_layout_row_dynamic(ctx, 25, 1); nk_checkbox_label(ctx, "Print debug info for parse container files (only for ASF files at the moment).", &debug->is_debug_parsed); if(!(strcmp(output->type[output->type_select], "bin"))) { nk_layout_row_dynamic(ctx, 25, 1); nk_checkbox_label(ctx, "Disable sync code when there's a timeline gap.", &debug->is_disable_sync); nk_layout_row_dynamic(ctx, 25, 1); nk_checkbox_label(ctx, "Don't remove trailing padding blocks.", &debug->is_no_padding); } nk_layout_row_dynamic(ctx, 25, 1); nk_checkbox_label(ctx, "Enable XDS debug traces.", &debug->is_debug_xds); nk_layout_row_dynamic(ctx, 25, 1); nk_checkbox_label(ctx, "Output Program Association Table (PAT) contents.", &debug->is_output_pat); nk_layout_row_dynamic(ctx, 25, 1); nk_checkbox_label(ctx, "Output Program Map Table (PMT) contents.", &debug->is_output_pmt); nk_layout_row_dynamic(ctx, 25, 1); nk_checkbox_label(ctx, "If no suitable packet found in PMT, analyse packet contents and scan for CC data.", &debug->is_scan_ccdata); nk_layout_row_dynamic(ctx, 25, 1); nk_checkbox_label(ctx, "Output Levenshtein debug info(calculated distance, allowed, etc)", &debug->is_output_levenshtein); }
void draw_credits_tab(struct nk_context *ctx, int *tab_screen_height, struct credits_tab *credits) { static struct time before_time, after_time; const float start_time_ratio[] = { 0.005f, 0.26f, 0.18f, 0.1f, 0.25f, 0.18f }; const float atleast_atmost_ratio[] = { 0.005f, 0.28, 0.1f, 0.36f, 0.1f, 0.1f }; static int start_atleast_int, start_atmost_int; *tab_screen_height = 472; //Start Credits Group nk_layout_row_dynamic(ctx, 210, 1); if(nk_group_begin(ctx, "Start Credits", NK_WINDOW_TITLE|NK_WINDOW_BORDER|NK_WINDOW_NO_SCROLLBAR)) { nk_layout_row_dynamic(ctx, 20, 1); nk_checkbox_label(ctx, "Enable, write below text as soon as possible.", &credits->is_start_text); nk_layout_row_dynamic(ctx, 85, 1); nk_edit_string(ctx, NK_EDIT_BOX, credits->start_text, &credits->start_text_len, 1000, nk_filter_ascii); nk_layout_row(ctx, NK_DYNAMIC, 25, 6, start_time_ratio); nk_spacing(ctx, 1); nk_checkbox_label(ctx, "Before (MM:SS)", &credits->is_before); if (nk_combo_begin_label(ctx, credits->before_time_buffer, nk_vec2(100, 100))) { nk_layout_row_dynamic(ctx, 25, 1); sprintf(credits->before_time_buffer, "%02d:%02d", before_time.minutes, before_time.seconds); before_time.seconds = nk_propertyi(ctx, "#S:", 0, before_time.seconds, 60, 1, 1); before_time.minutes = nk_propertyi(ctx, "#M:", 0, before_time.minutes, 60, 1, 1); nk_combo_end(ctx); } nk_spacing(ctx, 1); nk_checkbox_label(ctx, "After (MM:SS)", &credits->is_after); if (nk_combo_begin_label(ctx, credits->after_time_buffer, nk_vec2(100, 100))) { nk_layout_row_dynamic(ctx, 25, 1); sprintf(credits->after_time_buffer, "%02d:%02d", after_time.minutes, after_time.seconds); after_time.seconds = nk_propertyi(ctx, "#S:", 0, after_time.seconds, 60, 1, 1); after_time.minutes = nk_propertyi(ctx, "#M:", 0, after_time.minutes, 60, 1, 1); nk_combo_end(ctx); } nk_layout_row(ctx, NK_DYNAMIC, 25, 6, atleast_atmost_ratio); nk_spacing(ctx, 1); nk_label(ctx, "Display credits at least", NK_TEXT_LEFT); nk_edit_string(ctx, NK_EDIT_SIMPLE, credits->start_atleast_sec, &credits->start_atleast_sec_len, 3, nk_filter_decimal); nk_label(ctx, "seconds and not longer than", NK_TEXT_CENTERED); nk_edit_string(ctx, NK_EDIT_SIMPLE, credits->start_atmost_sec, &credits->start_atmost_sec_len, 3, nk_filter_decimal); nk_label(ctx, "seconds", NK_TEXT_RIGHT); nk_group_end(ctx); } //End Credits Group nk_layout_row_dynamic(ctx, 180, 1); if(nk_group_begin(ctx, "End Credits", NK_WINDOW_TITLE|NK_WINDOW_BORDER|NK_WINDOW_NO_SCROLLBAR)) { nk_layout_row_dynamic(ctx, 20, 1); nk_checkbox_label(ctx, "Enable, write below text after last caption and as close as possible to video end.", &credits->is_end_text); nk_layout_row_dynamic(ctx, 85, 1); nk_edit_string(ctx, NK_EDIT_BOX, credits->end_text, &credits->end_text_len, 1000, nk_filter_ascii); nk_layout_row(ctx,NK_DYNAMIC, 25, 6, atleast_atmost_ratio); nk_spacing(ctx, 1); nk_label(ctx, "Display credits at least", NK_TEXT_LEFT); nk_edit_string(ctx, NK_EDIT_SIMPLE, credits->end_atleast_sec, &credits->end_atleast_sec_len, 3, nk_filter_decimal); nk_label(ctx, "seconds and not longer than", NK_TEXT_CENTERED); nk_edit_string(ctx, NK_EDIT_SIMPLE, credits->end_atmost_sec, &credits->end_atmost_sec_len, 3, nk_filter_decimal); nk_label(ctx, "seconds", NK_TEXT_RIGHT); nk_group_end(ctx); } }
void draw_decoders_tab(struct nk_context *ctx, int *tab_screen_height, struct decoders_tab *decoders) { *tab_screen_height = 472; const float field_channel_ratio[] = { 0.5f, 0.5f }; const float services_ratio[] = { 0.3f, 0.002f, 0.2f }; const float min_distance_ratio[] = { 0.45f, 0.01f, 0.2f }; const float max_distance_ratio[] = { 0.73f, 0.01f, 0.2f }; nk_layout_row_dynamic(ctx, 160, 1); if(nk_group_begin(ctx, "608 Decoder", NK_WINDOW_TITLE|NK_WINDOW_BORDER|NK_WINDOW_NO_SCROLLBAR)) { nk_layout_row(ctx, NK_DYNAMIC, 85, 2, field_channel_ratio); if(nk_group_begin(ctx, "Field", NK_WINDOW_TITLE|NK_WINDOW_NO_SCROLLBAR)) { nk_layout_row_dynamic(ctx, 20, 1); nk_checkbox_label(ctx, "Extract captions from field 1", &decoders->is_field1); nk_layout_row_dynamic(ctx, 20, 1); nk_checkbox_label(ctx, "Extract captions from field 2", &decoders->is_field2); nk_group_end(ctx); } if(nk_group_begin(ctx, "Channel", NK_WINDOW_TITLE|NK_WINDOW_NO_SCROLLBAR)) { nk_layout_row_dynamic(ctx, 20, 1); if(nk_option_label(ctx, "Extract captions from channel 1", decoders->channel == CHANNEL_1)) { decoders->channel = CHANNEL_1; } nk_layout_row_dynamic(ctx, 20, 1); if(nk_option_label(ctx, "Extract captions from channel 2", decoders->channel == CHANNEL_2)) { decoders->channel = CHANNEL_2; } nk_group_end(ctx); } nk_layout_row_dynamic(ctx, 40, 1); nk_label_wrap(ctx, "In general, if you want English subtitles you don't need to use these options. " "If you want the second language (usually " "Spanish), you may need to try other combinations."); nk_group_end(ctx); } nk_layout_row_dynamic(ctx, 125, 1); if(nk_group_begin(ctx, "708 Decoder", NK_WINDOW_TITLE|NK_WINDOW_BORDER|NK_WINDOW_NO_SCROLLBAR)) { nk_layout_row_dynamic(ctx, 20, 1); nk_checkbox_label(ctx, "Enable 708 Decoder", &decoders->is_708); nk_layout_row(ctx, NK_DYNAMIC, 20, 3, services_ratio); nk_label(ctx, "Process these services", NK_TEXT_LEFT); nk_spacing(ctx, 1); nk_edit_string(ctx, NK_EDIT_SIMPLE, decoders->services, &decoders->services_len, 15, nk_filter_ascii); nk_layout_row_dynamic(ctx, 45, 1); nk_label_wrap(ctx, "The service list is a comma seperated list of services to process. " "Valid values: 1 to 63. Ranges are NOT supported."); nk_group_end(ctx); } nk_layout_row_dynamic(ctx, 63, 1); if(nk_group_begin(ctx, "Teletext or DVB (if both are present)", NK_WINDOW_TITLE|NK_WINDOW_BORDER|NK_WINDOW_NO_SCROLLBAR)) { nk_layout_row_dynamic(ctx,20, 2); if(nk_option_label(ctx, "Teletext", decoders->teletext_dvb == TELETEXT)){ decoders->teletext_dvb = TELETEXT; } if(nk_option_label(ctx, "DVB", decoders->teletext_dvb == DVB)){ decoders->teletext_dvb = DVB; } nk_group_end(ctx); } if(decoders->teletext_dvb == TELETEXT) { nk_layout_row_dynamic(ctx, 95, 1); if(nk_group_begin(ctx, "Teletext line duplication", NK_WINDOW_TITLE|NK_WINDOW_BORDER|NK_WINDOW_NO_SCROLLBAR)) { nk_layout_row(ctx, NK_DYNAMIC, 25, 3, min_distance_ratio); nk_label(ctx, "Minimum allowed distance (default 2)", NK_TEXT_LEFT); nk_spacing(ctx, 1); nk_edit_string(ctx, NK_EDIT_SIMPLE, decoders->min_distance, &decoders->min_distance_len, 3, nk_filter_decimal); nk_layout_row(ctx, NK_DYNAMIC, 25, 3, max_distance_ratio); nk_label(ctx, "Maximum allowed distance, as a %age of length (default is 10)", NK_TEXT_LEFT); nk_spacing(ctx, 1); nk_edit_string(ctx, NK_EDIT_SIMPLE, decoders->max_distance, &decoders->max_distance_len, 3, nk_filter_decimal); nk_group_end(ctx); } } }
void draw_output_tab(struct nk_context *ctx, int *tab_screen_height, struct output_tab *output, struct main_tab *main_settings) { const float roll_limit_ratio[] = { 0.55f, 0.45f }; nk_flags active; static int len; static int cap_len; static int color_len = 6; const float gen_enc_ratio[] = { 0.701f, 0.302f }; const float type_ratio[] = { 0.3f,0.7f }; const float out_file_ratio[] = { 0.3f,0.53f,0.17f }; const float cap_file_ratio[] = { 0.2f,0.63f,0.17f }; const float delay_ratio[] = { 0.5f, 0.2f, 0.3f }; const float color_roll_ratio[] = { 0.6f,0.401f }; const float color_check_ratio[] = { 0.6f,0.23f,0.07f,0.1f }; *tab_screen_height = 472; nk_layout_row(ctx, NK_DYNAMIC, 160, 2, gen_enc_ratio); //General Group if (nk_group_begin(ctx, "General", NK_WINDOW_TITLE |NK_WINDOW_NO_SCROLLBAR | NK_WINDOW_BORDER)) { int delay_secs = atoi(output->delay_sec_buffer); //Output Type nk_layout_row(ctx, NK_DYNAMIC, 20, 2, type_ratio); nk_label(ctx, "Output Type:", NK_TEXT_LEFT); output->type_select = nk_combo(ctx, output->type, 13, output->type_select, 25, nk_vec2(225, 200)); //Output File nk_layout_row(ctx, NK_DYNAMIC, 25, 3, out_file_ratio); nk_checkbox_label(ctx, "Output File:", &output->is_filename); nk_edit_string(ctx, NK_EDIT_SIMPLE, output->filename, &output->filename_len, 255, nk_filter_ascii); if (nk_button_label(ctx, "Browse")) { main_settings->scaleWindowForFileBrowser = nk_true; output->is_output_browser_active = nk_true; } //Subtitle Delay nk_layout_row(ctx, NK_DYNAMIC, 25, 3, delay_ratio); nk_checkbox_label(ctx, "Add delay in subtitles for", &output->is_delay); delay_secs = nk_propertyi(ctx, "", 0, delay_secs, 1000, 1, 1); sprintf(output->delay_sec_buffer, "%d", delay_secs); nk_label(ctx, "seconds", NK_TEXT_LEFT); //Export XDS info nk_layout_row_dynamic(ctx, 25, 1); nk_checkbox_label(ctx, "Export XDS information (transcripts)", &output->is_export_xds); nk_group_end(ctx); } //Encoding Group if (nk_group_begin(ctx, "Encoding", NK_WINDOW_TITLE |NK_WINDOW_NO_SCROLLBAR | NK_WINDOW_BORDER)) { static int option = UTF; nk_layout_row_dynamic(ctx, 20, 1); if (nk_option_label(ctx, "Latin", output->encoding == LATIN)) { output->encoding = LATIN; } nk_layout_row_dynamic(ctx, 20, 1); if (nk_option_label(ctx, "Unicode", output->encoding == UNIC)) { output->encoding = UNIC; } nk_layout_row_dynamic(ctx, 20, 1); if (nk_option_label(ctx, "UTF-8", output->encoding == UTF)) { output->encoding = UTF; } nk_layout_row_dynamic(ctx, 20, 1); nk_checkbox_label(ctx, "Byte Order Mark*", &output->is_bom); nk_layout_row_dynamic(ctx, 20, 1); nk_label(ctx, "*( For UNIX programs )", NK_TEXT_LEFT); nk_group_end(ctx); } nk_layout_row(ctx, NK_DYNAMIC, 100, 2, gen_enc_ratio); //Capitalization Group if(nk_group_begin(ctx, "Capitalization", NK_WINDOW_TITLE|NK_WINDOW_NO_SCROLLBAR | NK_WINDOW_BORDER)) { nk_layout_row_dynamic(ctx, 20, 1); nk_checkbox_label(ctx, "Standard capitalization rules.", &output->is_cap_standard); nk_layout_row(ctx, NK_DYNAMIC, 25, 3, cap_file_ratio); nk_checkbox_label(ctx, "Cap file:", &output->is_cap_file); nk_edit_string(ctx, NK_EDIT_SIMPLE, output->cap_dictionary, &output->cap_dictionary_len, 255, nk_filter_ascii); if (nk_button_label(ctx, "Browse")) { main_settings->scaleWindowForFileBrowser = nk_true; output->is_cap_browser_active = nk_true; } nk_group_end(ctx); } //Line Endings if (nk_group_begin(ctx, "Line Endings:", NK_WINDOW_TITLE | NK_WINDOW_NO_SCROLLBAR |NK_WINDOW_BORDER)) { nk_layout_row_dynamic(ctx, 20, 1); if (nk_option_label(ctx, "CRLF (Windows)", output->line_ending == CRLF)) { output->line_ending = CRLF; } nk_layout_row_dynamic(ctx, 25, 1); if (nk_option_label(ctx, "LF (UNIX-like)", output->line_ending == LF)) { output->line_ending = LF; } nk_group_end(ctx); } nk_layout_row(ctx, NK_DYNAMIC, 170, 2, color_roll_ratio); //Colors and Styles Group if (nk_group_begin(ctx, "Colors and Styles", NK_WINDOW_TITLE | NK_WINDOW_BORDER)) { nk_layout_row_dynamic(ctx, 20, 1); nk_checkbox_label(ctx, "Center Text (remove left and right spaces)", &output->is_center); nk_layout_row_dynamic(ctx, 20, 1); nk_checkbox_label(ctx, "Add dash (-) when speaker changes (for .srt)", &output->is_dash); nk_layout_row_dynamic(ctx, 20, 1); nk_checkbox_label(ctx, "Don't add typesetting tags(bold, italic, etc.)", &output->no_typesetting); nk_layout_row_dynamic(ctx, 20, 1); if(nk_option_label(ctx, "Don't add color information", output->font_color == NO_COLOR)) { output->font_color = NO_COLOR; } nk_layout_row(ctx, NK_DYNAMIC, 20, 4, color_check_ratio); if (nk_option_label(ctx, "Default color (RRGGBB)#", output->font_color == DEFAULT_COLOR)) { output->font_color = DEFAULT_COLOR; } active = nk_edit_string(ctx, NK_EDIT_FIELD|NK_EDIT_SIG_ENTER, output->color_hex, &color_len, 7, nk_filter_hex); nk_label(ctx, "or", NK_TEXT_CENTERED); if (nk_button_color(ctx, output->color_rgb)) output->color_popup = nk_true; if (show_color_from_picker) { sprintf(output->color_hex, "%02X%02X%02X", output->color_rgb.r, output->color_rgb.g, output->color_rgb.b); show_color_from_picker = nk_false; } /*if (active & NK_EDIT_COMMITED) { output->color_rgb.r = (int)strtol(strncat(output->color_hex[0], output->color_hex[1], 2), NULL, 16); output->color_rgb.g = (int)strtol(strncat(output->color_hex[2], output->color_hex[3], 2), NULL, 16); output->color_rgb.b = (int)strtol(strncat(output->color_hex[4], output->color_hex[5], 2), NULL, 16); printf("%d%d%d", output->color_rgb.r, output->color_rgb.g, output->color_rgb.b); }*/ nk_group_end(ctx); } //Roll-up Captions Group if (nk_group_begin(ctx, "Roll-up Captions", NK_WINDOW_TITLE | NK_WINDOW_NO_SCROLLBAR | NK_WINDOW_BORDER)) { nk_layout_row_dynamic(ctx, 25, 1); if (nk_option_label(ctx, "Letters appear in realtime", output->onetime_or_realtime == REALTIME)) { output->onetime_or_realtime = REALTIME; } nk_layout_row_dynamic(ctx, 25, 1); nk_label(ctx, "(Allows duplication of content)", NK_TEXT_LEFT); nk_layout_row(ctx, NK_DYNAMIC, 20, 2, roll_limit_ratio); nk_label(ctx, "Limit visible lines", NK_TEXT_LEFT); output->roll_limit_select = nk_combo(ctx, output->roll_limit, 4, output->roll_limit_select, 25, nk_vec2(80, 80)); nk_layout_row_dynamic(ctx, 20, 1); if (nk_option_label(ctx, "Letters appear line by line", output->onetime_or_realtime == ONETIME)) { output->onetime_or_realtime = ONETIME; } nk_layout_row_dynamic(ctx, 25, 1); nk_label(ctx, "(No duplication of content)", NK_TEXT_LEFT); nk_group_end(ctx); } }
void draw_advanced_input_tab(struct nk_context *ctx, int *tab_screen_height, struct advanced_input_tab *advanced_input) { *tab_screen_height = 472; const float prog_myth_ratio[] = { 0.5f, 0.5f }; const float prog_num_ratio[] = { 0.67f, 0.03f, 0.3f }; nk_layout_row(ctx, NK_DYNAMIC, 125, 2, prog_myth_ratio); //Multiple Programs Group if(nk_group_begin(ctx, "Multiple Programs", NK_WINDOW_BORDER|NK_WINDOW_NO_SCROLLBAR|NK_WINDOW_TITLE)) { nk_layout_row_dynamic(ctx, 25, 1); nk_checkbox_label(ctx, "File contains multiple programs", &advanced_input->is_multiple_program); nk_layout_row_dynamic(ctx, 20, 1); if(nk_option_label(ctx, "Process first suitable program", advanced_input->multiple_program == FIRST_PROG)) { advanced_input->multiple_program = FIRST_PROG; } nk_layout_row(ctx, NK_DYNAMIC, 25, 3, prog_num_ratio); if(nk_option_label(ctx, "Process program with #", advanced_input->multiple_program == PROG_NUM)) { advanced_input->multiple_program = PROG_NUM; } nk_spacing(ctx, 1); nk_edit_string(ctx, NK_EDIT_SIMPLE, advanced_input->prog_number, &advanced_input->prog_number_len, 6, nk_filter_decimal); nk_group_end(ctx); } //Myth TV group if(nk_group_begin(ctx, "Myth TV", NK_WINDOW_TITLE|NK_WINDOW_BORDER|NK_WINDOW_NO_SCROLLBAR)) { nk_layout_row_dynamic(ctx, 20, 1); if(nk_option_label(ctx, "Auto", advanced_input->set_myth == AUTO_MYTH)) { advanced_input->set_myth = AUTO_MYTH; } nk_layout_row_dynamic(ctx, 20, 1); if(nk_option_label(ctx, "Force usage of Myth TV decoder", advanced_input->set_myth == FORCE_MYTH)) { advanced_input->set_myth = FORCE_MYTH; } nk_layout_row_dynamic(ctx, 20, 1); if(nk_option_label(ctx, "Disable Myth TV decoder", advanced_input->set_myth == DISABLE_MYTH)) { advanced_input->set_myth = DISABLE_MYTH; } nk_group_end(ctx); } //Miscellaneous group nk_layout_row_dynamic(ctx, 210, 1); if(nk_group_begin(ctx, "Miscellaneous", NK_WINDOW_TITLE|NK_WINDOW_BORDER|NK_WINDOW_NO_SCROLLBAR)) { nk_layout_row_dynamic(ctx, 20, 1); nk_checkbox_label(ctx, "Use 90090 as MPEG clock frequency instead of 90000 (needed for some DVDs", &advanced_input->is_mpeg_90090); nk_layout_row_dynamic(ctx, 20, 1); nk_checkbox_label(ctx, "Use 0000 as CC padding instead of 8080", &advanced_input->is_padding_0000); nk_layout_row_dynamic(ctx, 20, 1); nk_checkbox_label(ctx, "Use the pic_order_cnt_lsb in AVC/H.264 data streams to order the CC information", &advanced_input->is_order_ccinfo); nk_layout_row_dynamic(ctx, 20, 1); nk_checkbox_label(ctx, "Work around a bug in Win 7s software when converted from *.wtv to *.dvr-ms", &advanced_input->is_win_bug); nk_layout_row_dynamic(ctx, 20, 1); nk_checkbox_label(ctx, "File was captured from Hauppage card", &advanced_input->is_hauppage_file); nk_layout_row_dynamic(ctx, 20, 1); nk_checkbox_label(ctx, "Force processing video track in MP4(instead of dedicated CC track", &advanced_input->is_process_mp4); nk_layout_row_dynamic(ctx, 20, 1); nk_checkbox_label(ctx, "Ignore broadcast date info (only affects Teletext in timed transcript with -datets)", &advanced_input->is_ignore_broadcast); nk_group_end(ctx); } }
/*Tab specific functions*/ void draw_input_tab(struct nk_context *ctx, int *tab_screen_height, struct input_tab *input, struct decoders_tab *decoders) { const float screenful_limit_ratio[] = { 0.47f, 0.3f }; static struct time from_time, until_time; const float stream_type_pid_ratio[] = { 0.7f,0.3f }; const float mpeg_type_ratio[] = { 0.7f,0.3f }; const float teletext_page_ratio[] = { 0.75f,0.25f }; const float stream_teletext_ratio[] = { 0.5f, 0.501f }; const float wait_data_ratio[] = { 0.6f, 0.25f, 0.15f }; const float gen_type_ratio[] = { 0.3f, 0.7f }; const float gen_time_ratio[] = { 0.6f ,0.401f}; const char *split_type[] = { "Individual Files", "Parts of same video. Cut by generic tool", "Parts of same video. Cut by video tool" }; static int split_num; *tab_screen_height = 472; nk_layout_row(ctx, NK_DYNAMIC, 150, 2, gen_time_ratio); //General Group if (nk_group_begin(ctx, "General", NK_WINDOW_TITLE | NK_WINDOW_NO_SCROLLBAR | NK_WINDOW_BORDER)) { //Input Type nk_layout_row(ctx, NK_DYNAMIC, 25, 2, gen_type_ratio); nk_label(ctx, "Input Type:", NK_TEXT_LEFT); input->type_select = nk_combo(ctx, input->type, 9, input->type_select, 25, nk_vec2(225, 200)); //Split Type nk_layout_row(ctx, NK_DYNAMIC, 25, 2, gen_type_ratio); nk_label(ctx, "Split Type:", NK_TEXT_LEFT); split_num = nk_combo(ctx, split_type, 3, split_num, 25, nk_vec2(240, 200)); if (split_num == 2) input->is_split = nk_true; nk_layout_row_dynamic(ctx, 20, 1); nk_checkbox_label(ctx, "Live Stream.*", &input->is_live_stream); nk_layout_row(ctx, NK_DYNAMIC, 21, 3, wait_data_ratio); nk_label(ctx, "*Wait when no data arrives for", NK_TEXT_LEFT); nk_edit_string(ctx, NK_EDIT_SIMPLE, input->wait_data_sec, &input->wait_data_sec_len, 999, nk_filter_decimal); nk_label(ctx, "sec", NK_TEXT_LEFT); nk_group_end(ctx); } //Timing Group if (nk_group_begin(ctx, "Timing", NK_WINDOW_TITLE | NK_WINDOW_NO_SCROLLBAR | NK_WINDOW_BORDER)) { //Process From nk_layout_row_dynamic(ctx, 20, 1); nk_checkbox_label(ctx, "Process From: (HH:MM:SS)", &input->is_process_from); nk_layout_row_dynamic(ctx, 25, 1); if (nk_combo_begin_label(ctx, input->from_time_buffer, nk_vec2(180, 250))) { sprintf(input->from_time_buffer, "%02d:%02d:%02d", from_time.hours, from_time.minutes, from_time.seconds); nk_layout_row_dynamic(ctx, 25, 1); from_time.seconds = nk_propertyi(ctx, "#Seconds:", 0, from_time.seconds, 60, 1, 1); from_time.minutes = nk_propertyi(ctx, "#Minutes:", 0, from_time.minutes, 60, 1, 1); from_time.hours = nk_propertyi(ctx, "#Hours:", 0, from_time.hours, 99, 1, 1); nk_combo_end(ctx); } //Process Until nk_layout_row_dynamic(ctx, 20, 1); nk_checkbox_label(ctx, "Process Until: (HH:MM:SS)", &input->is_process_until); nk_layout_row_dynamic(ctx, 25, 1); if (nk_combo_begin_label(ctx, input->until_time_buffer, nk_vec2(180, 250))) { sprintf(input->until_time_buffer, "%02d:%02d:%02d", until_time.hours, until_time.minutes, until_time.seconds); nk_layout_row_dynamic(ctx, 25, 1); until_time.seconds = nk_propertyi(ctx, "#Seconds:", 0, until_time.seconds, 60, 1, 1); until_time.minutes = nk_propertyi(ctx, "#Minutes:", 0, until_time.minutes, 60, 1, 1); until_time.hours = nk_propertyi(ctx, "#Hours:", 0, until_time.hours, 99, 1, 1); nk_combo_end(ctx); } nk_group_end(ctx); } nk_layout_row(ctx, NK_DYNAMIC, 150, 2, stream_teletext_ratio); //Elementary Stream Group if (nk_group_begin(ctx, "Elementary Stream", NK_WINDOW_NO_SCROLLBAR | NK_WINDOW_TITLE | NK_WINDOW_BORDER)) { nk_layout_row_dynamic(ctx, 20, 1); if (nk_option_label(ctx, "Auto", input->elementary_stream == AUTO_DETECT)) { input->elementary_stream = AUTO_DETECT; } nk_layout_row(ctx, NK_DYNAMIC, 25, 2, stream_type_pid_ratio); if (nk_option_label(ctx, "Process stream of type:", input->elementary_stream == STREAM_TYPE)) { input->elementary_stream = STREAM_TYPE; } nk_edit_string(ctx, NK_EDIT_SIMPLE, input->stream_type, &input->stream_type_len, 9, nk_filter_decimal); nk_layout_row(ctx, NK_DYNAMIC, 25, 2, stream_type_pid_ratio); if (nk_option_label(ctx, "Process stream with PID:", input->elementary_stream == STREAM_PID)) { input->elementary_stream = STREAM_PID; } nk_edit_string(ctx, NK_EDIT_SIMPLE, input->stream_pid, &input->stream_pid_len, 9, nk_filter_decimal); nk_layout_row(ctx, NK_DYNAMIC, 25, 2, mpeg_type_ratio); nk_checkbox_label(ctx, "Assume MPEG type is:", &input->is_assume_mpeg); nk_edit_string(ctx, NK_EDIT_SIMPLE, input->mpeg_type, &input->mpeg_type_len, 9, nk_filter_decimal); if(input->teletext_decoder == FORCE) { input->elementary_stream = STREAM_PID; } nk_group_end(ctx); } //Teletext Group if (nk_group_begin(ctx, "Teletext", NK_WINDOW_NO_SCROLLBAR | NK_WINDOW_TITLE | NK_WINDOW_BORDER)) { if(decoders->teletext_dvb == DVB){ nk_layout_row_dynamic(ctx, 40, 1); nk_label_colored_wrap(ctx, "Teletext is disabled in Decoders->Teletext or DVB.", nk_rgb(255, 56, 38)); } else { nk_layout_row_dynamic(ctx, 20, 1); if (nk_option_label(ctx, "Auto", input->teletext_decoder == AUTO_DECODE)) { input->teletext_decoder = AUTO_DECODE; } nk_layout_row_dynamic(ctx, 25, 1); if (nk_option_label(ctx, "Force Teletext decoder", input->teletext_decoder == FORCE)) { input->teletext_decoder = FORCE; } nk_layout_row_dynamic(ctx, 25, 1); if (nk_option_label(ctx, "Disable Teletext decoder", input->teletext_decoder == DISABLE)) { input->teletext_decoder = DISABLE; } nk_layout_row(ctx, NK_DYNAMIC, 20, 2, teletext_page_ratio); nk_checkbox_label(ctx, "Process Teletext Page #", &input->is_process_teletext_page); nk_edit_string(ctx, NK_EDIT_SIMPLE, input->teletext_page_number, &input->teletext_page_numer_len, 99999, nk_filter_decimal); } nk_group_end(ctx); } //Screenfuls limit group nk_layout_row(ctx, NK_DYNAMIC, 95, 2, stream_teletext_ratio); if (nk_group_begin(ctx, "'Screenfuls' limit", NK_WINDOW_BORDER | NK_WINDOW_TITLE | NK_WINDOW_NO_SCROLLBAR)) { int screenful_limits = atoi(input->screenful_limit_buffer); nk_layout_row_dynamic(ctx, 20, 1); if (nk_option_label(ctx, "No limit", input->is_limit == NO_LIMIT)) { input->is_limit = NO_LIMIT; } nk_layout_row(ctx, NK_DYNAMIC, 25, 2, screenful_limit_ratio); if (nk_option_label(ctx, "Screenful Limit:", input->is_limit == LIMITED)) { input->is_limit = LIMITED; } screenful_limits = nk_propertyi(ctx, "", 0, screenful_limits, 999, 1, 1); sprintf(input->screenful_limit_buffer, "%d", screenful_limits); nk_group_end(ctx); } //Clock group if (nk_group_begin(ctx, "Clock", NK_WINDOW_BORDER | NK_WINDOW_TITLE | NK_WINDOW_NO_SCROLLBAR)) { nk_layout_row_dynamic(ctx, 20, 3); if (nk_option_label(ctx, "Auto", input->clock_input == AUTO)) { input->clock_input = AUTO; } if (nk_option_label(ctx, "GOP", input->clock_input == GOP)) { input->clock_input = GOP; } if (nk_option_label(ctx, "PTS", input->clock_input == PTS)) { input->clock_input = PTS; } nk_group_end(ctx); } }
void draw_burned_subs_tab(struct nk_context *ctx, int *tab_screen_height, struct burned_subs_tab *burned_subs) { *tab_screen_height = 472; const float color_mode_ratio[] = { 0.65f, 0.351f}; const float preset_ratio[] = { 0.4f, 0.5f }; const float custom_ratio[] = { 0.4f, 0.5f}; const float delay_ratio[] = { 0.4f, 0.2f, 0.2f }; const float threshold_ratio[] = { 0.9f, 0.1f }; static char buffer[5]; nk_layout_row_dynamic(ctx, 30, 1); #if ENABLE_OCR nk_checkbox_label(ctx, "Enable Burned-in Subtitle Extraction", &burned_subs->is_burned_subs); #else nk_label_colored(ctx, "Required Library not found. Cannot perform Burned subtitle extraction.", NK_TEXT_LEFT, nk_rgb(255, 56, 38)); #endif nk_layout_row(ctx, NK_DYNAMIC, 140, 2, color_mode_ratio); if(nk_group_begin(ctx, "Subtitle Color", NK_WINDOW_TITLE | NK_WINDOW_NO_SCROLLBAR | NK_WINDOW_BORDER)) { nk_layout_row(ctx, NK_DYNAMIC, 25, 2, preset_ratio); if(nk_option_label(ctx, "Preset color:", burned_subs->color_type == PRESET)){ burned_subs->color_type = PRESET; } burned_subs->subs_color_select = nk_combo(ctx, burned_subs->subs_color, 7, burned_subs->subs_color_select, 25, nk_vec2(100, 100)); nk_layout_row(ctx, NK_DYNAMIC, 25, 2, custom_ratio); if(nk_option_label(ctx, "Custom Hue:", burned_subs->color_type == CUSTOM)){ burned_subs->color_type = CUSTOM; } nk_edit_string(ctx, NK_EDIT_SIMPLE, burned_subs->custom_hue, &burned_subs->custom_hue_len, 4, nk_filter_decimal); nk_layout_row_dynamic(ctx, 20, 1); nk_label_wrap(ctx, "Custom Hue can be between 1 and 360"); nk_layout_row_dynamic(ctx, 20, 1); nk_label_wrap(ctx, "Refer to HSV color chart."); nk_group_end(ctx); } if(nk_group_begin(ctx, "OCR mode", NK_WINDOW_TITLE|NK_WINDOW_NO_SCROLLBAR|NK_WINDOW_BORDER)) { nk_layout_row_dynamic(ctx, 25, 1); if(nk_option_label(ctx, "Frame - wise", burned_subs->ocr_mode == FRAME_WISE)){ burned_subs->ocr_mode = FRAME_WISE; } nk_layout_row_dynamic(ctx, 25, 1); if(nk_option_label(ctx, "Word - wise", burned_subs->ocr_mode == WORD_WISE)){ burned_subs->ocr_mode = WORD_WISE; } nk_layout_row_dynamic(ctx, 25, 1); if(nk_option_label(ctx, "Letter - wise", burned_subs->ocr_mode == LETTER_WISE)){ burned_subs->ocr_mode = LETTER_WISE; } if(burned_subs->is_italic) { burned_subs->ocr_mode = WORD_WISE; } nk_group_end(ctx); } nk_layout_row_dynamic(ctx, 120, 1); if(nk_group_begin(ctx, "Minimum Subtitle Duration", NK_WINDOW_TITLE|NK_WINDOW_NO_SCROLLBAR|NK_WINDOW_BORDER)) { nk_layout_row(ctx, NK_DYNAMIC, 25, 3, delay_ratio); nk_label(ctx, "Set the minimum subtitle duration to:", NK_TEXT_LEFT); nk_edit_string(ctx, NK_EDIT_SIMPLE, burned_subs->min_duration, &burned_subs->min_duration_len, 4, nk_filter_float); nk_label(ctx, "seconds", NK_TEXT_LEFT); nk_layout_row_dynamic(ctx, 25, 1); nk_label(ctx, "Lower values give better results but take more time.", NK_TEXT_LEFT); nk_layout_row_dynamic(ctx, 25, 1); nk_label(ctx, "0.5 is the recommended value.", NK_TEXT_LEFT); nk_group_end(ctx); } if(!burned_subs->subs_color_select && burned_subs->color_type == PRESET) { nk_layout_row_dynamic(ctx, 60, 1); if(nk_group_begin(ctx, "Luminance Threshold", NK_WINDOW_TITLE|NK_WINDOW_NO_SCROLLBAR | NK_WINDOW_BORDER)) { nk_layout_row(ctx, NK_DYNAMIC, 20, 2, threshold_ratio); nk_slider_int(ctx, 0, &burned_subs->luminance_threshold, 100, 1); sprintf(buffer, "%d", burned_subs->luminance_threshold); nk_label(ctx, buffer, NK_TEXT_LEFT); nk_group_end(ctx); } } nk_layout_row_dynamic(ctx, 60, 1); if(nk_group_begin(ctx, "Confidence Threshold", NK_WINDOW_TITLE|NK_WINDOW_NO_SCROLLBAR | NK_WINDOW_BORDER)) { nk_layout_row(ctx, NK_DYNAMIC, 20, 2, threshold_ratio); nk_slider_int(ctx, 0, &burned_subs->confidence_threshold, 100, 1); sprintf(buffer, "%d", burned_subs->confidence_threshold); nk_label(ctx, buffer, NK_TEXT_LEFT); nk_group_end(ctx); } nk_layout_row_dynamic(ctx, 30, 1); nk_checkbox_label(ctx, "Enable italics detection.", &burned_subs->is_italic); }
void draw_network_popup(struct nk_context *ctx, struct network_popup *network_settings) { const float save_ok_ratio[] = { 0.8f,0.1f,0.1f }; const float udp_tcp_ratio[] = { 0.45f,0.1f,0.45f }; static char udp_ipv4_buffer[30]; static int udp_ipv4_len[30]; static char tcp_pass_buf[30]; static int tcp_pass_len[30]; static char tcp_desc_buf[30]; static int tcp_desc_len[30]; static char send_port_buf[30]; static int send_port_len[30]; static char send_host_buf[30]; static int send_host_len[30]; const char network_attr[][30] = { "-udp port:", "-udp [host:]port:","-sendto host[:port]:","-tcp port:","-tcppassword password:"******"-tcpdesc description:" }; static struct nk_rect s = { 20,30,480,500 }; if (nk_popup_begin(ctx, NK_POPUP_STATIC, "Network Settings", NK_WINDOW_CLOSABLE|NK_WINDOW_NO_SCROLLBAR, s)) { nk_layout_row_dynamic(ctx, 220, 1); if(nk_group_begin(ctx, "Receive", NK_WINDOW_TITLE )) { nk_layout_row(ctx, NK_DYNAMIC, 21, 3, udp_tcp_ratio); nk_spacing(ctx, 1); nk_label(ctx, "UDP:", NK_TEXT_CENTERED); nk_layout_row_static(ctx, 20, 200, 2); nk_label(ctx, "Hostname/IPv4 Address:", NK_TEXT_LEFT); nk_edit_string(ctx, NK_EDIT_SIMPLE, network_settings->udp_ipv4, &network_settings->udp_ipv4_len, 50, nk_filter_default); nk_layout_row(ctx, NK_DYNAMIC, 21, 3, udp_tcp_ratio); nk_spacing(ctx, 1); nk_label(ctx, "TCP:", NK_TEXT_CENTERED); nk_layout_row_static(ctx, 20, 200, 2); nk_label(ctx, "Password:"******"Description:", NK_TEXT_LEFT); nk_edit_string(ctx, NK_EDIT_SIMPLE, network_settings->tcp_desc, &network_settings->tcp_desc_len, 25, nk_filter_default); nk_group_end(ctx); } nk_layout_row_dynamic(ctx, 200, 1); if (nk_group_begin(ctx, "Send", NK_WINDOW_TITLE )) { nk_layout_row(ctx, NK_DYNAMIC, 21, 3, udp_tcp_ratio); nk_spacing(ctx, 1); nk_label(ctx, "Send to:", NK_TEXT_CENTERED); nk_layout_row_static(ctx, 20, 200, 2); nk_label(ctx, "Port:", NK_TEXT_LEFT); nk_edit_string(ctx, NK_EDIT_SIMPLE, network_settings->send_port, &network_settings->send_port_len, 25, nk_filter_default); nk_layout_row_static(ctx, 20, 200, 2); nk_label(ctx, "Host:", NK_TEXT_LEFT); nk_edit_string(ctx, NK_EDIT_SIMPLE, network_settings->send_host, &network_settings->send_host_len, 25, nk_filter_default); nk_group_end(ctx); } /*nk_layout_row_static(ctx, 20, 200, 2); nk_label(ctx, network_attr[5], NK_TEXT_LEFT); nk_edit_string(ctx, NK_EDIT_SIMPLE, text_buffer[5], &text_len[5], 50, nk_filter_default);*/ //OK Button nk_layout_row(ctx, NK_DYNAMIC, 27, 3, save_ok_ratio); nk_spacing(ctx, 1); if (nk_button_label(ctx, "Save")) { network_settings->save_network_settings = nk_true; network_settings->show_network_settings = nk_false; nk_popup_close(ctx); } if (nk_button_label(ctx, "OK")) { network_settings->save_network_settings = nk_false; network_settings->show_network_settings = nk_false; nk_popup_close(ctx); } nk_popup_end(ctx); } else network_settings->show_network_settings = nk_false; }
int initialize(int w, int h) { struct nk_color background; int running = 1; float bg[4]; int draw_buffer[1024 * 16]; ctx = nk_headless_init(w, h, 8, 8); background = nk_rgb(28,48,62); while (running) { /* Input */ nk_input_begin(ctx); if (nk_headless_handle_event() == nk_false) { goto cleanup; } nk_input_end(ctx); /* GUI */ {struct nk_panel layout; if (nk_begin(ctx, &layout, "Demo", nk_rect(50, 50, 210, 250), NK_WINDOW_BORDER|NK_WINDOW_MOVABLE|NK_WINDOW_SCALABLE| NK_WINDOW_MINIMIZABLE|NK_WINDOW_TITLE)) { enum {EASY, HARD}; static int op = EASY; static int property = 20; static char buffer[64]; static int len; nk_layout_row_static(ctx, 30, 80, 1); if (nk_button_label(ctx, "button", NK_BUTTON_DEFAULT)) fprintf(stdout, "button pressed\n"); nk_layout_row_dynamic(ctx, 30, 2); if (nk_option_label(ctx, "easy", op == EASY)) op = EASY; if (nk_option_label(ctx, "hard", op == HARD)) op = HARD; nk_layout_row_dynamic(ctx, 25, 1); nk_property_int(ctx, "Compression:", 0, &property, 100, 10, 1); nk_edit_string(ctx, NK_EDIT_SIMPLE, buffer, &len, 64, 0); {struct nk_panel combo; nk_layout_row_dynamic(ctx, 30, 1); nk_label(ctx, "background:", NK_TEXT_LEFT); nk_layout_row_dynamic(ctx, 25, 1); if (nk_combo_begin_color(ctx, &combo, background, 400)) { nk_layout_row_dynamic(ctx, 120, 1); background = nk_color_picker(ctx, background, NK_RGBA); nk_layout_row_dynamic(ctx, 25, 1); background.r = (nk_byte)nk_propertyi(ctx, "#R:", 0, background.r, 255, 1,1); background.g = (nk_byte)nk_propertyi(ctx, "#G:", 0, background.g, 255, 1,1); background.b = (nk_byte)nk_propertyi(ctx, "#B:", 0, background.b, 255, 1,1); background.a = (nk_byte)nk_propertyi(ctx, "#A:", 0, background.a, 255, 1,1); nk_combo_end(ctx); }} } nk_end(ctx);} /* Draw */ nk_color_fv(bg, background); nk_headless_clear(nk_rgb(30,30,30)); nk_headless_render(draw_buffer); } cleanup: nk_headless_shutdown(); /*SDL_Quit();*/ return 0; }