2022-01-13 11:24:03 +07:00
|
|
|
/// @description init
|
|
|
|
#region draw
|
2023-01-04 08:30:04 +07:00
|
|
|
draw_sprite_stretched(THEME.textbox, 3, dialog_x, dialog_y, dialog_w, dialog_h);
|
|
|
|
|
2023-03-23 19:38:50 +07:00
|
|
|
WIDGET_CURRENT = tb_search;
|
|
|
|
tb_search.setActiveFocus(true, true);
|
|
|
|
tb_search.draw(dialog_x + ui(8), dialog_y + ui(8), dialog_w - ui(16), ui(24), search_string);
|
|
|
|
tb_search.sprite_index = 0;
|
|
|
|
|
2023-03-25 18:27:04 +07:00
|
|
|
sc_content.setActiveFocus(sHOVER, sFOCUS);
|
2023-03-23 19:38:50 +07:00
|
|
|
sc_content.draw(dialog_x, dialog_y + ui(16 + 24));
|
2023-01-04 08:30:04 +07:00
|
|
|
|
|
|
|
draw_sprite_stretched(THEME.textbox, 1, dialog_x, dialog_y, dialog_w, dialog_h);
|
2022-01-13 11:24:03 +07:00
|
|
|
#endregion
|