diff --git a/components/box-emu-hal/include/spi_lcd.h b/components/box-emu-hal/include/spi_lcd.h index 737812a3..23c80ecd 100644 --- a/components/box-emu-hal/include/spi_lcd.h +++ b/components/box-emu-hal/include/spi_lcd.h @@ -36,6 +36,8 @@ uint8_t* get_frame_buffer0(); uint8_t* get_frame_buffer1(); void lcd_write_frame(const uint16_t x, const uint16_t y, const uint16_t width, const uint16_t height, const uint8_t *data); void lcd_init(); +void set_display_brightness(float brightness); +float get_display_brightness(); #ifdef __cplusplus } diff --git a/components/box-emu-hal/include/statistics.hpp b/components/box-emu-hal/include/statistics.hpp new file mode 100644 index 00000000..3f5a6e5f --- /dev/null +++ b/components/box-emu-hal/include/statistics.hpp @@ -0,0 +1,13 @@ +#pragma once + +#include +#include + +void update_frame_time(float frame_time); +void reset_frame_time(); + +float get_fps(); +float get_frame_time(); +float get_frame_time_max(); +float get_frame_time_min(); +float get_frame_time_avg(); diff --git a/components/box-emu-hal/src/hal_i2c.cpp b/components/box-emu-hal/src/hal_i2c.cpp index 3638d33d..e830f8b5 100644 --- a/components/box-emu-hal/src/hal_i2c.cpp +++ b/components/box-emu-hal/src/hal_i2c.cpp @@ -9,17 +9,33 @@ using namespace box_hal; void i2c_init() { if (initialized) return; - internal_i2c = std::make_shared(espp::I2c::Config{ - .port = internal_i2c_port, - .sda_io_num = internal_i2c_sda, - .scl_io_num = internal_i2c_scl, - .sda_pullup_en = GPIO_PULLUP_ENABLE, - .scl_pullup_en = GPIO_PULLUP_ENABLE}); - external_i2c = std::make_shared(espp::I2c::Config{ - .port = external_i2c_port, - .sda_io_num = external_i2c_sda, - .scl_io_num = external_i2c_scl, - .sda_pullup_en = GPIO_PULLUP_ENABLE, - .scl_pullup_en = GPIO_PULLUP_ENABLE}); + // make the i2c on core 1 so that the i2c interrupts are handled on core 1 + std::atomic i2c_initialized = false; + auto i2c_task = espp::Task::make_unique(espp::Task::Config{ + .name = "i2c", + .callback = [&](auto &m, auto&cv) -> bool { + internal_i2c = std::make_shared(espp::I2c::Config{ + .port = internal_i2c_port, + .sda_io_num = internal_i2c_sda, + .scl_io_num = internal_i2c_scl, + .sda_pullup_en = GPIO_PULLUP_ENABLE, + .scl_pullup_en = GPIO_PULLUP_ENABLE}); + external_i2c = std::make_shared(espp::I2c::Config{ + .port = external_i2c_port, + .sda_io_num = external_i2c_sda, + .scl_io_num = external_i2c_scl, + .sda_pullup_en = GPIO_PULLUP_ENABLE, + .scl_pullup_en = GPIO_PULLUP_ENABLE}); + i2c_initialized = true; + return true; // stop the task + }, + .stack_size_bytes = 2*1024, + .core_id = 1 + }); + i2c_task->start(); + while (!i2c_initialized) { + std::this_thread::sleep_for(std::chrono::milliseconds(10)); + } + initialized = true; } diff --git a/components/box-emu-hal/src/i2s_audio.cpp b/components/box-emu-hal/src/i2s_audio.cpp index 13a57c1f..888fc9ce 100644 --- a/components/box-emu-hal/src/i2s_audio.cpp +++ b/components/box-emu-hal/src/i2s_audio.cpp @@ -189,9 +189,19 @@ static void init_mute_button(void) { // restarted without power loss) set_muted(!gpio_get_level(mute_pin)); - //install gpio isr service - gpio_install_isr_service(0); - gpio_isr_handler_add(mute_pin, gpio_isr_handler, (void*) mute_pin); + // create a task on core 1 for initializing the gpio interrupt so that the + // gpio ISR runs on core 1 + auto gpio_task = espp::Task::make_unique(espp::Task::Config{ + .name = "gpio", + .callback = [](auto &m, auto&cv) -> bool { + gpio_install_isr_service(0); + gpio_isr_handler_add(mute_pin, gpio_isr_handler, (void*) mute_pin); + return true; // stop the task + }, + .stack_size_bytes = 2*1024, + .core_id = 1 + }); + gpio_task->start(); // register that we publish the mute button state espp::EventManager::get().add_publisher(mute_button_topic, "i2s_audio"); diff --git a/components/box-emu-hal/src/spi_lcd.cpp b/components/box-emu-hal/src/spi_lcd.cpp index 8794ceb9..29f181f2 100644 --- a/components/box-emu-hal/src/spi_lcd.cpp +++ b/components/box-emu-hal/src/spi_lcd.cpp @@ -77,12 +77,18 @@ extern "C" void lcd_write(const uint8_t *data, size_t length, uint32_t user_data } lcd_wait_lines(); esp_err_t ret; + memset(&trans[0], 0, sizeof(spi_transaction_t)); trans[0].length = length * 8; trans[0].user = (void*)user_data; - trans[0].tx_buffer = data; - trans[0].flags = 0; // maybe look at the length of data (<=32 bits) and see - // if we should use SPI_TRANS_USE_TXDATA and copy the - // data into the tx_data field + // look at the length of the data and use tx_data if it is <= 32 bits + if (length <= 4) { + // copy the data pointer to trans[0].tx_data + memcpy(trans[0].tx_data, data, length); + trans[0].flags = SPI_TRANS_USE_TXDATA; + } else { + trans[0].tx_buffer = data; + trans[0].flags = 0; + } ret = spi_device_queue_trans(spi, &trans[0], 10 / portTICK_PERIOD_MS); if (ret != ESP_OK) { fmt::print("Couldn't queue trans: {} '{}'\n", ret, esp_err_to_name(ret)); @@ -143,7 +149,7 @@ extern "C" void lcd_send_lines(int xs, int ys, int xe, int ye, const uint8_t *da //transactions sent. That happens mostly using DMA, so the CPU doesn't have //much to do here. We're not going to wait for the transaction to finish //because we may as well spend the time calculating the next line. When that - //is done, we can call send_line_finish, which will wait for the transfers + //is done, we can call lcd_wait_lines, which will wait for the transfers //to be done and check their status. } @@ -196,7 +202,7 @@ extern "C" void lcd_init() { buscfg.sclk_io_num = lcd_sclk; buscfg.quadwp_io_num = -1; buscfg.quadhd_io_num = -1; - buscfg.max_transfer_sz = pixel_buffer_size * sizeof(lv_color_t) + 10; + buscfg.max_transfer_sz = frame_buffer_size * sizeof(lv_color_t) + 10; memset(&devcfg, 0, sizeof(devcfg)); devcfg.mode = 0; @@ -220,8 +226,6 @@ extern "C" void lcd_init() { .lcd_send_lines = lcd_send_lines, .reset_pin = lcd_reset, .data_command_pin = lcd_dc, - .backlight_pin = backlight, - .backlight_on_value = backlight_value, .reset_value = reset_value, .invert_colors = invert_colors, .mirror_x = mirror_x, @@ -234,6 +238,8 @@ extern "C" void lcd_init() { .height = display_height, .pixel_buffer_size = pixel_buffer_size, .flush_callback = DisplayDriver::flush, + .backlight_pin = backlight, + .backlight_on_value = backlight_value, .update_period = 5ms, .double_buffered = true, .allocation_flags = MALLOC_CAP_8BIT | MALLOC_CAP_DMA, @@ -245,3 +251,11 @@ extern "C" void lcd_init() { frame_buffer1 = (uint8_t*)heap_caps_malloc(frame_buffer_size, MALLOC_CAP_8BIT | MALLOC_CAP_SPIRAM); initialized = true; } + +extern "C" void set_display_brightness(float brightness) { + display->set_brightness(brightness); +} + +extern "C" float get_display_brightness() { + return display->get_brightness(); +} diff --git a/components/box-emu-hal/src/statistics.cpp b/components/box-emu-hal/src/statistics.cpp new file mode 100644 index 00000000..fe665933 --- /dev/null +++ b/components/box-emu-hal/src/statistics.cpp @@ -0,0 +1,51 @@ +#include "statistics.hpp" + +static uint32_t num_frames = 0; +static float frame_time = 0.0f; +static float frame_time_total = 0.0f; +static float frame_time_max = 0.0f; +static float frame_time_min = 0.0f; +static float frame_time_avg = 0.0f; + +void update_frame_time(float frame_time) +{ + num_frames++; + ::frame_time = frame_time; + frame_time_total = frame_time_total + frame_time; + frame_time_max = std::max(frame_time_max, frame_time); + frame_time_min = std::min(frame_time_min, frame_time); + frame_time_avg = frame_time_total / num_frames; +} + +void reset_frame_time() +{ + num_frames = 0; + frame_time = 0.0f; + frame_time_total = 0.0f; + frame_time_max = 0.0f; + frame_time_min = 100000.0f; // some large number + frame_time_avg = 0.0f; +} + +float get_fps() { + if (frame_time_total == 0.0f) { + return 0.0f; + } + return num_frames / frame_time_total; +} + +float get_frame_time() { + return frame_time; +} + +float get_frame_time_max() { + return frame_time_max; +} + +float get_frame_time_min() { + return frame_time_min; +} + +float get_frame_time_avg() { + return frame_time_avg; +} diff --git a/components/espp b/components/espp index 83142381..e2d5c8fe 160000 --- a/components/espp +++ b/components/espp @@ -1 +1 @@ -Subproject commit 831423817489c7e18ce0a9aaa73d0e6488cbfe22 +Subproject commit e2d5c8fe06c6291b77854a7933ba6c201b85e13c diff --git a/components/gbc/src/gameboy.cpp b/components/gbc/src/gameboy.cpp index 83af80b4..bf929875 100644 --- a/components/gbc/src/gameboy.cpp +++ b/components/gbc/src/gameboy.cpp @@ -5,6 +5,7 @@ #include #include "fs_init.hpp" +#include "statistics.hpp" #include "format.hpp" #include "spi_lcd.h" @@ -58,7 +59,6 @@ extern "C" void die(char *fmt, ...) { static std::shared_ptr gbc_task; static std::shared_ptr gbc_video_task; static QueueHandle_t video_queue; -static float totalElapsedSeconds = 0; static struct InputState state; static std::atomic scaled = false; @@ -182,10 +182,7 @@ bool run_to_vblank(std::mutex &m, std::condition_variable& cv) { ++frame; auto end = std::chrono::high_resolution_clock::now(); auto elapsed = std::chrono::duration(end-start).count(); - totalElapsedSeconds += elapsed; - if ((frame % 60) == 0) { - fmt::print("gameboy: FPS {}\n", (float) frame / totalElapsedSeconds); - } + update_frame_time(elapsed); // frame rate should be 60 FPS, so 1/60th second is what we want to sleep for static constexpr auto delay = std::chrono::duration(1.0f/60.0f); std::this_thread::sleep_until(start + delay); @@ -245,7 +242,6 @@ void init_gameboy(const std::string& rom_filename, uint8_t *romdata, size_t rom_ loader_init(romdata, rom_data_size); emu_reset(); - totalElapsedSeconds = 0; frame = 0; if (!initialized) { gbc_task = std::make_shared(espp::Task::Config{ @@ -265,6 +261,7 @@ void init_gameboy(const std::string& rom_filename, uint8_t *romdata, size_t rom_ video_queue = xQueueCreate(1, sizeof(uint16_t*)); } initialized = true; + reset_frame_time(); } void run_gameboy_rom() { diff --git a/components/gui/.gitignore b/components/gui/.gitignore new file mode 100644 index 00000000..c715b4c2 --- /dev/null +++ b/components/gui/.gitignore @@ -0,0 +1 @@ +squareline/autosave diff --git a/components/gui/CMakeLists.txt b/components/gui/CMakeLists.txt index 647763a0..57a00614 100644 --- a/components/gui/CMakeLists.txt +++ b/components/gui/CMakeLists.txt @@ -1,5 +1,5 @@ idf_component_register( - SRC_DIRS "src" "generated" + SRC_DIRS "src" "generated" "generated/screens" "generated/components" INCLUDE_DIRS "include" PRIV_INCLUDE_DIRS "generated" REQUIRES lvgl task display logger jpeg box-emu-hal) diff --git a/components/gui/generated/CMakeLists.txt b/components/gui/generated/CMakeLists.txt new file mode 100644 index 00000000..aa27f4a9 --- /dev/null +++ b/components/gui/generated/CMakeLists.txt @@ -0,0 +1,7 @@ +SET(SOURCES screens/ui_romscreen.c + screens/ui_settingsscreen.c + ui.c + components/ui_comp_hook.c + ui_helpers.c) + +add_library(ui ${SOURCES}) diff --git a/components/gui/generated/components/ui_comp_hook.c b/components/gui/generated/components/ui_comp_hook.c new file mode 100644 index 00000000..11533e50 --- /dev/null +++ b/components/gui/generated/components/ui_comp_hook.c @@ -0,0 +1,5 @@ +// This file was generated by SquareLine Studio +// SquareLine Studio version: SquareLine Studio 1.3.3 +// LVGL version: 8.3.3 +// Project name: emu + diff --git a/components/gui/generated/filelist.txt b/components/gui/generated/filelist.txt new file mode 100644 index 00000000..395f2205 --- /dev/null +++ b/components/gui/generated/filelist.txt @@ -0,0 +1,5 @@ +screens/ui_romscreen.c +screens/ui_settingsscreen.c +ui.c +components/ui_comp_hook.c +ui_helpers.c diff --git a/components/gui/generated/screens/ui_romscreen.c b/components/gui/generated/screens/ui_romscreen.c new file mode 100644 index 00000000..50c4a882 --- /dev/null +++ b/components/gui/generated/screens/ui_romscreen.c @@ -0,0 +1,74 @@ +// This file was generated by SquareLine Studio +// SquareLine Studio version: SquareLine Studio 1.3.3 +// LVGL version: 8.3.3 +// Project name: emu + +#include "../ui.h" + +void ui_romscreen_screen_init(void) +{ +ui_romscreen = lv_obj_create(NULL); +lv_obj_clear_flag( ui_romscreen, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_header = lv_obj_create(ui_romscreen); +lv_obj_set_height( ui_header, 75); +lv_obj_set_width( ui_header, lv_pct(100)); +lv_obj_set_align( ui_header, LV_ALIGN_TOP_MID ); +lv_obj_clear_flag( ui_header, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_settingsbutton = lv_btn_create(ui_header); +lv_obj_set_width( ui_settingsbutton, 48); +lv_obj_set_height( ui_settingsbutton, 48); +lv_obj_set_align( ui_settingsbutton, LV_ALIGN_LEFT_MID ); +lv_obj_add_flag( ui_settingsbutton, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags +lv_obj_clear_flag( ui_settingsbutton, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_Screen1_Label2 = lv_label_create(ui_settingsbutton); +lv_obj_set_width( ui_Screen1_Label2, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_Screen1_Label2, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_Screen1_Label2, LV_ALIGN_CENTER ); +lv_label_set_text(ui_Screen1_Label2,LV_SYMBOL_SETTINGS); + +ui_Screen1_Label1 = lv_label_create(ui_header); +lv_obj_set_width( ui_Screen1_Label1, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_Screen1_Label1, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_Screen1_Label1, LV_ALIGN_CENTER ); +lv_label_set_text(ui_Screen1_Label1,"Select Rom"); + +ui_playbutton = lv_btn_create(ui_header); +lv_obj_set_width( ui_playbutton, 48); +lv_obj_set_height( ui_playbutton, 48); +lv_obj_set_align( ui_playbutton, LV_ALIGN_RIGHT_MID ); +lv_obj_add_state( ui_playbutton, LV_STATE_CHECKED ); /// States +lv_obj_add_flag( ui_playbutton, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags +lv_obj_clear_flag( ui_playbutton, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_Screen1_Label3 = lv_label_create(ui_playbutton); +lv_obj_set_width( ui_Screen1_Label3, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_Screen1_Label3, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_Screen1_Label3, LV_ALIGN_CENTER ); +lv_label_set_text(ui_Screen1_Label3,LV_SYMBOL_PLAY); + +ui_rompanel = lv_obj_create(ui_romscreen); +lv_obj_set_width( ui_rompanel, 220); +lv_obj_set_height( ui_rompanel, 165); +lv_obj_set_align( ui_rompanel, LV_ALIGN_BOTTOM_LEFT ); +lv_obj_add_flag( ui_rompanel, LV_OBJ_FLAG_SCROLL_ON_FOCUS | LV_OBJ_FLAG_SCROLL_ONE ); /// Flags +lv_obj_set_scroll_dir(ui_rompanel, LV_DIR_VER); + +ui_boxartpanel = lv_obj_create(ui_romscreen); +lv_obj_set_width( ui_boxartpanel, 100); +lv_obj_set_height( ui_boxartpanel, 165); +lv_obj_set_align( ui_boxartpanel, LV_ALIGN_BOTTOM_RIGHT ); +lv_obj_clear_flag( ui_boxartpanel, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_boxart = lv_img_create(ui_boxartpanel); +lv_obj_set_width( ui_boxart, 100); +lv_obj_set_height( ui_boxart, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_boxart, LV_ALIGN_CENTER ); +lv_obj_add_flag( ui_boxart, LV_OBJ_FLAG_ADV_HITTEST ); /// Flags +lv_obj_clear_flag( ui_boxart, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +lv_obj_add_event_cb(ui_settingsbutton, ui_event_settingsbutton, LV_EVENT_ALL, NULL); + +} diff --git a/components/gui/generated/screens/ui_settingsscreen.c b/components/gui/generated/screens/ui_settingsscreen.c new file mode 100644 index 00000000..e818b4e1 --- /dev/null +++ b/components/gui/generated/screens/ui_settingsscreen.c @@ -0,0 +1,238 @@ +// This file was generated by SquareLine Studio +// SquareLine Studio version: SquareLine Studio 1.3.3 +// LVGL version: 8.3.3 +// Project name: emu + +#include "../ui.h" + +void ui_settingsscreen_screen_init(void) +{ +ui_settingsscreen = lv_obj_create(NULL); +lv_obj_clear_flag( ui_settingsscreen, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_header1 = lv_obj_create(ui_settingsscreen); +lv_obj_set_height( ui_header1, 75); +lv_obj_set_width( ui_header1, lv_pct(100)); +lv_obj_set_align( ui_header1, LV_ALIGN_TOP_MID ); +lv_obj_clear_flag( ui_header1, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_closebutton = lv_btn_create(ui_header1); +lv_obj_set_width( ui_closebutton, 48); +lv_obj_set_height( ui_closebutton, 48); +lv_obj_set_align( ui_closebutton, LV_ALIGN_LEFT_MID ); +lv_obj_add_flag( ui_closebutton, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags +lv_obj_clear_flag( ui_closebutton, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_Screen1_Label4 = lv_label_create(ui_closebutton); +lv_obj_set_width( ui_Screen1_Label4, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_Screen1_Label4, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_Screen1_Label4, LV_ALIGN_CENTER ); +lv_label_set_text(ui_Screen1_Label4,LV_SYMBOL_CLOSE); + +ui_Screen1_Label5 = lv_label_create(ui_header1); +lv_obj_set_width( ui_Screen1_Label5, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_Screen1_Label5, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_Screen1_Label5, LV_ALIGN_CENTER ); +lv_label_set_text(ui_Screen1_Label5,"Settings"); + +ui_settingspanel = lv_obj_create(ui_settingsscreen); +lv_obj_set_height( ui_settingspanel, 165); +lv_obj_set_width( ui_settingspanel, lv_pct(100)); +lv_obj_set_align( ui_settingspanel, LV_ALIGN_BOTTOM_MID ); +lv_obj_add_flag( ui_settingspanel, LV_OBJ_FLAG_SCROLL_ON_FOCUS | LV_OBJ_FLAG_SCROLL_ONE ); /// Flags +lv_obj_set_scroll_dir(ui_settingspanel, LV_DIR_VER); +lv_obj_set_style_pad_left(ui_settingspanel, 0, LV_PART_MAIN| LV_STATE_DEFAULT); +lv_obj_set_style_pad_right(ui_settingspanel, 0, LV_PART_MAIN| LV_STATE_DEFAULT); +lv_obj_set_style_pad_top(ui_settingspanel, 0, LV_PART_MAIN| LV_STATE_DEFAULT); +lv_obj_set_style_pad_bottom(ui_settingspanel, 0, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_volumepanel = lv_obj_create(ui_settingspanel); +lv_obj_set_height( ui_volumepanel, 50); +lv_obj_set_width( ui_volumepanel, lv_pct(100)); +lv_obj_set_align( ui_volumepanel, LV_ALIGN_TOP_MID ); +lv_obj_clear_flag( ui_volumepanel, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_volumebar = lv_bar_create(ui_volumepanel); +lv_bar_set_value(ui_volumebar,25,LV_ANIM_OFF); +lv_obj_set_width( ui_volumebar, 130); +lv_obj_set_height( ui_volumebar, 10); +lv_obj_set_x( ui_volumebar, 25 ); +lv_obj_set_y( ui_volumebar, 0 ); +lv_obj_set_align( ui_volumebar, LV_ALIGN_CENTER ); + +ui_mutebutton = lv_btn_create(ui_volumepanel); +lv_obj_set_width( ui_mutebutton, 32); +lv_obj_set_height( ui_mutebutton, 32); +lv_obj_set_align( ui_mutebutton, LV_ALIGN_LEFT_MID ); +lv_obj_add_flag( ui_mutebutton, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags +lv_obj_clear_flag( ui_mutebutton, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_settingsscreen_Label1 = lv_label_create(ui_mutebutton); +lv_obj_set_width( ui_settingsscreen_Label1, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_settingsscreen_Label1, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_settingsscreen_Label1, LV_ALIGN_CENTER ); +lv_label_set_text(ui_settingsscreen_Label1,LV_SYMBOL_MUTE); + +ui_volumedownbutton = lv_btn_create(ui_volumepanel); +lv_obj_set_width( ui_volumedownbutton, 32); +lv_obj_set_height( ui_volumedownbutton, 32); +lv_obj_set_x( ui_volumedownbutton, 52 ); +lv_obj_set_y( ui_volumedownbutton, 0 ); +lv_obj_set_align( ui_volumedownbutton, LV_ALIGN_LEFT_MID ); +lv_obj_add_flag( ui_volumedownbutton, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags +lv_obj_clear_flag( ui_volumedownbutton, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_settingsscreen_Label2 = lv_label_create(ui_volumedownbutton); +lv_obj_set_width( ui_settingsscreen_Label2, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_settingsscreen_Label2, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_settingsscreen_Label2, LV_ALIGN_CENTER ); +lv_label_set_text(ui_settingsscreen_Label2,LV_SYMBOL_VOLUME_MID); + +ui_volumeupbutton = lv_btn_create(ui_volumepanel); +lv_obj_set_width( ui_volumeupbutton, 32); +lv_obj_set_height( ui_volumeupbutton, 32); +lv_obj_set_align( ui_volumeupbutton, LV_ALIGN_RIGHT_MID ); +lv_obj_add_flag( ui_volumeupbutton, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags +lv_obj_clear_flag( ui_volumeupbutton, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_settingsscreen_Label3 = lv_label_create(ui_volumeupbutton); +lv_obj_set_width( ui_settingsscreen_Label3, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_settingsscreen_Label3, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_settingsscreen_Label3, LV_ALIGN_CENTER ); +lv_label_set_text(ui_settingsscreen_Label3,LV_SYMBOL_VOLUME_MAX); + +ui_brightnesspanel = lv_obj_create(ui_settingspanel); +lv_obj_set_height( ui_brightnesspanel, 50); +lv_obj_set_width( ui_brightnesspanel, lv_pct(100)); +lv_obj_set_x( ui_brightnesspanel, 0 ); +lv_obj_set_y( ui_brightnesspanel, 60 ); +lv_obj_set_align( ui_brightnesspanel, LV_ALIGN_TOP_MID ); +lv_obj_clear_flag( ui_brightnesspanel, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_brightnessbar = lv_bar_create(ui_brightnesspanel); +lv_bar_set_value(ui_brightnessbar,100,LV_ANIM_OFF); +lv_obj_set_width( ui_brightnessbar, 180); +lv_obj_set_height( ui_brightnessbar, 10); +lv_obj_set_align( ui_brightnessbar, LV_ALIGN_CENTER ); + +ui_brightnessdownbutton = lv_btn_create(ui_brightnesspanel); +lv_obj_set_width( ui_brightnessdownbutton, 32); +lv_obj_set_height( ui_brightnessdownbutton, 32); +lv_obj_set_align( ui_brightnessdownbutton, LV_ALIGN_LEFT_MID ); +lv_obj_add_flag( ui_brightnessdownbutton, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags +lv_obj_clear_flag( ui_brightnessdownbutton, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_settingsscreen_Label10 = lv_label_create(ui_brightnessdownbutton); +lv_obj_set_width( ui_settingsscreen_Label10, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_settingsscreen_Label10, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_settingsscreen_Label10, LV_ALIGN_CENTER ); +lv_label_set_text(ui_settingsscreen_Label10,LV_SYMBOL_MINUS); + +ui_brightnessupbutton = lv_btn_create(ui_brightnesspanel); +lv_obj_set_width( ui_brightnessupbutton, 32); +lv_obj_set_height( ui_brightnessupbutton, 32); +lv_obj_set_align( ui_brightnessupbutton, LV_ALIGN_RIGHT_MID ); +lv_obj_add_flag( ui_brightnessupbutton, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags +lv_obj_clear_flag( ui_brightnessupbutton, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_settingsscreen_Label11 = lv_label_create(ui_brightnessupbutton); +lv_obj_set_width( ui_settingsscreen_Label11, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_settingsscreen_Label11, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_settingsscreen_Label11, LV_ALIGN_CENTER ); +lv_label_set_text(ui_settingsscreen_Label11,LV_SYMBOL_PLUS); + +ui_fillpanel = lv_obj_create(ui_settingspanel); +lv_obj_set_height( ui_fillpanel, 50); +lv_obj_set_width( ui_fillpanel, lv_pct(100)); +lv_obj_set_x( ui_fillpanel, 0 ); +lv_obj_set_y( ui_fillpanel, 120 ); +lv_obj_set_align( ui_fillpanel, LV_ALIGN_TOP_MID ); +lv_obj_clear_flag( ui_fillpanel, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_settingsscreen_Label4 = lv_label_create(ui_fillpanel); +lv_obj_set_width( ui_settingsscreen_Label4, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_settingsscreen_Label4, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_settingsscreen_Label4, LV_ALIGN_LEFT_MID ); +lv_label_set_text(ui_settingsscreen_Label4,"Video Scaling"); + +ui_videosettingdropdown = lv_dropdown_create(ui_fillpanel); +lv_dropdown_set_options( ui_videosettingdropdown, "Original\nFit\nFill" ); +lv_obj_set_width( ui_videosettingdropdown, 100); +lv_obj_set_height( ui_videosettingdropdown, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_videosettingdropdown, LV_ALIGN_RIGHT_MID ); +lv_obj_add_flag( ui_videosettingdropdown, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags + + + +ui_hapticpanel = lv_obj_create(ui_settingspanel); +lv_obj_set_height( ui_hapticpanel, 50); +lv_obj_set_width( ui_hapticpanel, lv_pct(100)); +lv_obj_set_x( ui_hapticpanel, 0 ); +lv_obj_set_y( ui_hapticpanel, 180 ); +lv_obj_set_align( ui_hapticpanel, LV_ALIGN_TOP_MID ); +lv_obj_clear_flag( ui_hapticpanel, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_settingsscreen_Label5 = lv_label_create(ui_hapticpanel); +lv_obj_set_width( ui_settingsscreen_Label5, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_settingsscreen_Label5, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_settingsscreen_Label5, LV_ALIGN_LEFT_MID ); +lv_label_set_text(ui_settingsscreen_Label5,"Haptics"); + +ui_settingsscreen_Panel1 = lv_obj_create(ui_hapticpanel); +lv_obj_set_width( ui_settingsscreen_Panel1, 140); +lv_obj_set_height( ui_settingsscreen_Panel1, 50); +lv_obj_set_x( ui_settingsscreen_Panel1, -30 ); +lv_obj_set_y( ui_settingsscreen_Panel1, 0 ); +lv_obj_set_align( ui_settingsscreen_Panel1, LV_ALIGN_RIGHT_MID ); +lv_obj_clear_flag( ui_settingsscreen_Panel1, LV_OBJ_FLAG_SCROLLABLE ); /// Flags +lv_obj_set_style_border_color(ui_settingsscreen_Panel1, lv_color_hex(0x000000), LV_PART_MAIN | LV_STATE_DEFAULT ); +lv_obj_set_style_border_opa(ui_settingsscreen_Panel1, 0, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_hapticlabel = lv_label_create(ui_settingsscreen_Panel1); +lv_obj_set_width( ui_hapticlabel, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_hapticlabel, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_hapticlabel, LV_ALIGN_CENTER ); +lv_label_set_text(ui_hapticlabel,"128"); + +ui_hapticdownbutton = lv_btn_create(ui_settingsscreen_Panel1); +lv_obj_set_width( ui_hapticdownbutton, 32); +lv_obj_set_height( ui_hapticdownbutton, 32); +lv_obj_set_align( ui_hapticdownbutton, LV_ALIGN_LEFT_MID ); +lv_obj_add_flag( ui_hapticdownbutton, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags +lv_obj_clear_flag( ui_hapticdownbutton, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_settingsscreen_Label7 = lv_label_create(ui_hapticdownbutton); +lv_obj_set_width( ui_settingsscreen_Label7, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_settingsscreen_Label7, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_settingsscreen_Label7, LV_ALIGN_CENTER ); +lv_label_set_text(ui_settingsscreen_Label7,LV_SYMBOL_LEFT); + +ui_hapticupbutton = lv_btn_create(ui_settingsscreen_Panel1); +lv_obj_set_width( ui_hapticupbutton, 32); +lv_obj_set_height( ui_hapticupbutton, 32); +lv_obj_set_align( ui_hapticupbutton, LV_ALIGN_RIGHT_MID ); +lv_obj_add_flag( ui_hapticupbutton, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags +lv_obj_clear_flag( ui_hapticupbutton, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_settingsscreen_Label6 = lv_label_create(ui_hapticupbutton); +lv_obj_set_width( ui_settingsscreen_Label6, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_settingsscreen_Label6, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_settingsscreen_Label6, LV_ALIGN_CENTER ); +lv_label_set_text(ui_settingsscreen_Label6,LV_SYMBOL_RIGHT); + +ui_hapticplaybutton = lv_btn_create(ui_hapticpanel); +lv_obj_set_width( ui_hapticplaybutton, 32); +lv_obj_set_height( ui_hapticplaybutton, 32); +lv_obj_set_align( ui_hapticplaybutton, LV_ALIGN_RIGHT_MID ); +lv_obj_add_flag( ui_hapticplaybutton, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags +lv_obj_clear_flag( ui_hapticplaybutton, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_settingsscreen_Label8 = lv_label_create(ui_hapticplaybutton); +lv_obj_set_width( ui_settingsscreen_Label8, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_settingsscreen_Label8, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_settingsscreen_Label8, LV_ALIGN_CENTER ); +lv_label_set_text(ui_settingsscreen_Label8,LV_SYMBOL_PLAY); + +lv_obj_add_event_cb(ui_closebutton, ui_event_closebutton, LV_EVENT_ALL, NULL); + +} diff --git a/components/gui/generated/ui.c b/components/gui/generated/ui.c index f4995149..c0084c93 100644 --- a/components/gui/generated/ui.c +++ b/components/gui/generated/ui.c @@ -1,12 +1,16 @@ -// SquareLine LVGL GENERATED FILE -// EDITOR VERSION: SquareLine Studio 1.1.1 -// LVGL VERSION: 8.3.3 -// PROJECT: emu +// This file was generated by SquareLine Studio +// SquareLine Studio version: SquareLine Studio 1.3.3 +// LVGL version: 8.3.3 +// Project name: emu #include "ui.h" #include "ui_helpers.h" ///////////////////// VARIABLES //////////////////// + + +// SCREEN: ui_romscreen +void ui_romscreen_screen_init(void); lv_obj_t *ui_romscreen; lv_obj_t *ui_header; void ui_event_settingsbutton( lv_event_t * e); @@ -18,6 +22,10 @@ lv_obj_t *ui_Screen1_Label3; lv_obj_t *ui_rompanel; lv_obj_t *ui_boxartpanel; lv_obj_t *ui_boxart; + + +// SCREEN: ui_settingsscreen +void ui_settingsscreen_screen_init(void); lv_obj_t *ui_settingsscreen; lv_obj_t *ui_header1; void ui_event_closebutton( lv_event_t * e); @@ -33,6 +41,12 @@ lv_obj_t *ui_volumedownbutton; lv_obj_t *ui_settingsscreen_Label2; lv_obj_t *ui_volumeupbutton; lv_obj_t *ui_settingsscreen_Label3; +lv_obj_t *ui_brightnesspanel; +lv_obj_t *ui_brightnessbar; +lv_obj_t *ui_brightnessdownbutton; +lv_obj_t *ui_settingsscreen_Label10; +lv_obj_t *ui_brightnessupbutton; +lv_obj_t *ui_settingsscreen_Label11; lv_obj_t *ui_fillpanel; lv_obj_t *ui_settingsscreen_Label4; lv_obj_t *ui_videosettingdropdown; @@ -46,6 +60,7 @@ lv_obj_t *ui_hapticupbutton; lv_obj_t *ui_settingsscreen_Label6; lv_obj_t *ui_hapticplaybutton; lv_obj_t *ui_settingsscreen_Label8; +static lv_obj_t *ui____initial_actions0; ///////////////////// TEST LVGL SETTINGS //////////////////// #if LV_COLOR_DEPTH != 16 @@ -61,273 +76,17 @@ lv_obj_t *ui_settingsscreen_Label8; void ui_event_settingsbutton( lv_event_t * e) { lv_event_code_t event_code = lv_event_get_code(e);lv_obj_t * target = lv_event_get_target(e); if ( event_code == LV_EVENT_CLICKED) { - _ui_screen_change( ui_settingsscreen, LV_SCR_LOAD_ANIM_MOVE_RIGHT, 100, 0); + _ui_screen_change( &ui_settingsscreen, LV_SCR_LOAD_ANIM_MOVE_RIGHT, 100, 0, &ui_settingsscreen_screen_init); } } void ui_event_closebutton( lv_event_t * e) { lv_event_code_t event_code = lv_event_get_code(e);lv_obj_t * target = lv_event_get_target(e); if ( event_code == LV_EVENT_CLICKED) { - _ui_screen_change( ui_romscreen, LV_SCR_LOAD_ANIM_MOVE_LEFT, 100, 0); + _ui_screen_change( &ui_romscreen, LV_SCR_LOAD_ANIM_MOVE_LEFT, 100, 0, &ui_romscreen_screen_init); } } ///////////////////// SCREENS //////////////////// -void ui_romscreen_screen_init(void) -{ -ui_romscreen = lv_obj_create(NULL); -lv_obj_clear_flag( ui_romscreen, LV_OBJ_FLAG_SCROLLABLE ); /// Flags - -ui_header = lv_obj_create(ui_romscreen); -lv_obj_set_height( ui_header, 75); -lv_obj_set_width( ui_header, lv_pct(100)); -lv_obj_set_align( ui_header, LV_ALIGN_TOP_MID ); -lv_obj_clear_flag( ui_header, LV_OBJ_FLAG_SCROLLABLE ); /// Flags - -ui_settingsbutton = lv_btn_create(ui_header); -lv_obj_set_width( ui_settingsbutton, 48); -lv_obj_set_height( ui_settingsbutton, 48); -lv_obj_set_align( ui_settingsbutton, LV_ALIGN_LEFT_MID ); -lv_obj_add_flag( ui_settingsbutton, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags -lv_obj_clear_flag( ui_settingsbutton, LV_OBJ_FLAG_SCROLLABLE ); /// Flags - -ui_Screen1_Label2 = lv_label_create(ui_settingsbutton); -lv_obj_set_width( ui_Screen1_Label2, LV_SIZE_CONTENT); /// 1 -lv_obj_set_height( ui_Screen1_Label2, LV_SIZE_CONTENT); /// 1 -lv_obj_set_align( ui_Screen1_Label2, LV_ALIGN_CENTER ); -lv_label_set_text(ui_Screen1_Label2, LV_SYMBOL_SETTINGS); - -ui_Screen1_Label1 = lv_label_create(ui_header); -lv_obj_set_width( ui_Screen1_Label1, LV_SIZE_CONTENT); /// 1 -lv_obj_set_height( ui_Screen1_Label1, LV_SIZE_CONTENT); /// 1 -lv_obj_set_align( ui_Screen1_Label1, LV_ALIGN_CENTER ); -lv_label_set_text(ui_Screen1_Label1,"Select Rom"); - -ui_playbutton = lv_btn_create(ui_header); -lv_obj_set_width( ui_playbutton, 48); -lv_obj_set_height( ui_playbutton, 48); -lv_obj_set_align( ui_playbutton, LV_ALIGN_RIGHT_MID ); -lv_obj_add_state( ui_playbutton, LV_STATE_CHECKED ); /// States -lv_obj_add_flag( ui_playbutton, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags -lv_obj_clear_flag( ui_playbutton, LV_OBJ_FLAG_SCROLLABLE ); /// Flags - -ui_Screen1_Label3 = lv_label_create(ui_playbutton); -lv_obj_set_width( ui_Screen1_Label3, LV_SIZE_CONTENT); /// 1 -lv_obj_set_height( ui_Screen1_Label3, LV_SIZE_CONTENT); /// 1 -lv_obj_set_align( ui_Screen1_Label3, LV_ALIGN_CENTER ); -lv_label_set_text(ui_Screen1_Label3, LV_SYMBOL_PLAY); - -ui_rompanel = lv_obj_create(ui_romscreen); -lv_obj_set_width( ui_rompanel, 220); -lv_obj_set_height( ui_rompanel, 165); -lv_obj_set_align( ui_rompanel, LV_ALIGN_BOTTOM_LEFT ); -lv_obj_add_flag( ui_rompanel, LV_OBJ_FLAG_SCROLL_ON_FOCUS | LV_OBJ_FLAG_SCROLL_ONE ); /// Flags -lv_obj_set_scroll_dir(ui_rompanel, LV_DIR_VER); - -ui_boxartpanel = lv_obj_create(ui_romscreen); -lv_obj_set_width( ui_boxartpanel, 100); -lv_obj_set_height( ui_boxartpanel, 165); -lv_obj_set_align( ui_boxartpanel, LV_ALIGN_BOTTOM_RIGHT ); -lv_obj_clear_flag( ui_boxartpanel, LV_OBJ_FLAG_SCROLLABLE ); /// Flags - -ui_boxart = lv_img_create(ui_boxartpanel); -lv_obj_set_width( ui_boxart, 100); -lv_obj_set_height( ui_boxart, LV_SIZE_CONTENT); /// 1 -lv_obj_set_align( ui_boxart, LV_ALIGN_CENTER ); -lv_obj_add_flag( ui_boxart, LV_OBJ_FLAG_ADV_HITTEST ); /// Flags -lv_obj_clear_flag( ui_boxart, LV_OBJ_FLAG_SCROLLABLE ); /// Flags - -lv_obj_add_event_cb(ui_settingsbutton, ui_event_settingsbutton, LV_EVENT_ALL, NULL); - -} -void ui_settingsscreen_screen_init(void) -{ -ui_settingsscreen = lv_obj_create(NULL); -lv_obj_clear_flag( ui_settingsscreen, LV_OBJ_FLAG_SCROLLABLE ); /// Flags - -ui_header1 = lv_obj_create(ui_settingsscreen); -lv_obj_set_height( ui_header1, 75); -lv_obj_set_width( ui_header1, lv_pct(100)); -lv_obj_set_align( ui_header1, LV_ALIGN_TOP_MID ); -lv_obj_clear_flag( ui_header1, LV_OBJ_FLAG_SCROLLABLE ); /// Flags - -ui_closebutton = lv_btn_create(ui_header1); -lv_obj_set_width( ui_closebutton, 48); -lv_obj_set_height( ui_closebutton, 48); -lv_obj_set_align( ui_closebutton, LV_ALIGN_LEFT_MID ); -lv_obj_add_flag( ui_closebutton, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags -lv_obj_clear_flag( ui_closebutton, LV_OBJ_FLAG_SCROLLABLE ); /// Flags - -ui_Screen1_Label4 = lv_label_create(ui_closebutton); -lv_obj_set_width( ui_Screen1_Label4, LV_SIZE_CONTENT); /// 1 -lv_obj_set_height( ui_Screen1_Label4, LV_SIZE_CONTENT); /// 1 -lv_obj_set_align( ui_Screen1_Label4, LV_ALIGN_CENTER ); -lv_label_set_text(ui_Screen1_Label4, LV_SYMBOL_CLOSE); - -ui_Screen1_Label5 = lv_label_create(ui_header1); -lv_obj_set_width( ui_Screen1_Label5, LV_SIZE_CONTENT); /// 1 -lv_obj_set_height( ui_Screen1_Label5, LV_SIZE_CONTENT); /// 1 -lv_obj_set_align( ui_Screen1_Label5, LV_ALIGN_CENTER ); -lv_label_set_text(ui_Screen1_Label5,"Settings"); - -ui_settingspanel = lv_obj_create(ui_settingsscreen); -lv_obj_set_height( ui_settingspanel, 165); -lv_obj_set_width( ui_settingspanel, lv_pct(100)); -lv_obj_set_align( ui_settingspanel, LV_ALIGN_BOTTOM_MID ); -lv_obj_add_flag( ui_settingspanel, LV_OBJ_FLAG_SCROLL_ON_FOCUS | LV_OBJ_FLAG_SCROLL_ONE ); /// Flags -lv_obj_set_scroll_dir(ui_settingspanel, LV_DIR_VER); -lv_obj_set_style_pad_left(ui_settingspanel, 0, LV_PART_MAIN| LV_STATE_DEFAULT); -lv_obj_set_style_pad_right(ui_settingspanel, 0, LV_PART_MAIN| LV_STATE_DEFAULT); -lv_obj_set_style_pad_top(ui_settingspanel, 0, LV_PART_MAIN| LV_STATE_DEFAULT); -lv_obj_set_style_pad_bottom(ui_settingspanel, 0, LV_PART_MAIN| LV_STATE_DEFAULT); - -ui_volumepanel = lv_obj_create(ui_settingspanel); -lv_obj_set_height( ui_volumepanel, 50); -lv_obj_set_width( ui_volumepanel, lv_pct(100)); -lv_obj_set_align( ui_volumepanel, LV_ALIGN_TOP_MID ); -lv_obj_clear_flag( ui_volumepanel, LV_OBJ_FLAG_SCROLLABLE ); /// Flags - -ui_volumebar = lv_bar_create(ui_volumepanel); -lv_bar_set_value(ui_volumebar,25,LV_ANIM_OFF); -lv_obj_set_width( ui_volumebar, 130); -lv_obj_set_height( ui_volumebar, 10); -lv_obj_set_x( ui_volumebar, 25 ); -lv_obj_set_y( ui_volumebar, 0 ); -lv_obj_set_align( ui_volumebar, LV_ALIGN_CENTER ); - -ui_mutebutton = lv_btn_create(ui_volumepanel); -lv_obj_set_width( ui_mutebutton, 32); -lv_obj_set_height( ui_mutebutton, 32); -lv_obj_set_align( ui_mutebutton, LV_ALIGN_LEFT_MID ); -lv_obj_add_flag( ui_mutebutton, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags -lv_obj_clear_flag( ui_mutebutton, LV_OBJ_FLAG_SCROLLABLE ); /// Flags - -ui_settingsscreen_Label1 = lv_label_create(ui_mutebutton); -lv_obj_set_width( ui_settingsscreen_Label1, LV_SIZE_CONTENT); /// 1 -lv_obj_set_height( ui_settingsscreen_Label1, LV_SIZE_CONTENT); /// 1 -lv_obj_set_align( ui_settingsscreen_Label1, LV_ALIGN_CENTER ); -lv_label_set_text(ui_settingsscreen_Label1, LV_SYMBOL_MUTE); - -ui_volumedownbutton = lv_btn_create(ui_volumepanel); -lv_obj_set_width( ui_volumedownbutton, 32); -lv_obj_set_height( ui_volumedownbutton, 32); -lv_obj_set_x( ui_volumedownbutton, 52 ); -lv_obj_set_y( ui_volumedownbutton, 0 ); -lv_obj_set_align( ui_volumedownbutton, LV_ALIGN_LEFT_MID ); -lv_obj_add_flag( ui_volumedownbutton, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags -lv_obj_clear_flag( ui_volumedownbutton, LV_OBJ_FLAG_SCROLLABLE ); /// Flags - -ui_settingsscreen_Label2 = lv_label_create(ui_volumedownbutton); -lv_obj_set_width( ui_settingsscreen_Label2, LV_SIZE_CONTENT); /// 1 -lv_obj_set_height( ui_settingsscreen_Label2, LV_SIZE_CONTENT); /// 1 -lv_obj_set_align( ui_settingsscreen_Label2, LV_ALIGN_CENTER ); -lv_label_set_text(ui_settingsscreen_Label2, LV_SYMBOL_VOLUME_MID); - -ui_volumeupbutton = lv_btn_create(ui_volumepanel); -lv_obj_set_width( ui_volumeupbutton, 32); -lv_obj_set_height( ui_volumeupbutton, 32); -lv_obj_set_align( ui_volumeupbutton, LV_ALIGN_RIGHT_MID ); -lv_obj_add_flag( ui_volumeupbutton, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags -lv_obj_clear_flag( ui_volumeupbutton, LV_OBJ_FLAG_SCROLLABLE ); /// Flags - -ui_settingsscreen_Label3 = lv_label_create(ui_volumeupbutton); -lv_obj_set_width( ui_settingsscreen_Label3, LV_SIZE_CONTENT); /// 1 -lv_obj_set_height( ui_settingsscreen_Label3, LV_SIZE_CONTENT); /// 1 -lv_obj_set_align( ui_settingsscreen_Label3, LV_ALIGN_CENTER ); -lv_label_set_text(ui_settingsscreen_Label3, LV_SYMBOL_VOLUME_MAX); - -ui_fillpanel = lv_obj_create(ui_settingspanel); -lv_obj_set_height( ui_fillpanel, 50); -lv_obj_set_width( ui_fillpanel, lv_pct(100)); -lv_obj_set_x( ui_fillpanel, 0 ); -lv_obj_set_y( ui_fillpanel, 60 ); -lv_obj_set_align( ui_fillpanel, LV_ALIGN_TOP_MID ); -lv_obj_clear_flag( ui_fillpanel, LV_OBJ_FLAG_SCROLLABLE ); /// Flags - -ui_settingsscreen_Label4 = lv_label_create(ui_fillpanel); -lv_obj_set_width( ui_settingsscreen_Label4, LV_SIZE_CONTENT); /// 1 -lv_obj_set_height( ui_settingsscreen_Label4, LV_SIZE_CONTENT); /// 1 -lv_obj_set_align( ui_settingsscreen_Label4, LV_ALIGN_LEFT_MID ); -lv_label_set_text(ui_settingsscreen_Label4,"Video Scaling"); - -ui_videosettingdropdown = lv_dropdown_create(ui_fillpanel); -lv_dropdown_set_options( ui_videosettingdropdown, "Original\nFit\nFill" ); -lv_obj_set_width( ui_videosettingdropdown, 100); -lv_obj_set_height( ui_videosettingdropdown, LV_SIZE_CONTENT); /// 1 -lv_obj_set_align( ui_videosettingdropdown, LV_ALIGN_RIGHT_MID ); -lv_obj_add_flag( ui_videosettingdropdown, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags - -ui_hapticpanel = lv_obj_create(ui_settingspanel); -lv_obj_set_height( ui_hapticpanel, 50); -lv_obj_set_width( ui_hapticpanel, lv_pct(100)); -lv_obj_set_x( ui_hapticpanel, 0 ); -lv_obj_set_y( ui_hapticpanel, 120 ); -lv_obj_set_align( ui_hapticpanel, LV_ALIGN_TOP_MID ); -lv_obj_clear_flag( ui_hapticpanel, LV_OBJ_FLAG_SCROLLABLE ); /// Flags - -ui_settingsscreen_Label5 = lv_label_create(ui_hapticpanel); -lv_obj_set_width( ui_settingsscreen_Label5, LV_SIZE_CONTENT); /// 1 -lv_obj_set_height( ui_settingsscreen_Label5, LV_SIZE_CONTENT); /// 1 -lv_obj_set_align( ui_settingsscreen_Label5, LV_ALIGN_LEFT_MID ); -lv_label_set_text(ui_settingsscreen_Label5,"Haptics"); - -ui_settingsscreen_Panel1 = lv_obj_create(ui_hapticpanel); -lv_obj_set_width( ui_settingsscreen_Panel1, 140); -lv_obj_set_height( ui_settingsscreen_Panel1, 50); -lv_obj_set_x( ui_settingsscreen_Panel1, -30 ); -lv_obj_set_y( ui_settingsscreen_Panel1, 0 ); -lv_obj_set_align( ui_settingsscreen_Panel1, LV_ALIGN_RIGHT_MID ); -lv_obj_clear_flag( ui_settingsscreen_Panel1, LV_OBJ_FLAG_SCROLLABLE ); /// Flags -lv_obj_set_style_border_color(ui_settingsscreen_Panel1, lv_color_hex(0x000000), LV_PART_MAIN | LV_STATE_DEFAULT ); -lv_obj_set_style_border_opa(ui_settingsscreen_Panel1, 0, LV_PART_MAIN| LV_STATE_DEFAULT); - -ui_hapticlabel = lv_label_create(ui_settingsscreen_Panel1); -lv_obj_set_width( ui_hapticlabel, LV_SIZE_CONTENT); /// 1 -lv_obj_set_height( ui_hapticlabel, LV_SIZE_CONTENT); /// 1 -lv_obj_set_align( ui_hapticlabel, LV_ALIGN_CENTER ); -lv_label_set_text(ui_hapticlabel,"128"); - -ui_hapticdownbutton = lv_btn_create(ui_settingsscreen_Panel1); -lv_obj_set_width( ui_hapticdownbutton, 32); -lv_obj_set_height( ui_hapticdownbutton, 32); -lv_obj_set_align( ui_hapticdownbutton, LV_ALIGN_LEFT_MID ); -lv_obj_add_flag( ui_hapticdownbutton, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags -lv_obj_clear_flag( ui_hapticdownbutton, LV_OBJ_FLAG_SCROLLABLE ); /// Flags - -ui_settingsscreen_Label7 = lv_label_create(ui_hapticdownbutton); -lv_obj_set_width( ui_settingsscreen_Label7, LV_SIZE_CONTENT); /// 1 -lv_obj_set_height( ui_settingsscreen_Label7, LV_SIZE_CONTENT); /// 1 -lv_obj_set_align( ui_settingsscreen_Label7, LV_ALIGN_CENTER ); -lv_label_set_text(ui_settingsscreen_Label7, LV_SYMBOL_MINUS); - -ui_hapticupbutton = lv_btn_create(ui_settingsscreen_Panel1); -lv_obj_set_width( ui_hapticupbutton, 32); -lv_obj_set_height( ui_hapticupbutton, 32); -lv_obj_set_align( ui_hapticupbutton, LV_ALIGN_RIGHT_MID ); -lv_obj_add_flag( ui_hapticupbutton, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags -lv_obj_clear_flag( ui_hapticupbutton, LV_OBJ_FLAG_SCROLLABLE ); /// Flags - -ui_settingsscreen_Label6 = lv_label_create(ui_hapticupbutton); -lv_obj_set_width( ui_settingsscreen_Label6, LV_SIZE_CONTENT); /// 1 -lv_obj_set_height( ui_settingsscreen_Label6, LV_SIZE_CONTENT); /// 1 -lv_obj_set_align( ui_settingsscreen_Label6, LV_ALIGN_CENTER ); -lv_label_set_text(ui_settingsscreen_Label6, LV_SYMBOL_PLUS); - -ui_hapticplaybutton = lv_btn_create(ui_hapticpanel); -lv_obj_set_width( ui_hapticplaybutton, 32); -lv_obj_set_height( ui_hapticplaybutton, 32); -lv_obj_set_align( ui_hapticplaybutton, LV_ALIGN_RIGHT_MID ); -lv_obj_add_flag( ui_hapticplaybutton, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags -lv_obj_clear_flag( ui_hapticplaybutton, LV_OBJ_FLAG_SCROLLABLE ); /// Flags - -ui_settingsscreen_Label8 = lv_label_create(ui_hapticplaybutton); -lv_obj_set_width( ui_settingsscreen_Label8, LV_SIZE_CONTENT); /// 1 -lv_obj_set_height( ui_settingsscreen_Label8, LV_SIZE_CONTENT); /// 1 -lv_obj_set_align( ui_settingsscreen_Label8, LV_ALIGN_CENTER ); -lv_label_set_text(ui_settingsscreen_Label8, LV_SYMBOL_PLAY); - -lv_obj_add_event_cb(ui_closebutton, ui_event_closebutton, LV_EVENT_ALL, NULL); - -} void ui_init( void ) { @@ -336,5 +95,6 @@ lv_theme_t *theme = lv_theme_default_init(dispp, lv_palette_main(LV_PALETTE_BLUE lv_disp_set_theme(dispp, theme); ui_romscreen_screen_init(); ui_settingsscreen_screen_init(); +ui____initial_actions0 = lv_obj_create(NULL); lv_disp_load_scr( ui_romscreen); } diff --git a/components/gui/generated/ui.h b/components/gui/generated/ui.h index d8fdaf15..11d3fee7 100644 --- a/components/gui/generated/ui.h +++ b/components/gui/generated/ui.h @@ -1,7 +1,7 @@ -// SquareLine LVGL GENERATED FILE -// EDITOR VERSION: SquareLine Studio 1.1.1 -// LVGL VERSION: 8.3.3 -// PROJECT: emu +// This file was generated by SquareLine Studio +// SquareLine Studio version: SquareLine Studio 1.3.3 +// LVGL version: 8.3.3 +// Project name: emu #ifndef _EMU_UI_H #define _EMU_UI_H @@ -12,6 +12,10 @@ extern "C" { #include "lvgl/lvgl.h" +#include "ui_helpers.h" +#include "ui_events.h" +// SCREEN: ui_romscreen +void ui_romscreen_screen_init(void); extern lv_obj_t *ui_romscreen; extern lv_obj_t *ui_header; void ui_event_settingsbutton( lv_event_t * e); @@ -23,6 +27,8 @@ extern lv_obj_t *ui_Screen1_Label3; extern lv_obj_t *ui_rompanel; extern lv_obj_t *ui_boxartpanel; extern lv_obj_t *ui_boxart; +// SCREEN: ui_settingsscreen +void ui_settingsscreen_screen_init(void); extern lv_obj_t *ui_settingsscreen; extern lv_obj_t *ui_header1; void ui_event_closebutton( lv_event_t * e); @@ -38,6 +44,12 @@ extern lv_obj_t *ui_volumedownbutton; extern lv_obj_t *ui_settingsscreen_Label2; extern lv_obj_t *ui_volumeupbutton; extern lv_obj_t *ui_settingsscreen_Label3; +extern lv_obj_t *ui_brightnesspanel; +extern lv_obj_t *ui_brightnessbar; +extern lv_obj_t *ui_brightnessdownbutton; +extern lv_obj_t *ui_settingsscreen_Label10; +extern lv_obj_t *ui_brightnessupbutton; +extern lv_obj_t *ui_settingsscreen_Label11; extern lv_obj_t *ui_fillpanel; extern lv_obj_t *ui_settingsscreen_Label4; extern lv_obj_t *ui_videosettingdropdown; @@ -51,8 +63,7 @@ extern lv_obj_t *ui_hapticupbutton; extern lv_obj_t *ui_settingsscreen_Label6; extern lv_obj_t *ui_hapticplaybutton; extern lv_obj_t *ui_settingsscreen_Label8; - - +// extern lv_obj_t *ui____initial_actions0; diff --git a/components/gui/generated/ui_events.h b/components/gui/generated/ui_events.h new file mode 100644 index 00000000..45f5c299 --- /dev/null +++ b/components/gui/generated/ui_events.h @@ -0,0 +1,17 @@ +// This file was generated by SquareLine Studio +// SquareLine Studio version: SquareLine Studio 1.3.3 +// LVGL version: 8.3.3 +// Project name: emu + +#ifndef _UI_EVENTS_H +#define _UI_EVENTS_H + +#ifdef __cplusplus +extern "C" { +#endif + +#ifdef __cplusplus +} /*extern "C"*/ +#endif + +#endif diff --git a/components/gui/generated/ui_helpers.c b/components/gui/generated/ui_helpers.c index 30551e55..1473fb37 100644 --- a/components/gui/generated/ui_helpers.c +++ b/components/gui/generated/ui_helpers.c @@ -1,7 +1,7 @@ -// SquareLine LVGL GENERATED FILE -// EDITOR VERSION: SquareLine Studio 1.1.1 -// LVGL VERSION: 8.3.3 -// PROJECT: emu +// This file was generated by SquareLine Studio +// SquareLine Studio version: SquareLine Studio 1.3.3 +// LVGL version: 8.3.3 +// Project name: emu #include "ui_helpers.h" @@ -19,7 +19,6 @@ void _ui_basic_set_property( lv_obj_t *target, int id, int val) if (id == _UI_BASIC_PROPERTY_HEIGHT) lv_obj_set_height(target, val); } - void _ui_dropdown_set_property( lv_obj_t *target, int id, int val) { if (id == _UI_DROPDOWN_PROPERTY_SELECTED) lv_dropdown_set_selected(target, val); @@ -30,12 +29,11 @@ void _ui_image_set_property( lv_obj_t *target, int id, uint8_t *val) if (id == _UI_IMAGE_PROPERTY_IMAGE) lv_img_set_src(target, val); } -void _ui_label_set_property( lv_obj_t *target, int id, char *val) +void _ui_label_set_property( lv_obj_t *target, int id, const char *val) { if (id == _UI_LABEL_PROPERTY_TEXT) lv_label_set_text(target, val); } - void _ui_roller_set_property( lv_obj_t *target, int id, int val) { if (id == _UI_ROLLER_PROPERTY_SELECTED_WITH_ANIM) lv_roller_set_selected(target, val, LV_ANIM_ON); @@ -48,16 +46,27 @@ void _ui_slider_set_property( lv_obj_t *target, int id, int val) if (id == _UI_SLIDER_PROPERTY_VALUE) lv_slider_set_value(target, val, LV_ANIM_OFF); } +void _ui_screen_change( lv_obj_t ** target, lv_scr_load_anim_t fademode, int spd, int delay, void (*target_init)(void)) +{ + if(*target == NULL) + target_init(); + lv_scr_load_anim(*target, fademode, spd, delay, false); +} -void _ui_screen_change( lv_obj_t *target, lv_scr_load_anim_t fademode, int spd, int delay) +void _ui_screen_delete( lv_obj_t ** target ) { - lv_scr_load_anim(target, fademode, spd, delay, false); + if(*target == NULL) + { + lv_obj_del(*target); + target = NULL; + } } void _ui_arc_increment( lv_obj_t *target, int val) { int old = lv_arc_get_value(target); - lv_arc_set_value(target, old+val); + lv_arc_set_value(target, old+val); + lv_event_send(target,LV_EVENT_VALUE_CHANGED, 0); } void _ui_bar_increment( lv_obj_t *target, int val, int anm) @@ -69,7 +78,13 @@ void _ui_bar_increment( lv_obj_t *target, int val, int anm) void _ui_slider_increment( lv_obj_t *target, int val, int anm) { int old = lv_slider_get_value(target); - lv_slider_set_value(target, old+val, anm); + lv_slider_set_value(target, old+val, anm); + lv_event_send(target,LV_EVENT_VALUE_CHANGED, 0); +} + +void _ui_keyboard_set_target( lv_obj_t *keyboard, lv_obj_t *textarea) +{ + lv_keyboard_set_textarea(keyboard, textarea); } void _ui_flag_modify( lv_obj_t *target, int32_t flag, int value) @@ -93,99 +108,146 @@ void _ui_state_modify( lv_obj_t *target, int32_t state, int value) else lv_obj_clear_state(target,state); } +void scr_unloaded_delete_cb(lv_event_t * e) +{ + lv_obj_t ** var = lv_event_get_user_data(e); + lv_obj_del(*var); + (*var) = NULL; +} + void _ui_opacity_set( lv_obj_t *target, int val) { lv_obj_set_style_opa(target, val, 0); } +void _ui_anim_callback_free_user_data(lv_anim_t *a) +{ + lv_mem_free(a->user_data); + a->user_data=NULL; +} + void _ui_anim_callback_set_x(lv_anim_t* a, int32_t v) { - lv_obj_set_x((lv_obj_t *)a->user_data, v); + ui_anim_user_data_t *usr = (ui_anim_user_data_t *)a->user_data; + lv_obj_set_x(usr->target, v); } void _ui_anim_callback_set_y(lv_anim_t* a, int32_t v) { - lv_obj_set_y((lv_obj_t *)a->user_data, v); + ui_anim_user_data_t *usr = (ui_anim_user_data_t *)a->user_data; + lv_obj_set_y(usr->target, v); } void _ui_anim_callback_set_width(lv_anim_t* a, int32_t v) { - lv_obj_set_width((lv_obj_t *)a->user_data, v); + ui_anim_user_data_t *usr = (ui_anim_user_data_t *)a->user_data; + lv_obj_set_width(usr->target, v); } void _ui_anim_callback_set_height(lv_anim_t* a, int32_t v) { - lv_obj_set_height((lv_obj_t *)a->user_data, v); + ui_anim_user_data_t *usr = (ui_anim_user_data_t *)a->user_data; + lv_obj_set_height(usr->target, v); } void _ui_anim_callback_set_opacity(lv_anim_t* a, int32_t v) { - lv_obj_set_style_opa((lv_obj_t *)a->user_data, v, 0); + ui_anim_user_data_t *usr = (ui_anim_user_data_t *)a->user_data; + lv_obj_set_style_opa(usr->target, v, 0); } void _ui_anim_callback_set_image_zoom(lv_anim_t* a, int32_t v) { - lv_img_set_zoom((lv_obj_t *)a->user_data, v); + ui_anim_user_data_t *usr = (ui_anim_user_data_t *)a->user_data; + lv_img_set_zoom(usr->target, v); } void _ui_anim_callback_set_image_angle(lv_anim_t* a, int32_t v) { - lv_img_set_angle((lv_obj_t *)a->user_data, v); + ui_anim_user_data_t *usr = (ui_anim_user_data_t *)a->user_data; + lv_img_set_angle(usr->target, v); } +void _ui_anim_callback_set_image_frame(lv_anim_t* a, int32_t v) +{ + ui_anim_user_data_t *usr = (ui_anim_user_data_t *)a->user_data; + usr->val = v; + if ( v<0 ) v=0; + if ( v>=usr->imgset_size ) v=usr->imgset_size-1; + lv_img_set_src(usr->target, usr->imgset[v]); +} int32_t _ui_anim_callback_get_x(lv_anim_t* a) { - return lv_obj_get_x_aligned((lv_obj_t *)a->user_data); + ui_anim_user_data_t *usr = (ui_anim_user_data_t *)a->user_data; + return lv_obj_get_x_aligned(usr->target); } int32_t _ui_anim_callback_get_y(lv_anim_t* a) { - return lv_obj_get_y_aligned((lv_obj_t *)a->user_data); + ui_anim_user_data_t *usr = (ui_anim_user_data_t *)a->user_data; + return lv_obj_get_y_aligned(usr->target); } int32_t _ui_anim_callback_get_width(lv_anim_t* a) { - return lv_obj_get_width((lv_obj_t *)a->user_data); + ui_anim_user_data_t *usr = (ui_anim_user_data_t *)a->user_data; + return lv_obj_get_width(usr->target); } int32_t _ui_anim_callback_get_height(lv_anim_t* a) { - return lv_obj_get_height((lv_obj_t *)a->user_data); + ui_anim_user_data_t *usr = (ui_anim_user_data_t *)a->user_data; + return lv_obj_get_height(usr->target); } int32_t _ui_anim_callback_get_opacity(lv_anim_t* a) { - return lv_obj_get_style_opa((lv_obj_t *)a->user_data, 0); + ui_anim_user_data_t *usr = (ui_anim_user_data_t *)a->user_data; + return lv_obj_get_style_opa(usr->target, 0); } int32_t _ui_anim_callback_get_image_zoom(lv_anim_t* a) { - return lv_img_get_zoom((lv_obj_t *)a->user_data); + ui_anim_user_data_t *usr = (ui_anim_user_data_t *)a->user_data; + return lv_img_get_zoom(usr->target); } int32_t _ui_anim_callback_get_image_angle(lv_anim_t* a) { - return lv_img_get_angle((lv_obj_t *)a->user_data); + ui_anim_user_data_t *usr = (ui_anim_user_data_t *)a->user_data; + return lv_img_get_angle(usr->target); +} + +int32_t _ui_anim_callback_get_image_frame(lv_anim_t* a) +{ + ui_anim_user_data_t *usr = (ui_anim_user_data_t *)a->user_data; + return usr->val; } -void _ui_arc_set_text_value( lv_obj_t *trg, lv_obj_t *src, char *prefix, char *postfix) +void _ui_arc_set_text_value( lv_obj_t *trg, lv_obj_t *src, const char *prefix, const char *postfix) { char buf[_UI_TEMPORARY_STRING_BUFFER_SIZE]; lv_snprintf(buf, sizeof(buf), "%s%d%s", prefix, (int)lv_arc_get_value(src), postfix); lv_label_set_text(trg, buf); } -void _ui_slider_set_text_value( lv_obj_t *trg, lv_obj_t *src, char *prefix, char *postfix) +void _ui_slider_set_text_value( lv_obj_t *trg, lv_obj_t *src, const char *prefix, const char *postfix) { char buf[_UI_TEMPORARY_STRING_BUFFER_SIZE]; lv_snprintf(buf, sizeof(buf), "%s%d%s", prefix, (int)lv_slider_get_value(src), postfix); lv_label_set_text(trg, buf); } -void _ui_checked_set_text_value( lv_obj_t *trg, lv_obj_t *src, char *txt_on, char *txt_off) +void _ui_checked_set_text_value( lv_obj_t *trg, lv_obj_t *src, const char *txt_on, const char *txt_off) { if (lv_obj_has_state(src,LV_STATE_CHECKED)) lv_label_set_text(trg,txt_on); else lv_label_set_text(trg,txt_off); } +void _ui_spinbox_step( lv_obj_t *target, int val, int anm) +{ + int old = lv_slider_get_value(target); + lv_slider_set_value(target, old+val, anm); + lv_event_send(target,LV_EVENT_VALUE_CHANGED, 0); +} diff --git a/components/gui/generated/ui_helpers.h b/components/gui/generated/ui_helpers.h index 38354d53..ed29bc97 100644 --- a/components/gui/generated/ui_helpers.h +++ b/components/gui/generated/ui_helpers.h @@ -1,11 +1,15 @@ -// SquareLine LVGL GENERATED FILE -// EDITOR VERSION: SquareLine Studio 1.1.1 -// LVGL VERSION: 8.3.3 -// PROJECT: emu +// This file was generated by SquareLine Studio +// SquareLine Studio version: SquareLine Studio 1.3.3 +// LVGL version: 8.3.3 +// Project name: emu #ifndef _EMU_UI_HELPERS_H #define _EMU_UI_HELPERS_H +#ifdef __cplusplus +extern "C" { +#endif + #include "ui.h" #define _UI_TEMPORARY_STRING_BUFFER_SIZE 32 @@ -26,7 +30,7 @@ void _ui_dropdown_set_property( lv_obj_t *target, int id, int val); void _ui_image_set_property( lv_obj_t *target, int id, uint8_t *val); #define _UI_LABEL_PROPERTY_TEXT 0 -void _ui_label_set_property( lv_obj_t *target, int id, char *val); +void _ui_label_set_property( lv_obj_t *target, int id, const char *val); #define _UI_ROLLER_PROPERTY_SELECTED 0 #define _UI_ROLLER_PROPERTY_SELECTED_WITH_ANIM 1 @@ -36,7 +40,9 @@ void _ui_roller_set_property( lv_obj_t *target, int id, int val); #define _UI_SLIDER_PROPERTY_VALUE_WITH_ANIM 1 void _ui_slider_set_property( lv_obj_t *target, int id, int val); -void _ui_screen_change( lv_obj_t *target, lv_scr_load_anim_t fademode, int spd, int delay); +void _ui_screen_change( lv_obj_t ** target, lv_scr_load_anim_t fademode, int spd, int delay, void (*target_init)(void)); + +void _ui_screen_delete( lv_obj_t ** target ); void _ui_arc_increment( lv_obj_t *target, int val); @@ -44,6 +50,8 @@ void _ui_bar_increment( lv_obj_t *target, int val, int anm); void _ui_slider_increment( lv_obj_t *target, int val, int anm); +void _ui_keyboard_set_target( lv_obj_t *keyboard, lv_obj_t *textarea); + #define _UI_MODIFY_FLAG_ADD 0 #define _UI_MODIFY_FLAG_REMOVE 1 #define _UI_MODIFY_FLAG_TOGGLE 2 @@ -54,8 +62,19 @@ void _ui_flag_modify( lv_obj_t *target, int32_t flag, int value); #define _UI_MODIFY_STATE_TOGGLE 2 void _ui_state_modify( lv_obj_t *target, int32_t state, int value); +void scr_unloaded_delete_cb(lv_event_t * e); + void _ui_opacity_set( lv_obj_t *target, int val); +/** Describes an animation*/ +typedef struct _ui_anim_user_data_t { + lv_obj_t *target; + lv_img_dsc_t **imgset; + int32_t imgset_size; + int32_t val; +} ui_anim_user_data_t; +void _ui_anim_callback_free_user_data(lv_anim_t *a); + void _ui_anim_callback_set_x(lv_anim_t* a, int32_t v); void _ui_anim_callback_set_y(lv_anim_t* a, int32_t v); @@ -70,6 +89,8 @@ void _ui_anim_callback_set_image_zoom(lv_anim_t* a, int32_t v); void _ui_anim_callback_set_image_angle(lv_anim_t* a, int32_t v); +void _ui_anim_callback_set_image_frame(lv_anim_t* a, int32_t v); + int32_t _ui_anim_callback_get_x(lv_anim_t* a); int32_t _ui_anim_callback_get_y(lv_anim_t* a); @@ -84,11 +105,18 @@ int32_t _ui_anim_callback_get_image_zoom(lv_anim_t* a); int32_t _ui_anim_callback_get_image_angle(lv_anim_t* a); -void _ui_arc_set_text_value( lv_obj_t *trg, lv_obj_t *src, char *prefix, char *postfix); +int32_t _ui_anim_callback_get_image_frame(lv_anim_t* a); + +void _ui_arc_set_text_value( lv_obj_t *trg, lv_obj_t *src, const char *prefix, const char *postfix); -void _ui_slider_set_text_value( lv_obj_t *trg, lv_obj_t *src, char *prefix, char *postfix); +void _ui_slider_set_text_value( lv_obj_t *trg, lv_obj_t *src, const char *prefix, const char *postfix); -void _ui_checked_set_text_value( lv_obj_t *trg, lv_obj_t *src, char *txt_on, char *txt_off); +void _ui_checked_set_text_value( lv_obj_t *trg, lv_obj_t *src, const char *txt_on, const char *txt_off); +void _ui_spinbox_step( lv_obj_t *target, int val, int anm); + +#ifdef __cplusplus +} /*extern "C"*/ +#endif #endif diff --git a/components/gui/include/gui.hpp b/components/gui/include/gui.hpp index 259f3ba2..c90e3194 100644 --- a/components/gui/include/gui.hpp +++ b/components/gui/include/gui.hpp @@ -13,6 +13,7 @@ #include "input.h" #include "hal_events.hpp" #include "i2s_audio.h" +#include "spi_lcd.h" #include "video_setting.hpp" class Gui { @@ -71,7 +72,7 @@ class Gui { void set_audio_level(int new_audio_level); - int get_audio_level(); + void set_brightness(int new_brightness); void set_video_setting(VideoSetting setting); @@ -126,6 +127,7 @@ class Gui { void update_shared_state() { set_mute(is_muted()); set_audio_level(get_audio_volume()); + set_brightness(get_display_brightness() * 100.0f); set_video_setting(::get_video_setting()); } diff --git a/components/gui/squareline/emu.sll b/components/gui/squareline/emu.sll index f9a821f4..04c41ae7 100644 --- a/components/gui/squareline/emu.sll +++ b/components/gui/squareline/emu.sll @@ -1 +1 @@ -{"name":"emu.spj","depth":2,"width":320,"height":240,"rotation":0,"offset_x":0,"offset_y":0,"description":"","board":"Eclipse with SDL for development on PC","board_version":"v1.0.1","editor_version":"1.1.1","image":"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRofHh0aHBwgJC4nICIsIxwcKDcpLDAxNDQ0Hyc5PTgyPC4zNDL/2wBDAQkJCQwLDBgNDRgyIRwhMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL/wAARCADwAUADASIAAhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwDyaONYVCqBnufWn7j60N940lWJIXcfWjcfWkooHYXcfWjcfWkooCwu4+tG4+tJRQFhdx9aNx9aSigLC7j60bj60lFAWF3H1o3H1pKKAsLuPrRuPrSUUBYXcfWjcfWkooCwu4+tG4+tJRQFhdx9aNx9aSigLC7j60bj60lFAWF3H1o3H1pKKAsLuNRfZY/N8zA24+72zUlO/wCWdAmJuNG4+tJRQOwu4+tG4+tJRQFhdx9aNx9aSigLC7j60bj60lFAWF3H1o3H1pKKAsLuPrTJI1mUqwGex9KdSr94UCaBvvGkpW+8aSgaCiiimAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABTv+WdNp3/LOkJjaKKKYwooooAKKKKACiiigAooooAKVfvCkpV+8KQMG+8aSlb7xpKAQUUUUwCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKd/yzptO/wCWdITG0UUUxhRRRQAUUUUAFFFFABRRRQAUq/eFJSr94UgYN940lK33jSUAgooopgFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAVIiPLtjjVndiFVVGSSTwAKjrtfhRFHN8SdGWRFdQ0rAMM8iJyD+BAP4UmJnQ6H8C9Xv7NLjVNRi01nGRCIvNcf73IAP4mtX/hn7/qZ//JD/AO2V6b4t8TReFtGN20XnXEjiKCEH77n+g/z1rHtrz4jXNukp0/QoN4z5cpk3D64Y1N2M4r/hn7/qZ/8AyQ/+2Uf8M/f9TP8A+SH/ANsruvO+Iv8Az7eHP++pv8aPO+Iv/Pt4c/76m/xouwOF/wCGfv8AqZ//ACQ/+2Uf8M/f9TP/AOSH/wBsruvO+Iv/AD7eHP8Avqb/ABrB8R+NPGPhZITqNtoRaY4RIjIzH3xu6e9F2Bx2ufAvV7Cze40vUYtSZBkwmLynP+7yQT+Iry3yJftH2fyn87ds8vad27OMY9c9q+qPBPi2bxPa3Ud5Zm0v7NlWePBC/NnBAPI6Hg/1rmv+Easf+F+/aPKX/kG/2jtxx5u/ys49f4vrzTTA47Q/gXq9/ZpcapqMWms4yIRF5rj/AHuQAfxNav8Awz9/1M//AJIf/bK9N8W+JovC2jG7aLzriRxFBCD99z/Qf561j2158Rrm3SU6foUG8Z8uUybh9cMaV2BxX/DP3/Uz/wDkh/8AbKxfFnwe/wCEW8M3etf279q+zbP3P2TZu3Oq/e3nH3s9O1eqed8Rf+fbw5/31N/jXL/ESTxo3gTUhq0GirY/uvNNsZPM/wBamMZOOuPwzRdgzwNvvGkpW+8aSqBBRRRTAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAruPhJ/yUvR/+23/omSuHruPhJ/yUvR/+23/omSkxM9b+JvOqeFR2N/8A+zJXodeZfF65ayPh+6RQzQXLyAHoSu0/0rvND1qz8QaTDqNk+6KQcqfvI3dW9x/9fpUDNGiis3XdcsvD2lS6hfSbY04VR96RuyqO5P8A9egCv4n8S2XhfSXvbpt0hysMIPzSt6D29T2/Kua8I+FrvUL8+KvFCebqMxDW1u4+W3Xt8vY+g7dTyeIvDOhX3ijVl8WeJI8LwdPsj92NeoYj9R69fSvRKAOO8MAL488ZADA8y1P/AJDao/8AmuH/AHLf/tzUvhn/AJH3xj/v2v8A6Laov+a4f9y3/wC3NAFH4m86p4VHY3//ALMleh15l8XrlrI+H7pFDNBcvIAehK7T/Su80PWrPxBpMOo2T7opByp+8jd1b3H/ANfpQBo1xfxZ/wCSZax/2x/9HJXaVxHxcmjj+Gupo8iq0rQqgJwWPmocD1OAT+BoBnzC33jSUrfeNJVggooopgFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAV3Hwk/5KXo//bb/ANEyVw9dx8JP+Sl6P/22/wDRMlJiZ6r8V7ZLy58N2smdk12Y2x6EoD/Oq91ZXHwu1hdRsBNceHLtglzCTloG7EH+R79D2NXviZ/yFfCn/X//AOzJXfzwQ3UDwTxJLDIpV0cZDD0IqBmXc+KtEtdHOqvqMDWu3cpRwWf2A659q4zRdMvPH+sR+ItdiMekQE/YLFuj/wC03qOOfXHoMHbi+GHhaK/+1CxdhnIheUmMH6d/oTXXqqoioihVUYAAwAKAForlfHnix/Cmjxy28Ky3dw/lxB/urgZLH17ce9Z3g7xbrN54guvD/iK1iivoohMrRY6cHBwSOjAgigC34Z/5H3xj/v2v/otqi/5rh/3Lf/tzUvhn/kffGP8Av2v/AKLaov8AmuH/AHLf/tzQBl/Fe2S8ufDdrJnZNdmNsehKA/zqvdWVx8LtYXUbATXHhy7YJcwk5aBuxB/ke/Q9jV74mf8AIV8Kf9f/AP7Mld/PBDdQPBPEksMilXRxkMPQigDLufFWiWujnVX1GBrXbuUo4LP7Adc+1eQ+MY9W8W+FdS8WajvtdPtgi6fa/wB4NKilj+B69zjsK9Gi+GHhaK/+1CxdhnIheUmMH6d/oTUPxXVU+F+rIihVUQAADAA86OgTPmBvvGkpW+8aSrGgooopgFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAV3Hwk/5KXo//AG2/9EyVw9dV8O9WtND8c6VqF8/l20bujv2XejICfYFhn2pMTPafimGt10DU2Rjb2l8GlKjOAcH/ANlNdzb6lY3duk9vdwSROMqyyAginXNtaapYPb3Ecdxazp8yn5lcHkf45rjJfhH4YkcsovYwT91ZuB+YNQM7b7Tb/wDPeL/vsUfabf8A57xf99iuF/4VB4a/566h/wB/l/8AiaX/AIVB4a/56X//AH+X/wCJoA6TxBpGkeJdMaw1CRCm7cjpIAyN6g/iazfDHhPQvCPn3FvdeZPIu1555FyqdcDGABwPyrN/4VB4a/566h/3+X/4mnJ8IvDKkEm+b2Mw/oKAH+Cb+31Txh4uvLRxJbvLbhHHRtqupI9uKk/5rh/3Lf8A7c10umaVpvh/T/s1jBHa2yZZufzZiev1NeN/8LIsP+F0/wBp+aP7J8j+zvP7bM7t/wBN/wCnNNAdj8Uw1uugamyMbe0vg0pUZwDg/wDsprubfUrG7t0nt7uCSJxlWWQEEU65trTVLB7e4jjuLWdPmU/Mrg8j/HNcZL8I/DEjllF7GCfurNwPzBpAdt9pt/8AnvF/32K4z4rzwv8ADTV1WVGY+TgBgT/rkqD/AIVB4a/566h/3+X/AOJrm/H/AMOND0HwRqGp2b3ZuIPL2+ZICvMiqcjHoTQJnhrfeNJSt940lWNBRRRTAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAp3/LOm07/lnSEzoNG8deJ/D9uLfTdYnigH3YmCyKv0DggfhWn/wtvxx/0HP/ACUg/wDiK4qigZ2v/C2/HH/Qc/8AJSD/AOIo/wCFt+OP+g5/5KQf/EVxVFFgO1/4W344/wCg5/5KQf8AxFH/AAtvxx/0HP8AyUg/+IriqKLAdFrPjrxP4gtzb6lrE8sB+9EoWNW+oQAH8a52iigDotG8deJ/D9uLfTdYnigH3YmCyKv0DggfhWn/AMLb8cf9Bz/yUg/+IriqKAO1/wCFt+OP+g5/5KQf/EVT1X4i+Ktd02XTdS1Xz7SbHmR/Z4lzghhyqg9QO9ctSr94UWBg33jSUrfeNJQCCiiimAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABTv+WdNp3/LOkJjaKKKYwooooAKKKKACiiigAooooAKVfvCkpV+8KQMG+8aSlb71JQCCiiimAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABTv8AlnTaf/BSExlFFFMYUUUUAFFFFABRRRQAUUUUAFKv3hSUq/epAyK1d5IhvXAHAbPWptq+tIRjgdBwKSgVh21fWjavrTaKAsO2r60bV9abRQFh21fWjavrTaKAsO2r60bV9abRQFh21fWjavrTaKAsO2r60bV9abRQFh21fWjavrTaKAsO2r60bV9abRQFh21fWjavrTaKAsO2r60bV9abRQFh21fWjavrTaKAsO2r60bV9abRQFh2F9f1qHbP52/dHtxjbnt+VSUUBYdhfX9aNq+tNooCw7avrRtX1ptFAWHbV9aNq+tNooCw7avrRtX1ptFAWHbV9aNq+tNooCw7avrUN07xxHYuQeC2elSUoGeD0PBoCwN940AFiAASTwAKG+8as6ZzqtmD/wA90/8AQhVQjzSS7ilLli32Ois/CMZgVryaQSEZKxkAL7ZIOasf8Ihp/wDz2uf++l/+JroKK+rjgMPFW5T5OWYYmTvzHP8A/CIaf/z2uf8Avpf/AImj/hENP/57XP8A30v/AMTXQUVX1HD/AMiJ+vYn+dnP/wDCIaf/AM9rn/vpf/iay9Z8NmwgNzbSNJEv31b7y+/HWu0qpqnOk3n/AFwf/wBBNY18Bh3Tdo2ZtQzDEKoryujzaiiivlz6oKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigDd0nw99tgFxcSNHG33VXqff2rS/4RWx/563H/AH0v+Faem8aXaf8AXFP5CrVeJVxVVzdnY+7wuU4RUY80Lu27ML/hFbH/AJ63H/fS/wCFH/CK2P8Az1uP++l/wrdorP6zW/mN/wCy8H/z7Rhf8IrY/wDPW4/76X/CoLvwrGIS1pNIZAMhZMEN+IxiukoprFVk78xM8pwcotciR5oQVJBGCOCDQv3hVjUeNTu/+uz/APoRquv3hXuJ3Vz4GpHkk49gb7xq7okElzr2nW8K7pZbqJEXIGSWAA5qk33jWz4P/wCR30D/ALCNv/6MWrjLlaaM3HmjZnpc2h38Fu85jieOMZcwzxybR6kKxIHvSWmh6jfW4ngt8xMcKzuqBj/s7iM/hW59jXTtJ1KcaXdafKYPLV7uXcHDMAyqNq84z69D0qtf6dea0tnc6an2i3W2ji2IwzCyqAysD05yc9Dmvqo4iT3aXn0/P9T5OWHitk35dfy/QyYdJvp76SyW3K3EYLOkjBNoHUksQBT5NIlt5FW7ubS3VgSrGYSg4xx+73Ede4rfEiNfywiVZprfRZYZpFOQXCt374BAz7VyFa06k6j7L+v62M6kIU13/r+upoJpElxKI7G4hvG2lnMW5RGBjli6qAOao67pV7Z6bcpPDjfayujK6srAKSSGBIOMetaWh2MN/dyxyh5GSIvHAjhGmYEfKCfxPrxxS+ITdRabLaTWCWMMdldNFCGJb5omyWyScnA9OnSs61SUeaCd9H67ev6fM0o04y5ZtW1XpuvL9fkeLUUUV8mfXBRRRQAUUUUAKAWIABJPAA71uXXg3X7O0muZ7DakC75kWaNpIl9WjDFlH1HFYYAJAJwPWvQ9U0ufw1a6g+iaMZLRrdom1u4uA4micYYxgEINwOMfMwz60gOVh8J63Ppg1BLE/Z2jaVN0qK7oM5ZUJ3MODyAelVYtD1KdbAw2jy/2gzLahCGMhU4bgcjB9cV2kmveFdRS11DUraymeGzjhks2juROzJGEAVlkEYQkZzwQD0J6s0zV7bRdJ8J3V2m63eC/gcgElA7FN2AQeM84IOM4OaAOT1Lw5qulNALq1H79ikRhlSYMwxlcoT83I4680/UfCutaVbie8siiGQRHZIkhRz0VgpJVuDwcGuhOteG9Fv8ASLuwtLO4u7a+S5llsluETyl/gAmYksTznAxgcnNU7TTdDXXbB7XxKLh5b6NlElpKu1c5zIcfeJwPlDDnqBQBg6ro19olyttqESRTFd2xZUcrzjDbSdpyOhwaR9G1COewgNqxlv41ktUQhjIrMVXAB7kEYPNaPjW3ht/GOqiG8iug91K7GNXHlsZGyh3KMkeoyPQ13cLeK4bTwtPomnQzWa6ZGJZprSMopLuGDTMNyjaRnDDGfegDz608K6zfTXMdvaowtpfJlkNxGsYf+6HLBWPHQE1Vl0TUoUv2mtHj+wMqXQchTGWOACDyckdq6nU38OXsVzokOrDT7Wx1O4mtZTE8sU0T7R1XJ3Ls4JGCD1qaXXND1ZfEFrPqElpHcw2UFrPLCzmTyAFLyBc4yFz6jI64oA48aRfGbT4vI+fUVVrUb1/eAuUHfj5lI5x0qrPBJbXEsEy7ZYnKOuc4IOCOK7wXXhf7b4fmGvOBoaIsn+iSf6VtkMv7rjjlivz7exrh765+26hc3W3b50rSbfTJJx+tAFeiiimAUUUUAFFFFAHpOm2sx8PWt5s/cBY4i+R94pnGOvQGra2Ny0dzJ5LBbYAzbuCmTtHB56mtnwuIbPwHHdXijNvLDNFC4/1rmH5B9OQx9h71c+1pqfhXVr6SQG/EcUVwD1kxKu1/rjg/7o9a8KdJXevdn31LFzUIpLS8Vf1t+nXvbzMn/hGNW3BPJh8wgERi5i3nIyPl3Z79MVUstKvtQlkjtrdmMX+sLEKE/wB4nAH413E+mRTeJYbibR7wx4hY3pm2wjEa/MRtHAxz83Y1gBbjXNGlt7R1kvReyXE8KnBlDAYZQeuCGGO2aJUUn/X+QqWNqTjd26a9Ffvq/wBDHutJvrO4iguLdkebHlnIKvnjhgcH86nuPD99ZhjdG2hVGCyE3MbFOccqpLcewJrUWGTTdOsNPvSFu21FJkh3AtEmMHOOmSRx/s1j69/yMWp/9fcv/oZqJQjFXOinWqVJKKatrrbfXpr/AJnl+qqE1i+VXVwLiQB1zhvmPIyAfzFVF+8Ksal/yFLv/rs//oRquv3hXuw+FH59X/iS9WDfeNWdM/5C1n/13T/0IVWb7xqewkWLUbWRzhUmRifQAitqWk4+pz1Nab9D0yiiivtT4gKKKKACqmp/8gm8/wCuD/8AoJq3VLV5Fj0e8ZzgGJl/EjA/U1FV2py9GaUdakfVHnFFFFfFH24UUUUAFFFFABRRRQAVK9zPLBFBJNI8UOfLjZiVTJycDtk1FRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAehab/yC7T/rin/oIq1VPSnWTSbQqcgRKv4gYP8AKrlfOVPjZ+mYdp0Ytdl+QUUUVBsFFFFAHnmpf8hS7/67P/6Earr94VPfOsuoXMiHKtKzA+oJNQL94V9HD4UfmNdp1JNd2DfeNJTY5FmUMpGe49KftPpVGSZrWfiTULOAQgxyoowvmKSQPqCKsf8ACX6h/wA8bb/vlv8A4qsHafSjafSuqONrxVlNnNLB4eTu4o3v+Ev1D/njbf8AfLf/ABVH/CX6h/zxtv8Avlv/AIqsHafSjafSn9exH87F9Rw38iN7/hL9Q/5423/fLf8AxVZ+o6xeanhZ3UIDkIgwM1R2n0o2n0qJ4utUjyyk2ioYWhTlzRikxKKXafSjafSuc6biUUu0+lG0+lAXEopdp9KNp9KAuJRS7T6UbT6UBcSil2n0o2n0oC4lFLtPpRtPpQFxKKXafSjafSgLiUUu0+lG0+lAXEopdp9KNp9KAuJRS7T6UbT6UBcSil2n0o2n0oC4lFLtPpRtPpQFy7Yatd6cCsLAoTko4yM1e/4Sq+/55W//AHy3+NYm0+lG0+lZSoU5O7R10swxNKPJCbSNv/hKr7/nlb/98t/jR/wlV9/zyt/++W/xrE2n0o2n0qfq1H+U0/tXGf8APxm3/wAJVff88rf/AL5b/GoLvxDfXcJiJjjVhhvLBBI/EmsvafSjafSmsPSTuokzzLFTi4yqOzEpV+8KNp9KZJIsKlmIz2HrWxwtn//Z","force_export_images":false,"pointfilter":false,"theme_simplified":false,"theme_dark":true,"theme_color1":5,"theme_color2":0,"exportFolderPath":"/Users/bob/esp-cpp/esp-box-emu/components/gui/generated","backup_cnt":16,"autosave_cnt":0,"lvgl_version":"8.3.3","callfuncsexport":""} \ No newline at end of file +{"name":"emu.spj","depth":2,"width":320,"height":240,"rotation":0,"offset_x":0,"offset_y":0,"shape":"RECTANGLE","multilang":"DISABLE","description":"","board":"Eclipse with SDL for development on PC","board_version":"v1.0.1","editor_version":"1.3.3","image":"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","force_export_images":false,"flat_export":false,"pointfilter":false,"theme_simplified":false,"theme_dark":true,"theme_color1":5,"theme_color2":0,"exportFolderPath":"/Users/bob/esp-cpp/esp-box-emu/components/gui/generated","projectExportFolderPath":"/Users/bob/esp-cpp/esp-box-emu/components/gui/squareline","backup_cnt":18,"autosave_cnt":0,"lvgl_version":"8.3.3","callfuncsexport":"C_FILE","lvgl_include_path":""} \ No newline at end of file diff --git a/components/gui/squareline/emu.spj b/components/gui/squareline/emu.spj index 99fc7cd8..653add4c 100644 --- a/components/gui/squareline/emu.spj +++ b/components/gui/squareline/emu.spj @@ -1 +1,13715 @@ -{"root":{"guid":"GUID82628138-598591S6601293","cid":null,"coid":0,"cgid":0,"deepid":0,"children":[{"guid":"GUID89464801-598592S871293","cid":null,"coid":0,"cgid":0,"deepid":364291833,"children":[{"guid":"GUID82286227-183715S2401311","cid":null,"coid":0,"cgid":0,"deepid":-1351072138,"children":[{"guid":"GUID63884569-185245S8761311","cid":null,"coid":0,"cgid":0,"deepid":-319034606,"children":[{"guid":"GUID68923071-185741S6911311","cid":null,"coid":0,"cgid":0,"deepid":1744197136,"children":[],"isPage":false,"locked":false,"properties":[{"strtype":"OBJECT/Name","mode":0,"read_only":false,"nid":1942293601,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"Screen1 Label2","closed":false,"childs":[],"InheritedType":10},{"strtype":"OBJECT/Transform","mode":0,"read_only":false,"nid":1975798477,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Position","mode":17,"read_only":false,"nid":-1231183007,"compnid":0,"compmode":0,"integer":0,"intarray":[0,0],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Size","mode":51,"read_only":false,"nid":1714440314,"compnid":0,"compmode":0,"integer":0,"intarray":[1,1],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Align","mode":0,"read_only":false,"nid":704634356,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"CENTER","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Flags","mode":0,"read_only":false,"nid":-1334165268,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Hidden","mode":0,"read_only":false,"nid":313583681,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Clickable","mode":0,"read_only":false,"nid":957604063,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Checkable","mode":0,"read_only":false,"nid":-1480126722,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Press_lock","mode":0,"read_only":false,"nid":-453425063,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Click_focusable","mode":0,"read_only":false,"nid":1721657076,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Adv_hittest","mode":0,"read_only":false,"nid":-72062390,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Ignore_layout","mode":0,"read_only":false,"nid":-755047643,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Floating","mode":0,"read_only":false,"nid":-1027614881,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Event_bubble","mode":0,"read_only":false,"nid":413020367,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Gesture_bubble","mode":0,"read_only":false,"nid":-1154050029,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Snappable","mode":0,"read_only":false,"nid":1355310420,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollable","mode":0,"read_only":false,"nid":-1495176023,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_elastic","mode":0,"read_only":false,"nid":-2137161386,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_momentum","mode":0,"read_only":false,"nid":-1627854740,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_on_focus","mode":0,"read_only":false,"nid":-1139664308,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_chain","mode":0,"read_only":false,"nid":1448754701,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_one","mode":0,"read_only":false,"nid":600279847,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollbar_mode","mode":0,"read_only":false,"nid":-841879350,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"AUTO","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Scroll_direction","mode":0,"read_only":false,"nid":-191194457,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"ALL","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/States","mode":0,"read_only":false,"nid":-2132192277,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Checked","mode":0,"read_only":false,"nid":-206984319,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Disabled","mode":0,"read_only":false,"nid":969287666,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Focused","mode":0,"read_only":false,"nid":-1056382712,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Pressed","mode":0,"read_only":false,"nid":38525807,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"LABEL/Label","mode":0,"read_only":false,"nid":-144208276,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"LABEL/Long_mode","mode":0,"read_only":false,"nid":-1617062804,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"WRAP","closed":false,"childs":[],"InheritedType":3},{"strtype":"LABEL/Text","mode":0,"read_only":false,"nid":1280753114,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"LV_SYMBOL_SETTINGS","closed":false,"childs":[],"InheritedType":10},{"part":"lv.PART.MAIN","childs":[],"strtype":"LABEL/Style_main","mode":0,"read_only":false,"nid":1037011229,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.MAIN, Text, Rectangle, Pad","closed":false,"InheritedType":11},{"strtype":"LABEL/Recolor","mode":0,"read_only":false,"nid":1195103384,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2}],"saved_assetKey":null,"saved_objtypeKey":"LABEL","tree_closed":false}],"isPage":false,"locked":false,"properties":[{"strtype":"OBJECT/Name","mode":0,"read_only":false,"nid":-2111400487,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"settingsbutton","closed":false,"childs":[],"InheritedType":10},{"strtype":"OBJECT/Transform","mode":0,"read_only":false,"nid":-1491849615,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Position","mode":17,"read_only":false,"nid":658246001,"compnid":0,"compmode":0,"integer":0,"intarray":[0,0],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Size","mode":17,"read_only":false,"nid":1765571872,"compnid":0,"compmode":0,"integer":0,"intarray":[48,48],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Align","mode":0,"read_only":false,"nid":2084132336,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"LEFT_MID","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Flags","mode":0,"read_only":false,"nid":-1058539791,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Hidden","mode":0,"read_only":false,"nid":346555591,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Clickable","mode":0,"read_only":false,"nid":-1536957442,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Checkable","mode":0,"read_only":false,"nid":-966001626,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Press_lock","mode":0,"read_only":false,"nid":733180116,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Click_focusable","mode":0,"read_only":false,"nid":87582738,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Adv_hittest","mode":0,"read_only":false,"nid":-1189646698,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Ignore_layout","mode":0,"read_only":false,"nid":1865097933,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Floating","mode":0,"read_only":false,"nid":-104490192,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Event_bubble","mode":0,"read_only":false,"nid":1160577646,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Gesture_bubble","mode":0,"read_only":false,"nid":297904625,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Snappable","mode":0,"read_only":false,"nid":-361458740,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollable","mode":0,"read_only":false,"nid":763997165,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_elastic","mode":0,"read_only":false,"nid":341953729,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_momentum","mode":0,"read_only":false,"nid":-1786163695,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_on_focus","mode":0,"read_only":false,"nid":969361892,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_chain","mode":0,"read_only":false,"nid":-1433169587,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_one","mode":0,"read_only":false,"nid":-1370271325,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollbar_mode","mode":0,"read_only":false,"nid":1187406500,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"AUTO","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Scroll_direction","mode":0,"read_only":false,"nid":87240939,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"ALL","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/States","mode":0,"read_only":false,"nid":-411433075,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Checked","mode":0,"read_only":false,"nid":-478202704,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Disabled","mode":0,"read_only":false,"nid":-1904992918,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Focused","mode":0,"read_only":false,"nid":1904535082,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Pressed","mode":0,"read_only":false,"nid":-939445982,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"part":"lv.PART.MAIN","childs":[],"strtype":"BUTTON/Style_main","mode":0,"read_only":false,"nid":1125857505,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.MAIN, Rectangle, Text","closed":false,"InheritedType":11},{"disabled":false,"strtype":"_event/EventHandler","mode":0,"read_only":false,"nid":467913869,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"CLICKED","closed":false,"childs":[{"strtype":"_custom/name","mode":0,"read_only":false,"nid":73098225,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"settingsbuttonclicked","closed":false,"childs":[],"InheritedType":10},{"strtype":"_custom/condition_C","mode":0,"read_only":false,"nid":899486756,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"","closed":false,"childs":[],"InheritedType":10},{"strtype":"_custom/condition_P","mode":0,"read_only":false,"nid":-1782669218,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"","closed":false,"childs":[],"InheritedType":10},{"strtype":"_event/action","mode":0,"read_only":false,"nid":2122662858,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"CHANGE SCREEN","closed":false,"childs":[{"strtype":"CHANGE SCREEN/Name","mode":0,"read_only":false,"nid":-1501044014,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"CHANGE SCREEN","closed":false,"childs":[],"InheritedType":10},{"strtype":"CHANGE SCREEN/Call","mode":0,"read_only":false,"nid":-283396808,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"ChangeScreen( <{Screen_to}>, lv.SCR_LOAD_ANIM.<{Fade_mode}>, <{Speed}>, <{Delay}>)","closed":false,"childs":[],"InheritedType":10},{"strtype":"CHANGE SCREEN/CallC","mode":0,"read_only":false,"nid":1696615592,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"_ui_screen_change( <{Screen_to}>, LV_SCR_LOAD_ANIM_<{Fade_mode}>, <{Speed}>, <{Delay}>);","closed":false,"childs":[],"InheritedType":10},{"strtype":"CHANGE SCREEN/Screen_to","mode":0,"read_only":false,"nid":-692898442,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"GUID11083184-186700S7241311","closed":false,"childs":[],"InheritedType":9},{"strtype":"CHANGE SCREEN/Fade_mode","mode":0,"read_only":false,"nid":-458747014,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"MOVE_RIGHT","closed":false,"childs":[],"InheritedType":3},{"strtype":"CHANGE SCREEN/Speed","mode":0,"read_only":false,"nid":817725016,"compnid":0,"compmode":0,"integer":100,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":6},{"strtype":"CHANGE SCREEN/Delay","mode":0,"read_only":false,"nid":134033322,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":6}],"InheritedType":10}],"InheritedType":4}],"saved_assetKey":null,"saved_objtypeKey":"BUTTON","tree_closed":false},{"guid":"GUID59992799-185482S6861311","cid":null,"coid":0,"cgid":0,"deepid":-1180335275,"children":[],"isPage":false,"locked":false,"properties":[{"strtype":"OBJECT/Name","mode":0,"read_only":false,"nid":-1290593206,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"Screen1 Label1","closed":false,"childs":[],"InheritedType":10},{"strtype":"OBJECT/Transform","mode":0,"read_only":false,"nid":163870194,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Position","mode":17,"read_only":false,"nid":430154773,"compnid":0,"compmode":0,"integer":0,"intarray":[0,0],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Size","mode":51,"read_only":false,"nid":-655296272,"compnid":0,"compmode":0,"integer":0,"intarray":[1,1],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Align","mode":0,"read_only":false,"nid":2108986733,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"CENTER","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Flags","mode":0,"read_only":false,"nid":-1621394025,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Hidden","mode":0,"read_only":false,"nid":247034819,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Clickable","mode":0,"read_only":false,"nid":1006551844,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Checkable","mode":0,"read_only":false,"nid":308827085,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Press_lock","mode":0,"read_only":false,"nid":-1481357983,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Click_focusable","mode":0,"read_only":false,"nid":-2106251302,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Adv_hittest","mode":0,"read_only":false,"nid":-802226996,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Ignore_layout","mode":0,"read_only":false,"nid":1376466370,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Floating","mode":0,"read_only":false,"nid":1220879529,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Event_bubble","mode":0,"read_only":false,"nid":625738716,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Gesture_bubble","mode":0,"read_only":false,"nid":901383996,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Snappable","mode":0,"read_only":false,"nid":1414017030,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollable","mode":0,"read_only":false,"nid":590586875,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_elastic","mode":0,"read_only":false,"nid":-1900123583,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_momentum","mode":0,"read_only":false,"nid":652011905,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_on_focus","mode":0,"read_only":false,"nid":-1359373998,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_chain","mode":0,"read_only":false,"nid":1709376103,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_one","mode":0,"read_only":false,"nid":556060833,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollbar_mode","mode":0,"read_only":false,"nid":2090948622,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"AUTO","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Scroll_direction","mode":0,"read_only":false,"nid":806115801,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"ALL","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/States","mode":0,"read_only":false,"nid":131074994,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Checked","mode":0,"read_only":false,"nid":-1375148533,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Disabled","mode":0,"read_only":false,"nid":-421645467,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Focused","mode":0,"read_only":false,"nid":1518033214,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Pressed","mode":0,"read_only":false,"nid":-218083494,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"LABEL/Label","mode":0,"read_only":false,"nid":737081825,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"LABEL/Long_mode","mode":0,"read_only":false,"nid":107894546,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"WRAP","closed":false,"childs":[],"InheritedType":3},{"strtype":"LABEL/Text","mode":0,"read_only":false,"nid":1505493626,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"Select Rom","closed":false,"childs":[],"InheritedType":10},{"part":"lv.PART.MAIN","childs":[],"strtype":"LABEL/Style_main","mode":0,"read_only":false,"nid":1764472988,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.MAIN, Text, Rectangle, Pad","closed":false,"InheritedType":11},{"strtype":"LABEL/Recolor","mode":0,"read_only":false,"nid":-295841366,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2}],"saved_assetKey":null,"saved_objtypeKey":"LABEL","tree_closed":false},{"guid":"GUID24964206-186481S2471311","cid":null,"coid":0,"cgid":0,"deepid":-319034606,"children":[{"guid":"GUID29700096-186480S2471311","cid":null,"coid":0,"cgid":0,"deepid":1744197136,"children":[],"isPage":false,"locked":false,"properties":[{"strtype":"OBJECT/Name","mode":0,"read_only":false,"nid":768421321,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"Screen1 Label3","closed":false,"childs":[],"InheritedType":10},{"strtype":"OBJECT/Transform","mode":0,"read_only":false,"nid":61493129,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Position","mode":17,"read_only":false,"nid":-1279143560,"compnid":0,"compmode":0,"integer":0,"intarray":[0,0],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Size","mode":51,"read_only":false,"nid":-1288738998,"compnid":0,"compmode":0,"integer":0,"intarray":[1,1],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Align","mode":0,"read_only":false,"nid":-705584082,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"CENTER","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Flags","mode":0,"read_only":false,"nid":1136535165,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Hidden","mode":0,"read_only":false,"nid":-1775006322,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Clickable","mode":0,"read_only":false,"nid":668105945,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Checkable","mode":0,"read_only":false,"nid":569431364,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Press_lock","mode":0,"read_only":false,"nid":1630764848,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Click_focusable","mode":0,"read_only":false,"nid":-535982790,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Adv_hittest","mode":0,"read_only":false,"nid":-703030184,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Ignore_layout","mode":0,"read_only":false,"nid":-955720851,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Floating","mode":0,"read_only":false,"nid":128209807,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Event_bubble","mode":0,"read_only":false,"nid":-2062981217,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Gesture_bubble","mode":0,"read_only":false,"nid":-100551205,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Snappable","mode":0,"read_only":false,"nid":-813001541,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollable","mode":0,"read_only":false,"nid":315108684,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_elastic","mode":0,"read_only":false,"nid":-114625118,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_momentum","mode":0,"read_only":false,"nid":-1538054804,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_on_focus","mode":0,"read_only":false,"nid":881190556,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_chain","mode":0,"read_only":false,"nid":-2008827562,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_one","mode":0,"read_only":false,"nid":1739255701,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollbar_mode","mode":0,"read_only":false,"nid":926261608,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"AUTO","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Scroll_direction","mode":0,"read_only":false,"nid":1087428325,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"ALL","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/States","mode":0,"read_only":false,"nid":710605013,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Checked","mode":0,"read_only":false,"nid":-1267366761,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Disabled","mode":0,"read_only":false,"nid":-1648789018,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Focused","mode":0,"read_only":false,"nid":-465692407,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Pressed","mode":0,"read_only":false,"nid":259710568,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"LABEL/Label","mode":0,"read_only":false,"nid":-941315432,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"LABEL/Long_mode","mode":0,"read_only":false,"nid":1493802716,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"WRAP","closed":false,"childs":[],"InheritedType":3},{"strtype":"LABEL/Text","mode":0,"read_only":false,"nid":-846609210,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"LV_SYMBOL_PLAY","closed":false,"childs":[],"InheritedType":10},{"part":"lv.PART.MAIN","childs":[],"strtype":"LABEL/Style_main","mode":0,"read_only":false,"nid":-169174998,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.MAIN, Text, Rectangle, Pad","closed":false,"InheritedType":11},{"strtype":"LABEL/Recolor","mode":0,"read_only":false,"nid":1168885217,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2}],"saved_assetKey":null,"saved_objtypeKey":"LABEL","tree_closed":false}],"isPage":false,"locked":false,"properties":[{"strtype":"OBJECT/Name","mode":0,"read_only":false,"nid":1589302611,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"playbutton","closed":false,"childs":[],"InheritedType":10},{"strtype":"OBJECT/Transform","mode":0,"read_only":false,"nid":-675571315,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Position","mode":17,"read_only":false,"nid":483113871,"compnid":0,"compmode":0,"integer":0,"intarray":[0,0],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Size","mode":17,"read_only":false,"nid":1373937859,"compnid":0,"compmode":0,"integer":0,"intarray":[48,48],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Align","mode":0,"read_only":false,"nid":-1350483583,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"RIGHT_MID","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Flags","mode":0,"read_only":false,"nid":-428542643,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Hidden","mode":0,"read_only":false,"nid":-948719095,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Clickable","mode":0,"read_only":false,"nid":-1592351677,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Checkable","mode":0,"read_only":false,"nid":-598750578,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Press_lock","mode":0,"read_only":false,"nid":644485506,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Click_focusable","mode":0,"read_only":false,"nid":1950426769,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Adv_hittest","mode":0,"read_only":false,"nid":175111144,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Ignore_layout","mode":0,"read_only":false,"nid":1026708970,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Floating","mode":0,"read_only":false,"nid":-905245580,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Event_bubble","mode":0,"read_only":false,"nid":-681190793,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Gesture_bubble","mode":0,"read_only":false,"nid":-679540114,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Snappable","mode":0,"read_only":false,"nid":1358169722,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollable","mode":0,"read_only":false,"nid":1314643040,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_elastic","mode":0,"read_only":false,"nid":1738195762,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_momentum","mode":0,"read_only":false,"nid":621111986,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_on_focus","mode":0,"read_only":false,"nid":759167708,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_chain","mode":0,"read_only":false,"nid":1410322306,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_one","mode":0,"read_only":false,"nid":674656452,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollbar_mode","mode":0,"read_only":false,"nid":89186766,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"AUTO","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Scroll_direction","mode":0,"read_only":false,"nid":574920142,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"ALL","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/States","mode":0,"read_only":false,"nid":1732642989,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Checked","mode":0,"read_only":false,"nid":10954893,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Disabled","mode":0,"read_only":false,"nid":1525392534,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Focused","mode":0,"read_only":false,"nid":-1851451361,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Pressed","mode":0,"read_only":false,"nid":872498834,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"part":"lv.PART.MAIN","childs":[],"strtype":"BUTTON/Style_main","mode":0,"read_only":false,"nid":1961753684,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.MAIN, Rectangle, Text","closed":false,"InheritedType":11}],"saved_assetKey":null,"saved_objtypeKey":"BUTTON","tree_closed":false}],"isPage":false,"locked":false,"properties":[{"strtype":"OBJECT/Name","mode":0,"read_only":false,"nid":-2075149394,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"header","closed":false,"childs":[],"InheritedType":10},{"strtype":"OBJECT/Transform","mode":0,"read_only":false,"nid":694045763,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Position","mode":17,"read_only":false,"nid":-1217914541,"compnid":0,"compmode":0,"integer":0,"intarray":[0,0],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Size","mode":18,"read_only":false,"nid":874312949,"compnid":0,"compmode":0,"integer":0,"intarray":[100,75],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Align","mode":0,"read_only":false,"nid":437051860,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"TOP_MID","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Flags","mode":0,"read_only":false,"nid":1441842160,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Hidden","mode":0,"read_only":false,"nid":1959303567,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Clickable","mode":0,"read_only":false,"nid":1809136658,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Checkable","mode":0,"read_only":false,"nid":1189011624,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Press_lock","mode":0,"read_only":false,"nid":-724844703,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Click_focusable","mode":0,"read_only":false,"nid":-3259665,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Adv_hittest","mode":0,"read_only":false,"nid":-2133884457,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Ignore_layout","mode":0,"read_only":false,"nid":1634568808,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Floating","mode":0,"read_only":false,"nid":-1026346933,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Event_bubble","mode":0,"read_only":false,"nid":175907554,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Gesture_bubble","mode":0,"read_only":false,"nid":48882448,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Snappable","mode":0,"read_only":false,"nid":-81820157,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollable","mode":0,"read_only":false,"nid":1633626360,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_elastic","mode":0,"read_only":false,"nid":-427043301,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_momentum","mode":0,"read_only":false,"nid":-949157007,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_on_focus","mode":0,"read_only":false,"nid":1424714686,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_chain","mode":0,"read_only":false,"nid":-153007185,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_one","mode":0,"read_only":false,"nid":-86749051,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollbar_mode","mode":0,"read_only":false,"nid":2073125369,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"AUTO","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Scroll_direction","mode":0,"read_only":false,"nid":1748060483,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"ALL","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/States","mode":0,"read_only":false,"nid":-1081332065,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Checked","mode":0,"read_only":false,"nid":-410497902,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Disabled","mode":0,"read_only":false,"nid":-306248434,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Focused","mode":0,"read_only":false,"nid":709524044,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Pressed","mode":0,"read_only":false,"nid":117979946,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"part":"lv.PART.MAIN","childs":[],"strtype":"PANEL/Style_main","mode":0,"read_only":false,"nid":-1875185321,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.MAIN, Rectangle, Pad, BGimg, Text","closed":false,"InheritedType":11},{"part":"lv.PART.SCROLLBAR","childs":[],"strtype":"PANEL/Style_scrollbar","mode":0,"read_only":false,"nid":1492913670,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.SCROLLBAR, Rectangle, Pad","closed":false,"InheritedType":11}],"saved_assetKey":null,"saved_objtypeKey":"PANEL","tree_closed":false},{"guid":"GUID81773217-184225S9061311","cid":null,"coid":0,"cgid":0,"deepid":-2106017550,"children":[],"isPage":false,"locked":false,"properties":[{"strtype":"OBJECT/Name","mode":0,"read_only":false,"nid":1624090982,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"rompanel","closed":false,"childs":[],"InheritedType":10},{"strtype":"OBJECT/Transform","mode":0,"read_only":false,"nid":-125572465,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Position","mode":17,"read_only":false,"nid":594690190,"compnid":0,"compmode":0,"integer":0,"intarray":[0,0],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Size","mode":17,"read_only":false,"nid":1493274914,"compnid":0,"compmode":0,"integer":0,"intarray":[220,165],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Align","mode":0,"read_only":false,"nid":783565123,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"BOTTOM_LEFT","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Flags","mode":0,"read_only":false,"nid":-478748334,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Hidden","mode":0,"read_only":false,"nid":257378300,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Clickable","mode":0,"read_only":false,"nid":2004092468,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Checkable","mode":0,"read_only":false,"nid":1644180872,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Press_lock","mode":0,"read_only":false,"nid":291669969,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Click_focusable","mode":0,"read_only":false,"nid":-260397889,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Adv_hittest","mode":0,"read_only":false,"nid":1944124269,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Ignore_layout","mode":0,"read_only":false,"nid":-371491316,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Floating","mode":0,"read_only":false,"nid":813645260,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Event_bubble","mode":0,"read_only":false,"nid":793910599,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Gesture_bubble","mode":0,"read_only":false,"nid":1813277656,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Snappable","mode":0,"read_only":false,"nid":1195017156,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollable","mode":0,"read_only":false,"nid":-432638701,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_elastic","mode":0,"read_only":false,"nid":-1348672465,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_momentum","mode":0,"read_only":false,"nid":-332672446,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_on_focus","mode":0,"read_only":false,"nid":555617621,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_chain","mode":0,"read_only":false,"nid":-566057317,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_one","mode":0,"read_only":false,"nid":1251351714,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollbar_mode","mode":0,"read_only":false,"nid":-2118778781,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"AUTO","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Scroll_direction","mode":0,"read_only":false,"nid":-354263957,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"VER","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/States","mode":0,"read_only":false,"nid":-301932538,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Checked","mode":0,"read_only":false,"nid":1206873254,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Disabled","mode":0,"read_only":false,"nid":-1637185019,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Focused","mode":0,"read_only":false,"nid":1591254541,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Pressed","mode":0,"read_only":false,"nid":1123710285,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"part":"lv.PART.MAIN","childs":[],"strtype":"PANEL/Style_main","mode":0,"read_only":false,"nid":514781749,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.MAIN, Rectangle, Pad, BGimg, Text","closed":false,"InheritedType":11},{"part":"lv.PART.SCROLLBAR","childs":[],"strtype":"PANEL/Style_scrollbar","mode":0,"read_only":false,"nid":1493062028,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.SCROLLBAR, Rectangle, Pad","closed":false,"InheritedType":11}],"saved_assetKey":null,"saved_objtypeKey":"PANEL","tree_closed":true},{"guid":"GUID63675663-184735S481311","cid":null,"coid":0,"cgid":0,"deepid":48170148,"children":[{"guid":"GUID7716583-186482S9211311","cid":null,"coid":0,"cgid":0,"deepid":-1378606456,"children":[],"isPage":false,"locked":false,"properties":[{"strtype":"OBJECT/Name","mode":0,"read_only":false,"nid":-1325263398,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"boxart","closed":false,"childs":[],"InheritedType":10},{"strtype":"OBJECT/Transform","mode":0,"read_only":false,"nid":-1769124851,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Position","mode":17,"read_only":false,"nid":1677976762,"compnid":0,"compmode":0,"integer":0,"intarray":[0,0],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Size","mode":49,"read_only":false,"nid":1341462371,"compnid":0,"compmode":0,"integer":0,"intarray":[100,1],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Align","mode":0,"read_only":false,"nid":1530081457,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"CENTER","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Flags","mode":0,"read_only":false,"nid":-769407439,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Hidden","mode":0,"read_only":false,"nid":-643865914,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Clickable","mode":0,"read_only":false,"nid":-31451436,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Checkable","mode":0,"read_only":false,"nid":1742693265,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Press_lock","mode":0,"read_only":false,"nid":1803295509,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Click_focusable","mode":0,"read_only":false,"nid":380313203,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Adv_hittest","mode":0,"read_only":false,"nid":-150309734,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Ignore_layout","mode":0,"read_only":false,"nid":85661470,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Floating","mode":0,"read_only":false,"nid":1836159222,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Event_bubble","mode":0,"read_only":false,"nid":1721090057,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Gesture_bubble","mode":0,"read_only":false,"nid":516700661,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Snappable","mode":0,"read_only":false,"nid":-1796678450,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollable","mode":0,"read_only":false,"nid":-2140042386,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_elastic","mode":0,"read_only":false,"nid":2019659151,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_momentum","mode":0,"read_only":false,"nid":-2139697877,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_on_focus","mode":0,"read_only":false,"nid":-1670965136,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_chain","mode":0,"read_only":false,"nid":-1038645231,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_one","mode":0,"read_only":false,"nid":-357835659,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollbar_mode","mode":0,"read_only":false,"nid":-1012245863,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"AUTO","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Scroll_direction","mode":0,"read_only":false,"nid":2120335945,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"ALL","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/States","mode":0,"read_only":false,"nid":179743376,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Checked","mode":0,"read_only":false,"nid":1923113305,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Disabled","mode":0,"read_only":false,"nid":263541344,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Focused","mode":0,"read_only":false,"nid":-1914598617,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Pressed","mode":0,"read_only":false,"nid":-12125208,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"IMAGE/Image","mode":0,"read_only":false,"nid":1575536526,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"IMAGE/Asset","mode":0,"read_only":false,"nid":-1142835856,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"","closed":false,"childs":[],"InheritedType":5},{"strtype":"IMAGE/Pivot","mode":0,"read_only":false,"nid":703339987,"compnid":0,"compmode":0,"integer":0,"intarray":[0,0],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"IMAGE/Rotation","mode":0,"read_only":false,"nid":-1756705934,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":6},{"strtype":"IMAGE/Scale","mode":0,"read_only":false,"nid":-226171153,"compnid":0,"compmode":0,"integer":256,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":6},{"part":"lv.PART.MAIN","childs":[],"strtype":"IMAGE/Style_main","mode":0,"read_only":false,"nid":1076877138,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.MAIN, Rectangle, Image","closed":false,"InheritedType":11}],"saved_assetKey":null,"saved_objtypeKey":"IMAGE","tree_closed":false}],"isPage":false,"locked":false,"properties":[{"strtype":"OBJECT/Name","mode":0,"read_only":false,"nid":294703303,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"boxartpanel","closed":false,"childs":[],"InheritedType":10},{"strtype":"OBJECT/Transform","mode":0,"read_only":false,"nid":872853391,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Position","mode":17,"read_only":false,"nid":455770362,"compnid":0,"compmode":0,"integer":0,"intarray":[0,0],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Size","mode":17,"read_only":false,"nid":-158282169,"compnid":0,"compmode":0,"integer":0,"intarray":[100,165],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Align","mode":0,"read_only":false,"nid":1019503844,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"BOTTOM_RIGHT","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Flags","mode":0,"read_only":false,"nid":1354946701,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Hidden","mode":0,"read_only":false,"nid":-243373765,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Clickable","mode":0,"read_only":false,"nid":-587210112,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Checkable","mode":0,"read_only":false,"nid":-1679441123,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Press_lock","mode":0,"read_only":false,"nid":-773033394,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Click_focusable","mode":0,"read_only":false,"nid":623122610,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Adv_hittest","mode":0,"read_only":false,"nid":-1975366446,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Ignore_layout","mode":0,"read_only":false,"nid":1295593253,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Floating","mode":0,"read_only":false,"nid":-325372822,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Event_bubble","mode":0,"read_only":false,"nid":1715427747,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Gesture_bubble","mode":0,"read_only":false,"nid":1046772791,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Snappable","mode":0,"read_only":false,"nid":-1039563569,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollable","mode":0,"read_only":false,"nid":1937286848,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_elastic","mode":0,"read_only":false,"nid":-404542164,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_momentum","mode":0,"read_only":false,"nid":-2052092742,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_on_focus","mode":0,"read_only":false,"nid":-1967310733,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_chain","mode":0,"read_only":false,"nid":1791758573,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_one","mode":0,"read_only":false,"nid":904957487,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollbar_mode","mode":0,"read_only":false,"nid":-347743088,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"AUTO","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Scroll_direction","mode":0,"read_only":false,"nid":-1028846612,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"ALL","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/States","mode":0,"read_only":false,"nid":109231300,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Checked","mode":0,"read_only":false,"nid":1411017959,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Disabled","mode":0,"read_only":false,"nid":-1735425352,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Focused","mode":0,"read_only":false,"nid":1475754589,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Pressed","mode":0,"read_only":false,"nid":1417908895,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"part":"lv.PART.MAIN","childs":[],"strtype":"PANEL/Style_main","mode":0,"read_only":false,"nid":-2002851217,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.MAIN, Rectangle, Pad, BGimg, Text","closed":false,"InheritedType":11},{"part":"lv.PART.SCROLLBAR","childs":[],"strtype":"PANEL/Style_scrollbar","mode":0,"read_only":false,"nid":997051013,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.SCROLLBAR, Rectangle, Pad","closed":false,"InheritedType":11}],"saved_assetKey":null,"saved_objtypeKey":"PANEL","tree_closed":true}],"isPage":true,"locked":false,"properties":[{"strtype":"OBJECT/Name","mode":0,"read_only":false,"nid":1804933313,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"romscreen","closed":false,"childs":[],"InheritedType":10},{"strtype":"OBJECT/Transform","mode":0,"read_only":false,"nid":1328335903,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Flags","mode":0,"read_only":false,"nid":-1908819204,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Hidden","mode":0,"read_only":false,"nid":-214781359,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Clickable","mode":0,"read_only":false,"nid":-341688350,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Checkable","mode":0,"read_only":false,"nid":772226476,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Press_lock","mode":0,"read_only":false,"nid":767434551,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Adv_hittest","mode":0,"read_only":false,"nid":-452698219,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Ignore_layout","mode":0,"read_only":false,"nid":1374566889,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollable","mode":0,"read_only":false,"nid":966637495,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_elastic","mode":0,"read_only":false,"nid":724657336,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_momentum","mode":0,"read_only":false,"nid":1501994263,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_one","mode":0,"read_only":false,"nid":908519298,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollbar_mode","mode":0,"read_only":false,"nid":-1689960792,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"AUTO","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Scroll_direction","mode":0,"read_only":false,"nid":-1604203333,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"ALL","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/States","mode":0,"read_only":false,"nid":2074852090,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Checked","mode":0,"read_only":false,"nid":-1342301299,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Focused","mode":0,"read_only":false,"nid":1459892938,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Pressed","mode":0,"read_only":false,"nid":-976176475,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"part":"lv.PART.MAIN","childs":[],"strtype":"SCREEN/Style_main","mode":0,"read_only":false,"nid":-1411917506,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.MAIN, Rectangle, Text","closed":false,"InheritedType":11}],"saved_assetKey":null,"saved_objtypeKey":"SCREEN","tree_closed":true},{"guid":"GUID11083184-186700S7241311","cid":null,"coid":0,"cgid":0,"deepid":-1399510403,"children":[{"guid":"GUID71242329-188602S5821311","cid":null,"coid":0,"cgid":0,"deepid":-1351072138,"children":[{"guid":"GUID93658042-187867S5801311","cid":null,"coid":0,"cgid":0,"deepid":-319034606,"children":[{"guid":"GUID85405414-187866S5801311","cid":null,"coid":0,"cgid":0,"deepid":1744197136,"children":[],"isPage":false,"locked":false,"properties":[{"strtype":"OBJECT/Name","mode":0,"read_only":false,"nid":220131969,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"Screen1 Label4","closed":false,"childs":[],"InheritedType":10},{"strtype":"OBJECT/Transform","mode":0,"read_only":false,"nid":1112630818,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Position","mode":17,"read_only":false,"nid":1626367905,"compnid":0,"compmode":0,"integer":0,"intarray":[0,0],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Size","mode":51,"read_only":false,"nid":639747324,"compnid":0,"compmode":0,"integer":0,"intarray":[1,1],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Align","mode":0,"read_only":false,"nid":-1686432985,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"CENTER","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Flags","mode":0,"read_only":false,"nid":1051888095,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Hidden","mode":0,"read_only":false,"nid":704271868,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Clickable","mode":0,"read_only":false,"nid":-1974207974,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Checkable","mode":0,"read_only":false,"nid":1377847357,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Press_lock","mode":0,"read_only":false,"nid":-1546185118,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Click_focusable","mode":0,"read_only":false,"nid":-710855543,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Adv_hittest","mode":0,"read_only":false,"nid":838112895,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Ignore_layout","mode":0,"read_only":false,"nid":134605401,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Floating","mode":0,"read_only":false,"nid":-93215389,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Event_bubble","mode":0,"read_only":false,"nid":1779474452,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Gesture_bubble","mode":0,"read_only":false,"nid":-377665551,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Snappable","mode":0,"read_only":false,"nid":1265859753,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollable","mode":0,"read_only":false,"nid":260067843,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_elastic","mode":0,"read_only":false,"nid":-874336810,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_momentum","mode":0,"read_only":false,"nid":1470508028,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_on_focus","mode":0,"read_only":false,"nid":-442829360,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_chain","mode":0,"read_only":false,"nid":984279099,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_one","mode":0,"read_only":false,"nid":1152757753,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollbar_mode","mode":0,"read_only":false,"nid":2058336429,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"AUTO","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Scroll_direction","mode":0,"read_only":false,"nid":1068445176,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"ALL","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/States","mode":0,"read_only":false,"nid":-1659170088,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Checked","mode":0,"read_only":false,"nid":1959784332,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Disabled","mode":0,"read_only":false,"nid":1322424022,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Focused","mode":0,"read_only":false,"nid":2057341832,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Pressed","mode":0,"read_only":false,"nid":1245178267,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"LABEL/Label","mode":0,"read_only":false,"nid":-1068509114,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"LABEL/Long_mode","mode":0,"read_only":false,"nid":-1209487334,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"WRAP","closed":false,"childs":[],"InheritedType":3},{"strtype":"LABEL/Text","mode":0,"read_only":false,"nid":-1457966035,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"LV_SYMBOL_CLOSE","closed":false,"childs":[],"InheritedType":10},{"part":"lv.PART.MAIN","childs":[],"strtype":"LABEL/Style_main","mode":0,"read_only":false,"nid":-964379850,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.MAIN, Text, Rectangle, Pad","closed":false,"InheritedType":11},{"strtype":"LABEL/Recolor","mode":0,"read_only":false,"nid":-1347939066,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2}],"saved_assetKey":null,"saved_objtypeKey":"LABEL","tree_closed":false}],"isPage":false,"locked":false,"properties":[{"strtype":"OBJECT/Name","mode":0,"read_only":false,"nid":523231075,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"closebutton","closed":false,"childs":[],"InheritedType":10},{"strtype":"OBJECT/Transform","mode":0,"read_only":false,"nid":-1921569652,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Position","mode":17,"read_only":false,"nid":-1773885538,"compnid":0,"compmode":0,"integer":0,"intarray":[0,0],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Size","mode":17,"read_only":false,"nid":1787045802,"compnid":0,"compmode":0,"integer":0,"intarray":[48,48],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Align","mode":0,"read_only":false,"nid":299487165,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"LEFT_MID","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Flags","mode":0,"read_only":false,"nid":-1536462032,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Hidden","mode":0,"read_only":false,"nid":126225879,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Clickable","mode":0,"read_only":false,"nid":-1680938705,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Checkable","mode":0,"read_only":false,"nid":784482322,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Press_lock","mode":0,"read_only":false,"nid":-1507476349,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Click_focusable","mode":0,"read_only":false,"nid":1482874277,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Adv_hittest","mode":0,"read_only":false,"nid":1288709262,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Ignore_layout","mode":0,"read_only":false,"nid":-2021958142,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Floating","mode":0,"read_only":false,"nid":-548365898,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Event_bubble","mode":0,"read_only":false,"nid":801066566,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Gesture_bubble","mode":0,"read_only":false,"nid":550527123,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Snappable","mode":0,"read_only":false,"nid":1985837284,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollable","mode":0,"read_only":false,"nid":-1344922528,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_elastic","mode":0,"read_only":false,"nid":-713617352,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_momentum","mode":0,"read_only":false,"nid":1215723071,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_on_focus","mode":0,"read_only":false,"nid":644176831,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_chain","mode":0,"read_only":false,"nid":-1036610831,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_one","mode":0,"read_only":false,"nid":1378263982,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollbar_mode","mode":0,"read_only":false,"nid":1129255577,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"AUTO","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Scroll_direction","mode":0,"read_only":false,"nid":-1220332152,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"ALL","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/States","mode":0,"read_only":false,"nid":-376218650,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Checked","mode":0,"read_only":false,"nid":1021845225,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Disabled","mode":0,"read_only":false,"nid":1088971947,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Focused","mode":0,"read_only":false,"nid":-1783938302,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Pressed","mode":0,"read_only":false,"nid":277903052,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"part":"lv.PART.MAIN","childs":[],"strtype":"BUTTON/Style_main","mode":0,"read_only":false,"nid":1693716685,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.MAIN, Rectangle, Text","closed":false,"InheritedType":11},{"disabled":false,"strtype":"_event/EventHandler","mode":0,"read_only":false,"nid":-1515963209,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"CLICKED","closed":false,"childs":[{"strtype":"_custom/name","mode":0,"read_only":false,"nid":-837493316,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"closebuttonclicked","closed":false,"childs":[],"InheritedType":10},{"strtype":"_custom/condition_C","mode":0,"read_only":false,"nid":-1613558854,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"","closed":false,"childs":[],"InheritedType":10},{"strtype":"_custom/condition_P","mode":0,"read_only":false,"nid":113723748,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"","closed":false,"childs":[],"InheritedType":10},{"strtype":"_event/action","mode":0,"read_only":false,"nid":789895350,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"CHANGE SCREEN","closed":false,"childs":[{"strtype":"CHANGE SCREEN/Name","mode":0,"read_only":false,"nid":-744240497,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"CHANGE SCREEN","closed":false,"childs":[],"InheritedType":10},{"strtype":"CHANGE SCREEN/Call","mode":0,"read_only":false,"nid":1353260000,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"ChangeScreen( <{Screen_to}>, lv.SCR_LOAD_ANIM.<{Fade_mode}>, <{Speed}>, <{Delay}>)","closed":false,"childs":[],"InheritedType":10},{"strtype":"CHANGE SCREEN/CallC","mode":0,"read_only":false,"nid":-1411868270,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"_ui_screen_change( <{Screen_to}>, LV_SCR_LOAD_ANIM_<{Fade_mode}>, <{Speed}>, <{Delay}>);","closed":false,"childs":[],"InheritedType":10},{"strtype":"CHANGE SCREEN/Screen_to","mode":0,"read_only":false,"nid":1194108977,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"GUID89464801-598592S871293","closed":false,"childs":[],"InheritedType":9},{"strtype":"CHANGE SCREEN/Fade_mode","mode":0,"read_only":false,"nid":1199658682,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"MOVE_LEFT","closed":false,"childs":[],"InheritedType":3},{"strtype":"CHANGE SCREEN/Speed","mode":0,"read_only":false,"nid":1163567255,"compnid":0,"compmode":0,"integer":100,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":6},{"strtype":"CHANGE SCREEN/Delay","mode":0,"read_only":false,"nid":1059492776,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":6}],"InheritedType":10}],"InheritedType":4}],"saved_assetKey":null,"saved_objtypeKey":"BUTTON","tree_closed":false},{"guid":"GUID6309509-188119S5811311","cid":null,"coid":0,"cgid":0,"deepid":-1180335275,"children":[],"isPage":false,"locked":false,"properties":[{"strtype":"OBJECT/Name","mode":0,"read_only":false,"nid":1510858959,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"Screen1 Label5","closed":false,"childs":[],"InheritedType":10},{"strtype":"OBJECT/Transform","mode":0,"read_only":false,"nid":393675504,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Position","mode":17,"read_only":false,"nid":1452969984,"compnid":0,"compmode":0,"integer":0,"intarray":[0,0],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Size","mode":51,"read_only":false,"nid":-4138425,"compnid":0,"compmode":0,"integer":0,"intarray":[1,1],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Align","mode":0,"read_only":false,"nid":1548006736,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"CENTER","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Flags","mode":0,"read_only":false,"nid":-1650731956,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Hidden","mode":0,"read_only":false,"nid":1944371193,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Clickable","mode":0,"read_only":false,"nid":1613848643,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Checkable","mode":0,"read_only":false,"nid":-489951652,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Press_lock","mode":0,"read_only":false,"nid":1688808660,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Click_focusable","mode":0,"read_only":false,"nid":1852805478,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Adv_hittest","mode":0,"read_only":false,"nid":-1683101901,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Ignore_layout","mode":0,"read_only":false,"nid":1449420883,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Floating","mode":0,"read_only":false,"nid":1128694896,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Event_bubble","mode":0,"read_only":false,"nid":-294309747,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Gesture_bubble","mode":0,"read_only":false,"nid":-746252407,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Snappable","mode":0,"read_only":false,"nid":1516495233,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollable","mode":0,"read_only":false,"nid":-1771450641,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_elastic","mode":0,"read_only":false,"nid":332106176,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_momentum","mode":0,"read_only":false,"nid":-1967322048,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_on_focus","mode":0,"read_only":false,"nid":-1081970217,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_chain","mode":0,"read_only":false,"nid":687442634,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_one","mode":0,"read_only":false,"nid":-800586981,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollbar_mode","mode":0,"read_only":false,"nid":1139538187,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"AUTO","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Scroll_direction","mode":0,"read_only":false,"nid":1431038454,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"ALL","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/States","mode":0,"read_only":false,"nid":773544234,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Checked","mode":0,"read_only":false,"nid":-800857330,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Disabled","mode":0,"read_only":false,"nid":-697414858,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Focused","mode":0,"read_only":false,"nid":-122047763,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Pressed","mode":0,"read_only":false,"nid":-544103514,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"LABEL/Label","mode":0,"read_only":false,"nid":2099318370,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"LABEL/Long_mode","mode":0,"read_only":false,"nid":-1392059186,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"WRAP","closed":false,"childs":[],"InheritedType":3},{"strtype":"LABEL/Text","mode":0,"read_only":false,"nid":1209562768,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"Settings","closed":false,"childs":[],"InheritedType":10},{"part":"lv.PART.MAIN","childs":[],"strtype":"LABEL/Style_main","mode":0,"read_only":false,"nid":1508559270,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.MAIN, Text, Rectangle, Pad","closed":false,"InheritedType":11},{"strtype":"LABEL/Recolor","mode":0,"read_only":false,"nid":748402945,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2}],"saved_assetKey":null,"saved_objtypeKey":"LABEL","tree_closed":false}],"isPage":false,"locked":false,"properties":[{"strtype":"OBJECT/Name","mode":0,"read_only":false,"nid":969798039,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"header1","closed":false,"childs":[],"InheritedType":10},{"strtype":"OBJECT/Transform","mode":0,"read_only":false,"nid":1581082210,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Position","mode":17,"read_only":false,"nid":1826503983,"compnid":0,"compmode":0,"integer":0,"intarray":[0,0],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Size","mode":18,"read_only":false,"nid":-1007318253,"compnid":0,"compmode":0,"integer":0,"intarray":[100,75],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Align","mode":0,"read_only":false,"nid":-977181891,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"TOP_MID","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Flags","mode":0,"read_only":false,"nid":-1247652904,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Hidden","mode":0,"read_only":false,"nid":360104754,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Clickable","mode":0,"read_only":false,"nid":-1238550443,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Checkable","mode":0,"read_only":false,"nid":-873545390,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Press_lock","mode":0,"read_only":false,"nid":-1168285312,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Click_focusable","mode":0,"read_only":false,"nid":-1886953255,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Adv_hittest","mode":0,"read_only":false,"nid":2032672946,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Ignore_layout","mode":0,"read_only":false,"nid":1916457756,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Floating","mode":0,"read_only":false,"nid":-668595607,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Event_bubble","mode":0,"read_only":false,"nid":-1859801446,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Gesture_bubble","mode":0,"read_only":false,"nid":-1769127878,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Snappable","mode":0,"read_only":false,"nid":1970413352,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollable","mode":0,"read_only":false,"nid":902843190,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_elastic","mode":0,"read_only":false,"nid":-84410102,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_momentum","mode":0,"read_only":false,"nid":-1688302573,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_on_focus","mode":0,"read_only":false,"nid":-688003906,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_chain","mode":0,"read_only":false,"nid":-217396211,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_one","mode":0,"read_only":false,"nid":-968116429,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollbar_mode","mode":0,"read_only":false,"nid":-66620511,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"AUTO","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Scroll_direction","mode":0,"read_only":false,"nid":-1934856363,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"ALL","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/States","mode":0,"read_only":false,"nid":850030692,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Checked","mode":0,"read_only":false,"nid":-63130348,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Disabled","mode":0,"read_only":false,"nid":-1735410726,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Focused","mode":0,"read_only":false,"nid":1202133546,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Pressed","mode":0,"read_only":false,"nid":986357925,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"part":"lv.PART.MAIN","childs":[],"strtype":"PANEL/Style_main","mode":0,"read_only":false,"nid":1730033866,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.MAIN, Rectangle, Pad, BGimg, Text","closed":false,"InheritedType":11},{"part":"lv.PART.SCROLLBAR","childs":[],"strtype":"PANEL/Style_scrollbar","mode":0,"read_only":false,"nid":932875600,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.SCROLLBAR, Rectangle, Pad","closed":false,"InheritedType":11}],"saved_assetKey":null,"saved_objtypeKey":"PANEL","tree_closed":false},{"guid":"GUID75257134-188603S6131311","cid":null,"coid":0,"cgid":0,"deepid":1706283088,"children":[{"guid":"GUID91240927-189511S1951311","cid":null,"coid":0,"cgid":0,"deepid":360687305,"children":[{"guid":"GUID52319682-189113S1781311","cid":null,"coid":0,"cgid":0,"deepid":-202353456,"children":[],"isPage":false,"locked":false,"properties":[{"strtype":"OBJECT/Name","mode":0,"read_only":false,"nid":1806376669,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"volumebar","closed":false,"childs":[],"InheritedType":10},{"strtype":"OBJECT/Transform","mode":0,"read_only":false,"nid":111495273,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Position","mode":17,"read_only":false,"nid":-1990081592,"compnid":0,"compmode":0,"integer":0,"intarray":[25,0],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Size","mode":17,"read_only":false,"nid":1631576004,"compnid":0,"compmode":0,"integer":0,"intarray":[130,10],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Align","mode":0,"read_only":false,"nid":346281212,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"CENTER","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Flags","mode":0,"read_only":false,"nid":1822981541,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Hidden","mode":0,"read_only":false,"nid":4292027,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Clickable","mode":0,"read_only":false,"nid":-8206887,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Checkable","mode":0,"read_only":false,"nid":184026762,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Press_lock","mode":0,"read_only":false,"nid":-2113967387,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Click_focusable","mode":0,"read_only":false,"nid":-1429090687,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Adv_hittest","mode":0,"read_only":false,"nid":1428349346,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Ignore_layout","mode":0,"read_only":false,"nid":668149518,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Floating","mode":0,"read_only":false,"nid":-1855530764,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Event_bubble","mode":0,"read_only":false,"nid":-1492531625,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Gesture_bubble","mode":0,"read_only":false,"nid":1553484465,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Snappable","mode":0,"read_only":false,"nid":1321515440,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_on_focus","mode":0,"read_only":false,"nid":-107284910,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/States","mode":0,"read_only":false,"nid":-2029594041,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Checked","mode":0,"read_only":false,"nid":536911714,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Disabled","mode":0,"read_only":false,"nid":-966015859,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Focused","mode":0,"read_only":false,"nid":-1940176824,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Pressed","mode":0,"read_only":false,"nid":676852539,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"BAR/Bar","mode":0,"read_only":false,"nid":-1951628896,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"BAR/Range","mode":0,"read_only":false,"nid":-137659985,"compnid":0,"compmode":0,"integer":0,"intarray":[0,100],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"BAR/Value","mode":0,"read_only":false,"nid":-1703216607,"compnid":0,"compmode":0,"integer":25,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":6},{"part":"lv.PART.MAIN","childs":[],"strtype":"BAR/Style_main","mode":0,"read_only":false,"nid":1818187202,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.MAIN, Rectangle, Pad, Anim1","closed":false,"InheritedType":11},{"part":"lv.PART.INDICATOR","childs":[],"strtype":"BAR/Style_indicator","mode":0,"read_only":false,"nid":1545285503,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.INDICATOR, Rectangle","closed":false,"InheritedType":11},{"strtype":"BAR/Mode","mode":0,"read_only":false,"nid":-788568469,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"NORMAL","closed":false,"childs":[],"InheritedType":3},{"strtype":"BAR/Value_start","mode":0,"read_only":false,"nid":595901786,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":6}],"saved_assetKey":null,"saved_objtypeKey":"BAR","tree_closed":false},{"guid":"GUID39279483-190724S9841311","cid":null,"coid":0,"cgid":0,"deepid":1747205136,"children":[{"guid":"GUID99944086-191235S8571311","cid":null,"coid":0,"cgid":0,"deepid":772475347,"children":[],"isPage":false,"locked":false,"properties":[{"strtype":"OBJECT/Name","mode":0,"read_only":false,"nid":-1930038249,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"settingsscreen Label1","closed":false,"childs":[],"InheritedType":10},{"strtype":"OBJECT/Transform","mode":0,"read_only":false,"nid":727275177,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Position","mode":17,"read_only":false,"nid":1217812799,"compnid":0,"compmode":0,"integer":0,"intarray":[0,0],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Size","mode":51,"read_only":false,"nid":-1569293951,"compnid":0,"compmode":0,"integer":0,"intarray":[1,1],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Align","mode":0,"read_only":false,"nid":-1034285378,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"CENTER","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Flags","mode":0,"read_only":false,"nid":1427950476,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Hidden","mode":0,"read_only":false,"nid":114472909,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Clickable","mode":0,"read_only":false,"nid":863137164,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Checkable","mode":0,"read_only":false,"nid":1564109199,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Press_lock","mode":0,"read_only":false,"nid":1270782612,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Click_focusable","mode":0,"read_only":false,"nid":-1546869336,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Adv_hittest","mode":0,"read_only":false,"nid":2143829452,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Ignore_layout","mode":0,"read_only":false,"nid":-1122946853,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Floating","mode":0,"read_only":false,"nid":-1614310473,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Event_bubble","mode":0,"read_only":false,"nid":356637142,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Gesture_bubble","mode":0,"read_only":false,"nid":-1251302715,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Snappable","mode":0,"read_only":false,"nid":1573807157,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollable","mode":0,"read_only":false,"nid":-1660773874,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_elastic","mode":0,"read_only":false,"nid":1229019489,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_momentum","mode":0,"read_only":false,"nid":1691046641,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_on_focus","mode":0,"read_only":false,"nid":-1419971448,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_chain","mode":0,"read_only":false,"nid":1532357228,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_one","mode":0,"read_only":false,"nid":-1950576810,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollbar_mode","mode":0,"read_only":false,"nid":-1596909560,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"AUTO","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Scroll_direction","mode":0,"read_only":false,"nid":-1191335171,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"ALL","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/States","mode":0,"read_only":false,"nid":-1849663476,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Checked","mode":0,"read_only":false,"nid":80910747,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Disabled","mode":0,"read_only":false,"nid":-792548392,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Focused","mode":0,"read_only":false,"nid":-710030846,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Pressed","mode":0,"read_only":false,"nid":-923396291,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"LABEL/Label","mode":0,"read_only":false,"nid":-180305815,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"LABEL/Long_mode","mode":0,"read_only":false,"nid":991706278,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"WRAP","closed":false,"childs":[],"InheritedType":3},{"strtype":"LABEL/Text","mode":0,"read_only":false,"nid":657855460,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"LV_SYMBOL_MUTE","closed":false,"childs":[],"InheritedType":10},{"part":"lv.PART.MAIN","childs":[],"strtype":"LABEL/Style_main","mode":0,"read_only":false,"nid":-400461348,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.MAIN, Text, Rectangle, Pad","closed":false,"InheritedType":11},{"strtype":"LABEL/Recolor","mode":0,"read_only":false,"nid":-777522670,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2}],"saved_assetKey":null,"saved_objtypeKey":"LABEL","tree_closed":true}],"isPage":false,"locked":false,"properties":[{"strtype":"OBJECT/Name","mode":0,"read_only":false,"nid":1314244594,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"mutebutton","closed":false,"childs":[],"InheritedType":10},{"strtype":"OBJECT/Transform","mode":0,"read_only":false,"nid":2011383751,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Position","mode":17,"read_only":false,"nid":-1606224578,"compnid":0,"compmode":0,"integer":0,"intarray":[0,0],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Size","mode":17,"read_only":false,"nid":-1850645733,"compnid":0,"compmode":0,"integer":0,"intarray":[32,32],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Align","mode":0,"read_only":false,"nid":1567052015,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"LEFT_MID","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Flags","mode":0,"read_only":false,"nid":2032998091,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Hidden","mode":0,"read_only":false,"nid":1316352421,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Clickable","mode":0,"read_only":false,"nid":-1567560698,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Checkable","mode":0,"read_only":false,"nid":-352891432,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Press_lock","mode":0,"read_only":false,"nid":-424967916,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Click_focusable","mode":0,"read_only":false,"nid":139271125,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Adv_hittest","mode":0,"read_only":false,"nid":1331076241,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Ignore_layout","mode":0,"read_only":false,"nid":453208867,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Floating","mode":0,"read_only":false,"nid":2132295609,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Event_bubble","mode":0,"read_only":false,"nid":1305038990,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Gesture_bubble","mode":0,"read_only":false,"nid":704389032,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Snappable","mode":0,"read_only":false,"nid":1253325469,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollable","mode":0,"read_only":false,"nid":-564890079,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_elastic","mode":0,"read_only":false,"nid":-425994999,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_momentum","mode":0,"read_only":false,"nid":-365006970,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_on_focus","mode":0,"read_only":false,"nid":1347643693,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_chain","mode":0,"read_only":false,"nid":1348549192,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_one","mode":0,"read_only":false,"nid":-1651658965,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollbar_mode","mode":0,"read_only":false,"nid":-952810438,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"AUTO","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Scroll_direction","mode":0,"read_only":false,"nid":217474460,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"ALL","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/States","mode":0,"read_only":false,"nid":976981262,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Checked","mode":0,"read_only":false,"nid":-764514508,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Disabled","mode":0,"read_only":false,"nid":-1264052488,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Focused","mode":0,"read_only":false,"nid":1550315557,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Pressed","mode":0,"read_only":false,"nid":1042146404,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"part":"lv.PART.MAIN","childs":[],"strtype":"BUTTON/Style_main","mode":0,"read_only":false,"nid":1025397561,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.MAIN, Rectangle, Text","closed":false,"InheritedType":11}],"saved_assetKey":null,"saved_objtypeKey":"BUTTON","tree_closed":false},{"guid":"GUID70689077-190021S101311","cid":null,"coid":0,"cgid":0,"deepid":1974200836,"children":[{"guid":"GUID56706892-191487S6101311","cid":null,"coid":0,"cgid":0,"deepid":772475347,"children":[],"isPage":false,"locked":false,"properties":[{"strtype":"OBJECT/Name","mode":0,"read_only":false,"nid":1911332451,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"settingsscreen Label2","closed":false,"childs":[],"InheritedType":10},{"strtype":"OBJECT/Transform","mode":0,"read_only":false,"nid":727625556,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Position","mode":17,"read_only":false,"nid":1865084510,"compnid":0,"compmode":0,"integer":0,"intarray":[0,0],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Size","mode":51,"read_only":false,"nid":-944066216,"compnid":0,"compmode":0,"integer":0,"intarray":[1,1],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Align","mode":0,"read_only":false,"nid":-1937637338,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"CENTER","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Flags","mode":0,"read_only":false,"nid":1649159456,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Hidden","mode":0,"read_only":false,"nid":-1625138221,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Clickable","mode":0,"read_only":false,"nid":1544516067,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Checkable","mode":0,"read_only":false,"nid":1747243890,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Press_lock","mode":0,"read_only":false,"nid":570465972,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Click_focusable","mode":0,"read_only":false,"nid":-1522545778,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Adv_hittest","mode":0,"read_only":false,"nid":-134510517,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Ignore_layout","mode":0,"read_only":false,"nid":-4916114,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Floating","mode":0,"read_only":false,"nid":2103578648,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Event_bubble","mode":0,"read_only":false,"nid":1020231027,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Gesture_bubble","mode":0,"read_only":false,"nid":-1022920755,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Snappable","mode":0,"read_only":false,"nid":-1071647246,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollable","mode":0,"read_only":false,"nid":1796043576,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_elastic","mode":0,"read_only":false,"nid":1164169774,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_momentum","mode":0,"read_only":false,"nid":1180255750,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_on_focus","mode":0,"read_only":false,"nid":-1014042856,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_chain","mode":0,"read_only":false,"nid":-563926185,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_one","mode":0,"read_only":false,"nid":1571691970,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollbar_mode","mode":0,"read_only":false,"nid":1969626086,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"AUTO","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Scroll_direction","mode":0,"read_only":false,"nid":1278583339,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"ALL","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/States","mode":0,"read_only":false,"nid":-1419625726,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Checked","mode":0,"read_only":false,"nid":1737166595,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Disabled","mode":0,"read_only":false,"nid":-1845941990,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Focused","mode":0,"read_only":false,"nid":449414225,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Pressed","mode":0,"read_only":false,"nid":914365736,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"LABEL/Label","mode":0,"read_only":false,"nid":1930619190,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"LABEL/Long_mode","mode":0,"read_only":false,"nid":226095567,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"WRAP","closed":false,"childs":[],"InheritedType":3},{"strtype":"LABEL/Text","mode":0,"read_only":false,"nid":-1885892812,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"LV_SYMBOL_VOLUME_MID","closed":false,"childs":[],"InheritedType":10},{"part":"lv.PART.MAIN","childs":[],"strtype":"LABEL/Style_main","mode":0,"read_only":false,"nid":-656991961,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.MAIN, Text, Rectangle, Pad","closed":false,"InheritedType":11},{"strtype":"LABEL/Recolor","mode":0,"read_only":false,"nid":-523790132,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2}],"saved_assetKey":null,"saved_objtypeKey":"LABEL","tree_closed":true}],"isPage":false,"locked":false,"properties":[{"strtype":"OBJECT/Name","mode":0,"read_only":false,"nid":-746253711,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"volumedownbutton","closed":false,"childs":[],"InheritedType":10},{"strtype":"OBJECT/Transform","mode":0,"read_only":false,"nid":1166350434,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Position","mode":17,"read_only":false,"nid":-1791561707,"compnid":0,"compmode":0,"integer":0,"intarray":[52,0],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Size","mode":17,"read_only":false,"nid":-1594956429,"compnid":0,"compmode":0,"integer":0,"intarray":[32,32],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Align","mode":0,"read_only":false,"nid":1017266635,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"LEFT_MID","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Flags","mode":0,"read_only":false,"nid":-815408647,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Hidden","mode":0,"read_only":false,"nid":-1680791222,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Clickable","mode":0,"read_only":false,"nid":-1715200079,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Checkable","mode":0,"read_only":false,"nid":-1329704091,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Press_lock","mode":0,"read_only":false,"nid":-2060547337,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Click_focusable","mode":0,"read_only":false,"nid":1383511263,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Adv_hittest","mode":0,"read_only":false,"nid":314555331,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Ignore_layout","mode":0,"read_only":false,"nid":-595472266,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Floating","mode":0,"read_only":false,"nid":601311889,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Event_bubble","mode":0,"read_only":false,"nid":-385306667,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Gesture_bubble","mode":0,"read_only":false,"nid":-2011816227,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Snappable","mode":0,"read_only":false,"nid":689963481,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollable","mode":0,"read_only":false,"nid":1679703758,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_elastic","mode":0,"read_only":false,"nid":-351632952,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_momentum","mode":0,"read_only":false,"nid":-217333946,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_on_focus","mode":0,"read_only":false,"nid":1169521470,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_chain","mode":0,"read_only":false,"nid":-1542823923,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_one","mode":0,"read_only":false,"nid":1369949633,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollbar_mode","mode":0,"read_only":false,"nid":-602771881,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"AUTO","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Scroll_direction","mode":0,"read_only":false,"nid":-165877659,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"ALL","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/States","mode":0,"read_only":false,"nid":670891205,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Checked","mode":0,"read_only":false,"nid":1454352202,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Disabled","mode":0,"read_only":false,"nid":1993249019,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Focused","mode":0,"read_only":false,"nid":1754361429,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Pressed","mode":0,"read_only":false,"nid":-961791522,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"part":"lv.PART.MAIN","childs":[],"strtype":"BUTTON/Style_main","mode":0,"read_only":false,"nid":-1856289680,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.MAIN, Rectangle, Text","closed":false,"InheritedType":11}],"saved_assetKey":null,"saved_objtypeKey":"BUTTON","tree_closed":false},{"guid":"GUID20371102-190258S611311","cid":null,"coid":0,"cgid":0,"deepid":1747205136,"children":[{"guid":"GUID63125033-190725S2991311","cid":null,"coid":0,"cgid":0,"deepid":772475347,"children":[],"isPage":false,"locked":false,"properties":[{"strtype":"OBJECT/Name","mode":0,"read_only":false,"nid":-142981181,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"settingsscreen Label3","closed":false,"childs":[],"InheritedType":10},{"strtype":"OBJECT/Transform","mode":0,"read_only":false,"nid":-322276688,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Position","mode":17,"read_only":false,"nid":1182201210,"compnid":0,"compmode":0,"integer":0,"intarray":[0,0],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Size","mode":51,"read_only":false,"nid":-626021048,"compnid":0,"compmode":0,"integer":0,"intarray":[1,1],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Align","mode":0,"read_only":false,"nid":323591277,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"CENTER","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Flags","mode":0,"read_only":false,"nid":1806436848,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Hidden","mode":0,"read_only":false,"nid":2052886501,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Clickable","mode":0,"read_only":false,"nid":-756145973,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Checkable","mode":0,"read_only":false,"nid":102261043,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Press_lock","mode":0,"read_only":false,"nid":1925839109,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Click_focusable","mode":0,"read_only":false,"nid":-104060684,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Adv_hittest","mode":0,"read_only":false,"nid":-1743780865,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Ignore_layout","mode":0,"read_only":false,"nid":-2074545012,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Floating","mode":0,"read_only":false,"nid":1335630866,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Event_bubble","mode":0,"read_only":false,"nid":1574073009,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Gesture_bubble","mode":0,"read_only":false,"nid":-1410644096,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Snappable","mode":0,"read_only":false,"nid":-307985432,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollable","mode":0,"read_only":false,"nid":-1941627508,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_elastic","mode":0,"read_only":false,"nid":-1813005716,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_momentum","mode":0,"read_only":false,"nid":-1757119516,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_on_focus","mode":0,"read_only":false,"nid":1958885368,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_chain","mode":0,"read_only":false,"nid":-917609384,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_one","mode":0,"read_only":false,"nid":-1233948796,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollbar_mode","mode":0,"read_only":false,"nid":-784485020,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"AUTO","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Scroll_direction","mode":0,"read_only":false,"nid":-220079138,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"ALL","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/States","mode":0,"read_only":false,"nid":1577768451,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Checked","mode":0,"read_only":false,"nid":77636456,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Disabled","mode":0,"read_only":false,"nid":-900778478,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Focused","mode":0,"read_only":false,"nid":-372703794,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Pressed","mode":0,"read_only":false,"nid":2052347946,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"LABEL/Label","mode":0,"read_only":false,"nid":-1169275378,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"LABEL/Long_mode","mode":0,"read_only":false,"nid":-922162139,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"WRAP","closed":false,"childs":[],"InheritedType":3},{"strtype":"LABEL/Text","mode":0,"read_only":false,"nid":-137675359,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"LV_SYMBOL_VOLUME_MAX","closed":false,"childs":[],"InheritedType":10},{"part":"lv.PART.MAIN","childs":[],"strtype":"LABEL/Style_main","mode":0,"read_only":false,"nid":1316225288,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.MAIN, Text, Rectangle, Pad","closed":false,"InheritedType":11},{"strtype":"LABEL/Recolor","mode":0,"read_only":false,"nid":768272301,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2}],"saved_assetKey":null,"saved_objtypeKey":"LABEL","tree_closed":true}],"isPage":false,"locked":false,"properties":[{"strtype":"OBJECT/Name","mode":0,"read_only":false,"nid":-1705231511,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"volumeupbutton","closed":false,"childs":[],"InheritedType":10},{"strtype":"OBJECT/Transform","mode":0,"read_only":false,"nid":-1571273727,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Position","mode":17,"read_only":false,"nid":-1424554210,"compnid":0,"compmode":0,"integer":0,"intarray":[0,0],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Size","mode":17,"read_only":false,"nid":-1155548983,"compnid":0,"compmode":0,"integer":0,"intarray":[32,32],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Align","mode":0,"read_only":false,"nid":-2081178700,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"RIGHT_MID","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Flags","mode":0,"read_only":false,"nid":240348769,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Hidden","mode":0,"read_only":false,"nid":935377156,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Clickable","mode":0,"read_only":false,"nid":825900336,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Checkable","mode":0,"read_only":false,"nid":-567562748,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Press_lock","mode":0,"read_only":false,"nid":1938984707,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Click_focusable","mode":0,"read_only":false,"nid":371394221,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Adv_hittest","mode":0,"read_only":false,"nid":-1152434413,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Ignore_layout","mode":0,"read_only":false,"nid":-727175755,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Floating","mode":0,"read_only":false,"nid":-1897018523,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Event_bubble","mode":0,"read_only":false,"nid":-1574630580,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Gesture_bubble","mode":0,"read_only":false,"nid":-194209759,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Snappable","mode":0,"read_only":false,"nid":-948805450,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollable","mode":0,"read_only":false,"nid":-265584907,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_elastic","mode":0,"read_only":false,"nid":-1570739697,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_momentum","mode":0,"read_only":false,"nid":278200667,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_on_focus","mode":0,"read_only":false,"nid":791786176,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_chain","mode":0,"read_only":false,"nid":-1005994103,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_one","mode":0,"read_only":false,"nid":1299168848,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollbar_mode","mode":0,"read_only":false,"nid":1764176376,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"AUTO","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Scroll_direction","mode":0,"read_only":false,"nid":-1979981796,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"ALL","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/States","mode":0,"read_only":false,"nid":-1957502173,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Checked","mode":0,"read_only":false,"nid":477768546,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Disabled","mode":0,"read_only":false,"nid":-690279378,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Focused","mode":0,"read_only":false,"nid":1770308251,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Pressed","mode":0,"read_only":false,"nid":-319824094,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"part":"lv.PART.MAIN","childs":[],"strtype":"BUTTON/Style_main","mode":0,"read_only":false,"nid":-981339932,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.MAIN, Rectangle, Text","closed":false,"InheritedType":11}],"saved_assetKey":null,"saved_objtypeKey":"BUTTON","tree_closed":false}],"isPage":false,"locked":false,"properties":[{"strtype":"OBJECT/Name","mode":0,"read_only":false,"nid":1622370266,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"volumepanel","closed":false,"childs":[],"InheritedType":10},{"strtype":"OBJECT/Transform","mode":0,"read_only":false,"nid":-40984885,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Position","mode":17,"read_only":false,"nid":-1530809409,"compnid":0,"compmode":0,"integer":0,"intarray":[0,0],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Size","mode":18,"read_only":false,"nid":-449850928,"compnid":0,"compmode":0,"integer":0,"intarray":[100,50],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Align","mode":0,"read_only":false,"nid":-1328915473,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"TOP_MID","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Flags","mode":0,"read_only":false,"nid":-38472910,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Hidden","mode":0,"read_only":false,"nid":-2070226347,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Clickable","mode":0,"read_only":false,"nid":-1039718249,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Checkable","mode":0,"read_only":false,"nid":-1984946195,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Press_lock","mode":0,"read_only":false,"nid":-357265162,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Click_focusable","mode":0,"read_only":false,"nid":-1423310606,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Adv_hittest","mode":0,"read_only":false,"nid":680677753,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Ignore_layout","mode":0,"read_only":false,"nid":-1919299339,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Floating","mode":0,"read_only":false,"nid":1959043473,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Event_bubble","mode":0,"read_only":false,"nid":-1101057787,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Gesture_bubble","mode":0,"read_only":false,"nid":659031435,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Snappable","mode":0,"read_only":false,"nid":832573248,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollable","mode":0,"read_only":false,"nid":-1030948237,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_elastic","mode":0,"read_only":false,"nid":-1209319722,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_momentum","mode":0,"read_only":false,"nid":847928562,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_on_focus","mode":0,"read_only":false,"nid":-66310528,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_chain","mode":0,"read_only":false,"nid":-586328854,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_one","mode":0,"read_only":false,"nid":-1467473907,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollbar_mode","mode":0,"read_only":false,"nid":-779691917,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"AUTO","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Scroll_direction","mode":0,"read_only":false,"nid":-396414551,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"ALL","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/States","mode":0,"read_only":false,"nid":-1835541357,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Checked","mode":0,"read_only":false,"nid":1862865437,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Disabled","mode":0,"read_only":false,"nid":-1176463440,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Focused","mode":0,"read_only":false,"nid":1781783900,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Pressed","mode":0,"read_only":false,"nid":-613627066,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"part":"lv.PART.MAIN","childs":[],"strtype":"PANEL/Style_main","mode":0,"read_only":false,"nid":-1420950959,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.MAIN, Rectangle, Pad, BGimg, Text","closed":false,"InheritedType":11},{"part":"lv.PART.SCROLLBAR","childs":[],"strtype":"PANEL/Style_scrollbar","mode":0,"read_only":false,"nid":847802074,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.SCROLLBAR, Rectangle, Pad","closed":false,"InheritedType":11}],"saved_assetKey":null,"saved_objtypeKey":"PANEL","tree_closed":true},{"guid":"GUID67721423-285518S3301318","cid":null,"coid":0,"cgid":0,"deepid":360687305,"children":[{"guid":"GUID80601172-285828S1941318","cid":null,"coid":0,"cgid":0,"deepid":1216628497,"children":[],"isPage":false,"locked":false,"properties":[{"strtype":"OBJECT/Name","mode":0,"read_only":false,"nid":-395336962,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"settingsscreen Label4","closed":false,"childs":[],"InheritedType":10},{"strtype":"OBJECT/Transform","mode":0,"read_only":false,"nid":-198484168,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Position","mode":17,"read_only":false,"nid":-377503218,"compnid":0,"compmode":0,"integer":0,"intarray":[0,0],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Size","mode":51,"read_only":false,"nid":2118515430,"compnid":0,"compmode":0,"integer":0,"intarray":[1,1],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Align","mode":0,"read_only":false,"nid":566413322,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"LEFT_MID","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Flags","mode":0,"read_only":false,"nid":1779534618,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Hidden","mode":0,"read_only":false,"nid":1147394038,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Clickable","mode":0,"read_only":false,"nid":-129110230,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Checkable","mode":0,"read_only":false,"nid":1925633316,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Press_lock","mode":0,"read_only":false,"nid":-713886646,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Click_focusable","mode":0,"read_only":false,"nid":-379591550,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Adv_hittest","mode":0,"read_only":false,"nid":-1937628540,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Ignore_layout","mode":0,"read_only":false,"nid":1295592968,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Floating","mode":0,"read_only":false,"nid":-1336255532,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Event_bubble","mode":0,"read_only":false,"nid":1487418135,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Gesture_bubble","mode":0,"read_only":false,"nid":-1795825425,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Snappable","mode":0,"read_only":false,"nid":-1920953482,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollable","mode":0,"read_only":false,"nid":950672431,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_elastic","mode":0,"read_only":false,"nid":1023908935,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_momentum","mode":0,"read_only":false,"nid":-120323443,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_on_focus","mode":0,"read_only":false,"nid":-1156019654,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_chain","mode":0,"read_only":false,"nid":-262425959,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_one","mode":0,"read_only":false,"nid":905269254,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollbar_mode","mode":0,"read_only":false,"nid":-1795609789,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"AUTO","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Scroll_direction","mode":0,"read_only":false,"nid":1493745311,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"ALL","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/States","mode":0,"read_only":false,"nid":22978483,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Checked","mode":0,"read_only":false,"nid":1007100097,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Disabled","mode":0,"read_only":false,"nid":2019162393,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Focused","mode":0,"read_only":false,"nid":-1349845479,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Pressed","mode":0,"read_only":false,"nid":272546033,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"LABEL/Label","mode":0,"read_only":false,"nid":1958402874,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"LABEL/Long_mode","mode":0,"read_only":false,"nid":-907239616,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"WRAP","closed":false,"childs":[],"InheritedType":3},{"strtype":"LABEL/Text","mode":0,"read_only":false,"nid":-461244078,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"Video Scaling","closed":false,"childs":[],"InheritedType":10},{"part":"lv.PART.MAIN","childs":[],"strtype":"LABEL/Style_main","mode":0,"read_only":false,"nid":557783208,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.MAIN, Text, Rectangle, Pad","closed":false,"InheritedType":11},{"strtype":"LABEL/Recolor","mode":0,"read_only":false,"nid":-1308994622,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2}],"saved_assetKey":null,"saved_objtypeKey":"LABEL","tree_closed":false},{"guid":"GUID98772757-285519S9071318","cid":null,"coid":0,"cgid":0,"deepid":215144840,"children":[],"isPage":false,"locked":false,"properties":[{"strtype":"OBJECT/Name","mode":0,"read_only":false,"nid":-1499105916,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"videosettingdropdown","closed":false,"childs":[],"InheritedType":10},{"strtype":"OBJECT/Transform","mode":0,"read_only":false,"nid":939309185,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Position","mode":17,"read_only":false,"nid":-337171154,"compnid":0,"compmode":0,"integer":0,"intarray":[0,0],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Size","mode":49,"read_only":false,"nid":-267115516,"compnid":0,"compmode":0,"integer":0,"intarray":[100,1],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Align","mode":0,"read_only":false,"nid":-487006894,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"RIGHT_MID","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Flags","mode":0,"read_only":false,"nid":-948410111,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Hidden","mode":0,"read_only":false,"nid":-1264268199,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Clickable","mode":0,"read_only":false,"nid":-692374100,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Checkable","mode":0,"read_only":false,"nid":871278040,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Press_lock","mode":0,"read_only":false,"nid":939319439,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Click_focusable","mode":0,"read_only":false,"nid":-528485012,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Adv_hittest","mode":0,"read_only":false,"nid":1878778983,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Ignore_layout","mode":0,"read_only":false,"nid":1190592755,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Floating","mode":0,"read_only":false,"nid":-143168306,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Event_bubble","mode":0,"read_only":false,"nid":446211051,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Gesture_bubble","mode":0,"read_only":false,"nid":790137269,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Snappable","mode":0,"read_only":false,"nid":1572284371,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollable","mode":0,"read_only":false,"nid":-1639493359,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_elastic","mode":0,"read_only":false,"nid":1659802642,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_momentum","mode":0,"read_only":false,"nid":-2086235259,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_on_focus","mode":0,"read_only":false,"nid":194986278,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_chain","mode":0,"read_only":false,"nid":1946057639,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_one","mode":0,"read_only":false,"nid":-348276397,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollbar_mode","mode":0,"read_only":false,"nid":-676475654,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"AUTO","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Scroll_direction","mode":0,"read_only":false,"nid":-331178092,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"ALL","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/States","mode":0,"read_only":false,"nid":-449720306,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Checked","mode":0,"read_only":false,"nid":-184201546,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Disabled","mode":0,"read_only":false,"nid":503508826,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Focused","mode":0,"read_only":false,"nid":1867699625,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Pressed","mode":0,"read_only":false,"nid":-1504211368,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"DROPDOWN/Label","mode":0,"read_only":false,"nid":1723195836,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"DROPDOWN/Options","mode":0,"read_only":false,"nid":1851623158,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"Original\\nFit\\nFill","closed":false,"childs":[],"InheritedType":10},{"strtype":"DROPDOWN/List_align","mode":0,"read_only":false,"nid":-607934791,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"BOTTOM","closed":false,"childs":[],"InheritedType":3},{"strtype":"DROPDOWN/Show_selected","mode":0,"read_only":false,"nid":1357876550,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"DROPDOWN/Base_text","mode":0,"read_only":false,"nid":1860739319,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"","closed":false,"childs":[],"InheritedType":10},{"part":"lv.PART.MAIN","childs":[],"strtype":"DROPDOWN/Style_main","mode":0,"read_only":false,"nid":-1089257542,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.MAIN, Text, Rectangle, Pad","closed":false,"InheritedType":11},{"part":"lv.PART.INDICATOR","childs":[],"strtype":"DROPDOWN/Style_indicator","mode":0,"read_only":false,"nid":1119332532,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.INDICATOR, Text","closed":false,"InheritedType":11}],"saved_assetKey":null,"saved_objtypeKey":"DROPDOWN","tree_closed":false}],"isPage":false,"locked":false,"properties":[{"strtype":"OBJECT/Name","mode":0,"read_only":false,"nid":310569747,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"fillpanel","closed":false,"childs":[],"InheritedType":10},{"strtype":"OBJECT/Transform","mode":0,"read_only":false,"nid":-780618510,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Position","mode":17,"read_only":false,"nid":-279061413,"compnid":0,"compmode":0,"integer":0,"intarray":[0,60],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Size","mode":18,"read_only":false,"nid":-1205435750,"compnid":0,"compmode":0,"integer":0,"intarray":[100,50],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Align","mode":0,"read_only":false,"nid":-276443251,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"TOP_MID","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Flags","mode":0,"read_only":false,"nid":82719897,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Hidden","mode":0,"read_only":false,"nid":1778830101,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Clickable","mode":0,"read_only":false,"nid":1529010867,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Checkable","mode":0,"read_only":false,"nid":-894953894,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Press_lock","mode":0,"read_only":false,"nid":73407229,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Click_focusable","mode":0,"read_only":false,"nid":1115198411,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Adv_hittest","mode":0,"read_only":false,"nid":2017630228,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Ignore_layout","mode":0,"read_only":false,"nid":-952891307,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Floating","mode":0,"read_only":false,"nid":-244049172,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Event_bubble","mode":0,"read_only":false,"nid":829724295,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Gesture_bubble","mode":0,"read_only":false,"nid":44394886,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Snappable","mode":0,"read_only":false,"nid":248119940,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollable","mode":0,"read_only":false,"nid":-1344742211,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_elastic","mode":0,"read_only":false,"nid":257047744,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_momentum","mode":0,"read_only":false,"nid":-1259320433,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_on_focus","mode":0,"read_only":false,"nid":1447439479,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_chain","mode":0,"read_only":false,"nid":-1294387385,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_one","mode":0,"read_only":false,"nid":2124492668,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollbar_mode","mode":0,"read_only":false,"nid":-2000946347,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"AUTO","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Scroll_direction","mode":0,"read_only":false,"nid":2125641182,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"ALL","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/States","mode":0,"read_only":false,"nid":1501535119,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Checked","mode":0,"read_only":false,"nid":-191002638,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Disabled","mode":0,"read_only":false,"nid":1997098738,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Focused","mode":0,"read_only":false,"nid":-1732710412,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Pressed","mode":0,"read_only":false,"nid":-209806177,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"part":"lv.PART.MAIN","childs":[],"strtype":"PANEL/Style_main","mode":0,"read_only":false,"nid":1248955287,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.MAIN, Rectangle, Pad, BGimg, Text","closed":false,"InheritedType":11},{"part":"lv.PART.SCROLLBAR","childs":[],"strtype":"PANEL/Style_scrollbar","mode":0,"read_only":false,"nid":480727559,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.SCROLLBAR, Rectangle, Pad","closed":false,"InheritedType":11}],"saved_assetKey":null,"saved_objtypeKey":"PANEL","tree_closed":true},{"guid":"GUID68530106-985878S8011333","cid":null,"coid":0,"cgid":0,"deepid":360687305,"children":[{"guid":"GUID77011862-985581S8001333","cid":null,"coid":0,"cgid":0,"deepid":1216628497,"children":[],"isPage":false,"locked":false,"properties":[{"strtype":"OBJECT/Name","mode":0,"read_only":false,"nid":108161869,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"settingsscreen Label5","closed":false,"childs":[],"InheritedType":10},{"strtype":"OBJECT/Transform","mode":0,"read_only":false,"nid":938526526,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Position","mode":17,"read_only":false,"nid":-2112264570,"compnid":0,"compmode":0,"integer":0,"intarray":[0,0],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Size","mode":51,"read_only":false,"nid":1825213937,"compnid":0,"compmode":0,"integer":0,"intarray":[1,1],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Align","mode":0,"read_only":false,"nid":1605176069,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"LEFT_MID","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Flags","mode":0,"read_only":false,"nid":-823371061,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Hidden","mode":0,"read_only":false,"nid":-2037090573,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Clickable","mode":0,"read_only":false,"nid":-268920215,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Checkable","mode":0,"read_only":false,"nid":582384967,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Press_lock","mode":0,"read_only":false,"nid":54313431,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Click_focusable","mode":0,"read_only":false,"nid":1040981925,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Adv_hittest","mode":0,"read_only":false,"nid":-2039680426,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Ignore_layout","mode":0,"read_only":false,"nid":1512460223,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Floating","mode":0,"read_only":false,"nid":-690487349,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Event_bubble","mode":0,"read_only":false,"nid":-476224623,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Gesture_bubble","mode":0,"read_only":false,"nid":-1692148584,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Snappable","mode":0,"read_only":false,"nid":-1492788393,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollable","mode":0,"read_only":false,"nid":1074613893,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_elastic","mode":0,"read_only":false,"nid":1006210209,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_momentum","mode":0,"read_only":false,"nid":-1502839038,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_on_focus","mode":0,"read_only":false,"nid":326279858,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_chain","mode":0,"read_only":false,"nid":-628091418,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_one","mode":0,"read_only":false,"nid":-1885280456,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollbar_mode","mode":0,"read_only":false,"nid":1858121867,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"AUTO","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Scroll_direction","mode":0,"read_only":false,"nid":1912389116,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"ALL","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/States","mode":0,"read_only":false,"nid":77869856,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Checked","mode":0,"read_only":false,"nid":2105279509,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Disabled","mode":0,"read_only":false,"nid":-1267873325,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Focused","mode":0,"read_only":false,"nid":-1982273925,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Pressed","mode":0,"read_only":false,"nid":-981750769,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"LABEL/Label","mode":0,"read_only":false,"nid":1816003695,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"LABEL/Long_mode","mode":0,"read_only":false,"nid":1020965820,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"WRAP","closed":false,"childs":[],"InheritedType":3},{"strtype":"LABEL/Text","mode":0,"read_only":false,"nid":1813247421,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"Haptics","closed":false,"childs":[],"InheritedType":10},{"part":"lv.PART.MAIN","childs":[],"strtype":"LABEL/Style_main","mode":0,"read_only":false,"nid":-1148811272,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.MAIN, Text, Rectangle, Pad","closed":false,"InheritedType":11},{"strtype":"LABEL/Recolor","mode":0,"read_only":false,"nid":-1912129680,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2}],"saved_assetKey":null,"saved_objtypeKey":"LABEL","tree_closed":false},{"guid":"GUID33971297-987102S9211333","cid":null,"coid":0,"cgid":0,"deepid":1749732703,"children":[{"guid":"GUID24536412-986843S3741333","cid":null,"coid":0,"cgid":0,"deepid":505369930,"children":[],"isPage":false,"locked":false,"properties":[{"strtype":"OBJECT/Name","mode":0,"read_only":false,"nid":2121084415,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"hapticlabel","closed":false,"childs":[],"InheritedType":10},{"strtype":"OBJECT/Transform","mode":0,"read_only":false,"nid":1105737193,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Position","mode":17,"read_only":false,"nid":-1683041175,"compnid":0,"compmode":0,"integer":0,"intarray":[0,0],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Size","mode":51,"read_only":false,"nid":-1042189485,"compnid":0,"compmode":0,"integer":0,"intarray":[1,1],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Align","mode":0,"read_only":false,"nid":1071928887,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"CENTER","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Flags","mode":0,"read_only":false,"nid":408712308,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Hidden","mode":0,"read_only":false,"nid":-2134344516,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Clickable","mode":0,"read_only":false,"nid":-1811824782,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Checkable","mode":0,"read_only":false,"nid":-1937291256,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Press_lock","mode":0,"read_only":false,"nid":536354823,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Click_focusable","mode":0,"read_only":false,"nid":1620154216,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Adv_hittest","mode":0,"read_only":false,"nid":-1809709961,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Ignore_layout","mode":0,"read_only":false,"nid":1447675497,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Floating","mode":0,"read_only":false,"nid":1787582422,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Event_bubble","mode":0,"read_only":false,"nid":493976034,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Gesture_bubble","mode":0,"read_only":false,"nid":-470716817,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Snappable","mode":0,"read_only":false,"nid":358584689,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollable","mode":0,"read_only":false,"nid":230833232,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_elastic","mode":0,"read_only":false,"nid":-56555512,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_momentum","mode":0,"read_only":false,"nid":1566023647,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_on_focus","mode":0,"read_only":false,"nid":1746923410,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_chain","mode":0,"read_only":false,"nid":-550577560,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_one","mode":0,"read_only":false,"nid":1996505576,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollbar_mode","mode":0,"read_only":false,"nid":-1517733782,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"AUTO","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Scroll_direction","mode":0,"read_only":false,"nid":1843227362,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"ALL","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/States","mode":0,"read_only":false,"nid":387707491,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Checked","mode":0,"read_only":false,"nid":1624081569,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Disabled","mode":0,"read_only":false,"nid":-2098629064,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Focused","mode":0,"read_only":false,"nid":-469542671,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Pressed","mode":0,"read_only":false,"nid":-960382923,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"LABEL/Label","mode":0,"read_only":false,"nid":-1036485493,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"LABEL/Long_mode","mode":0,"read_only":false,"nid":391755609,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"WRAP","closed":false,"childs":[],"InheritedType":3},{"strtype":"LABEL/Text","mode":0,"read_only":false,"nid":-63219133,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"128","closed":false,"childs":[],"InheritedType":10},{"part":"lv.PART.MAIN","childs":[],"strtype":"LABEL/Style_main","mode":0,"read_only":false,"nid":692439944,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.MAIN, Text, Rectangle, Pad","closed":false,"InheritedType":11},{"strtype":"LABEL/Recolor","mode":0,"read_only":false,"nid":2025898768,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2}],"saved_assetKey":null,"saved_objtypeKey":"LABEL","tree_closed":false},{"guid":"GUID81508308-986842S2201333","cid":null,"coid":0,"cgid":0,"deepid":1747205136,"children":[{"guid":"GUID12117480-986841S2201333","cid":null,"coid":0,"cgid":0,"deepid":772475347,"children":[],"isPage":false,"locked":false,"properties":[{"strtype":"OBJECT/Name","mode":0,"read_only":false,"nid":-1204944192,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"settingsscreen Label7","closed":false,"childs":[],"InheritedType":10},{"strtype":"OBJECT/Transform","mode":0,"read_only":false,"nid":-825638070,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Position","mode":17,"read_only":false,"nid":1136727332,"compnid":0,"compmode":0,"integer":0,"intarray":[0,0],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Size","mode":51,"read_only":false,"nid":1162596951,"compnid":0,"compmode":0,"integer":0,"intarray":[1,1],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Align","mode":0,"read_only":false,"nid":1218163885,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"CENTER","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Flags","mode":0,"read_only":false,"nid":-1231510665,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Hidden","mode":0,"read_only":false,"nid":626928405,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Clickable","mode":0,"read_only":false,"nid":-1989382092,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Checkable","mode":0,"read_only":false,"nid":-1891707155,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Press_lock","mode":0,"read_only":false,"nid":-1865859032,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Click_focusable","mode":0,"read_only":false,"nid":654426909,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Adv_hittest","mode":0,"read_only":false,"nid":-754991086,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Ignore_layout","mode":0,"read_only":false,"nid":141008546,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Floating","mode":0,"read_only":false,"nid":1941595931,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Event_bubble","mode":0,"read_only":false,"nid":1352610852,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Gesture_bubble","mode":0,"read_only":false,"nid":-229114029,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Snappable","mode":0,"read_only":false,"nid":200161189,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollable","mode":0,"read_only":false,"nid":-1825158237,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_elastic","mode":0,"read_only":false,"nid":-2084595109,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_momentum","mode":0,"read_only":false,"nid":1290485788,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_on_focus","mode":0,"read_only":false,"nid":-781423144,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_chain","mode":0,"read_only":false,"nid":320115546,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_one","mode":0,"read_only":false,"nid":967775316,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollbar_mode","mode":0,"read_only":false,"nid":748625172,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"AUTO","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Scroll_direction","mode":0,"read_only":false,"nid":1960338955,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"ALL","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/States","mode":0,"read_only":false,"nid":1128950979,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Checked","mode":0,"read_only":false,"nid":658578913,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Disabled","mode":0,"read_only":false,"nid":48673346,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Focused","mode":0,"read_only":false,"nid":695713431,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Pressed","mode":0,"read_only":false,"nid":-936968905,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"LABEL/Label","mode":0,"read_only":false,"nid":87542098,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"LABEL/Long_mode","mode":0,"read_only":false,"nid":-674883412,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"WRAP","closed":false,"childs":[],"InheritedType":3},{"strtype":"LABEL/Text","mode":0,"read_only":false,"nid":-2074513056,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"LV_SYMBOL_MINUS","closed":false,"childs":[],"InheritedType":10},{"part":"lv.PART.MAIN","childs":[],"strtype":"LABEL/Style_main","mode":0,"read_only":false,"nid":-1895592964,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.MAIN, Text, Rectangle, Pad","closed":false,"InheritedType":11},{"strtype":"LABEL/Recolor","mode":0,"read_only":false,"nid":-118071692,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2}],"saved_assetKey":null,"saved_objtypeKey":"LABEL","tree_closed":true}],"isPage":false,"locked":false,"properties":[{"strtype":"OBJECT/Name","mode":0,"read_only":false,"nid":-43670223,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"hapticdownbutton","closed":false,"childs":[],"InheritedType":10},{"strtype":"OBJECT/Transform","mode":0,"read_only":false,"nid":-329180222,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Position","mode":17,"read_only":false,"nid":-467054364,"compnid":0,"compmode":0,"integer":0,"intarray":[0,0],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Size","mode":17,"read_only":false,"nid":-1365394826,"compnid":0,"compmode":0,"integer":0,"intarray":[32,32],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Align","mode":0,"read_only":false,"nid":1289267838,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"LEFT_MID","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Flags","mode":0,"read_only":false,"nid":324897234,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Hidden","mode":0,"read_only":false,"nid":54660832,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Clickable","mode":0,"read_only":false,"nid":-1320925560,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Checkable","mode":0,"read_only":false,"nid":1582421834,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Press_lock","mode":0,"read_only":false,"nid":-154823019,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Click_focusable","mode":0,"read_only":false,"nid":-1930550962,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Adv_hittest","mode":0,"read_only":false,"nid":382618871,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Ignore_layout","mode":0,"read_only":false,"nid":-367944262,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Floating","mode":0,"read_only":false,"nid":476131816,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Event_bubble","mode":0,"read_only":false,"nid":-42070788,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Gesture_bubble","mode":0,"read_only":false,"nid":-1460730241,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Snappable","mode":0,"read_only":false,"nid":-1532669817,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollable","mode":0,"read_only":false,"nid":1602665820,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_elastic","mode":0,"read_only":false,"nid":2120703147,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_momentum","mode":0,"read_only":false,"nid":490541518,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_on_focus","mode":0,"read_only":false,"nid":-325434893,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_chain","mode":0,"read_only":false,"nid":-443831648,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_one","mode":0,"read_only":false,"nid":232747053,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollbar_mode","mode":0,"read_only":false,"nid":1611606988,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"AUTO","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Scroll_direction","mode":0,"read_only":false,"nid":1482054420,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"ALL","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/States","mode":0,"read_only":false,"nid":2001580579,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Checked","mode":0,"read_only":false,"nid":2004046973,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Disabled","mode":0,"read_only":false,"nid":-243641813,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Focused","mode":0,"read_only":false,"nid":1528257079,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Pressed","mode":0,"read_only":false,"nid":-559955621,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"part":"lv.PART.MAIN","childs":[],"strtype":"BUTTON/Style_main","mode":0,"read_only":false,"nid":250447315,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.MAIN, Rectangle, Text","closed":false,"InheritedType":11}],"saved_assetKey":null,"saved_objtypeKey":"BUTTON","tree_closed":true},{"guid":"GUID85568922-986360S6801333","cid":null,"coid":0,"cgid":0,"deepid":1747205136,"children":[{"guid":"GUID55293293-986359S6801333","cid":null,"coid":0,"cgid":0,"deepid":772475347,"children":[],"isPage":false,"locked":false,"properties":[{"strtype":"OBJECT/Name","mode":0,"read_only":false,"nid":-1989641943,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"settingsscreen Label6","closed":false,"childs":[],"InheritedType":10},{"strtype":"OBJECT/Transform","mode":0,"read_only":false,"nid":-721307662,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Position","mode":17,"read_only":false,"nid":-135968140,"compnid":0,"compmode":0,"integer":0,"intarray":[0,0],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Size","mode":51,"read_only":false,"nid":-256795461,"compnid":0,"compmode":0,"integer":0,"intarray":[1,1],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Align","mode":0,"read_only":false,"nid":1639667649,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"CENTER","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Flags","mode":0,"read_only":false,"nid":491422054,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Hidden","mode":0,"read_only":false,"nid":-597442509,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Clickable","mode":0,"read_only":false,"nid":-1236687858,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Checkable","mode":0,"read_only":false,"nid":-945291653,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Press_lock","mode":0,"read_only":false,"nid":-1455401579,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Click_focusable","mode":0,"read_only":false,"nid":256675821,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Adv_hittest","mode":0,"read_only":false,"nid":395565610,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Ignore_layout","mode":0,"read_only":false,"nid":181517169,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Floating","mode":0,"read_only":false,"nid":1863618263,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Event_bubble","mode":0,"read_only":false,"nid":-153997478,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Gesture_bubble","mode":0,"read_only":false,"nid":160791077,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Snappable","mode":0,"read_only":false,"nid":-39982422,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollable","mode":0,"read_only":false,"nid":1854630470,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_elastic","mode":0,"read_only":false,"nid":-358427222,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_momentum","mode":0,"read_only":false,"nid":1484324698,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_on_focus","mode":0,"read_only":false,"nid":785193819,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_chain","mode":0,"read_only":false,"nid":-1963252089,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_one","mode":0,"read_only":false,"nid":1186400358,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollbar_mode","mode":0,"read_only":false,"nid":-1417316904,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"AUTO","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Scroll_direction","mode":0,"read_only":false,"nid":214205073,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"ALL","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/States","mode":0,"read_only":false,"nid":-196965506,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Checked","mode":0,"read_only":false,"nid":1837253203,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Disabled","mode":0,"read_only":false,"nid":260095710,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Focused","mode":0,"read_only":false,"nid":1244714978,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Pressed","mode":0,"read_only":false,"nid":1052654952,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"LABEL/Label","mode":0,"read_only":false,"nid":2019885918,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"LABEL/Long_mode","mode":0,"read_only":false,"nid":1119887123,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"WRAP","closed":false,"childs":[],"InheritedType":3},{"strtype":"LABEL/Text","mode":0,"read_only":false,"nid":-821363648,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"LV_SYMBOL_PLUS","closed":false,"childs":[],"InheritedType":10},{"part":"lv.PART.MAIN","childs":[],"strtype":"LABEL/Style_main","mode":0,"read_only":false,"nid":1957686224,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.MAIN, Text, Rectangle, Pad","closed":false,"InheritedType":11},{"strtype":"LABEL/Recolor","mode":0,"read_only":false,"nid":1893833962,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2}],"saved_assetKey":null,"saved_objtypeKey":"LABEL","tree_closed":true}],"isPage":false,"locked":false,"properties":[{"strtype":"OBJECT/Name","mode":0,"read_only":false,"nid":-994128521,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"hapticupbutton","closed":false,"childs":[],"InheritedType":10},{"strtype":"OBJECT/Transform","mode":0,"read_only":false,"nid":1595494351,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Position","mode":17,"read_only":false,"nid":-510918155,"compnid":0,"compmode":0,"integer":0,"intarray":[0,0],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Size","mode":17,"read_only":false,"nid":-530456535,"compnid":0,"compmode":0,"integer":0,"intarray":[32,32],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Align","mode":0,"read_only":false,"nid":-1799318118,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"RIGHT_MID","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Flags","mode":0,"read_only":false,"nid":1669714741,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Hidden","mode":0,"read_only":false,"nid":-173144687,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Clickable","mode":0,"read_only":false,"nid":-5770262,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Checkable","mode":0,"read_only":false,"nid":-546356400,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Press_lock","mode":0,"read_only":false,"nid":-471701767,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Click_focusable","mode":0,"read_only":false,"nid":-96693334,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Adv_hittest","mode":0,"read_only":false,"nid":-1849213411,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Ignore_layout","mode":0,"read_only":false,"nid":-1675927837,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Floating","mode":0,"read_only":false,"nid":111833975,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Event_bubble","mode":0,"read_only":false,"nid":-921510129,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Gesture_bubble","mode":0,"read_only":false,"nid":-1834122623,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Snappable","mode":0,"read_only":false,"nid":-1084532938,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollable","mode":0,"read_only":false,"nid":1320776261,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_elastic","mode":0,"read_only":false,"nid":1636244335,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_momentum","mode":0,"read_only":false,"nid":501009363,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_on_focus","mode":0,"read_only":false,"nid":-1313810776,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_chain","mode":0,"read_only":false,"nid":-1767648552,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_one","mode":0,"read_only":false,"nid":-1371103881,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollbar_mode","mode":0,"read_only":false,"nid":188142666,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"AUTO","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Scroll_direction","mode":0,"read_only":false,"nid":1092686066,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"ALL","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/States","mode":0,"read_only":false,"nid":219410556,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Checked","mode":0,"read_only":false,"nid":1015770481,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Disabled","mode":0,"read_only":false,"nid":116995833,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Focused","mode":0,"read_only":false,"nid":-33204203,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Pressed","mode":0,"read_only":false,"nid":639215323,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"part":"lv.PART.MAIN","childs":[],"strtype":"BUTTON/Style_main","mode":0,"read_only":false,"nid":-1615171284,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.MAIN, Rectangle, Text","closed":false,"InheritedType":11}],"saved_assetKey":null,"saved_objtypeKey":"BUTTON","tree_closed":true}],"isPage":false,"locked":false,"properties":[{"strtype":"OBJECT/Name","mode":0,"read_only":false,"nid":8138876,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"settingsscreen Panel1","closed":false,"childs":[],"InheritedType":10},{"strtype":"OBJECT/Transform","mode":0,"read_only":false,"nid":653753779,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Position","mode":17,"read_only":false,"nid":-2117449657,"compnid":0,"compmode":0,"integer":0,"intarray":[-30,0],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Size","mode":17,"read_only":false,"nid":1067674969,"compnid":0,"compmode":0,"integer":0,"intarray":[140,50],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Align","mode":0,"read_only":false,"nid":-1215452238,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"RIGHT_MID","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Flags","mode":0,"read_only":false,"nid":17601028,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Hidden","mode":0,"read_only":false,"nid":-1807975108,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Clickable","mode":0,"read_only":false,"nid":-1223433757,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Checkable","mode":0,"read_only":false,"nid":-1525999988,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Press_lock","mode":0,"read_only":false,"nid":1458673942,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Click_focusable","mode":0,"read_only":false,"nid":-174013214,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Adv_hittest","mode":0,"read_only":false,"nid":-1479280683,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Ignore_layout","mode":0,"read_only":false,"nid":1820996495,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Floating","mode":0,"read_only":false,"nid":-1834878098,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Event_bubble","mode":0,"read_only":false,"nid":-821024587,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Gesture_bubble","mode":0,"read_only":false,"nid":1994484524,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Snappable","mode":0,"read_only":false,"nid":572305565,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollable","mode":0,"read_only":false,"nid":1132269706,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_elastic","mode":0,"read_only":false,"nid":-1939140309,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_momentum","mode":0,"read_only":false,"nid":226182299,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_on_focus","mode":0,"read_only":false,"nid":-1563520604,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_chain","mode":0,"read_only":false,"nid":-1579329810,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_one","mode":0,"read_only":false,"nid":2053684583,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollbar_mode","mode":0,"read_only":false,"nid":1975172564,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"AUTO","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Scroll_direction","mode":0,"read_only":false,"nid":1967380329,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"ALL","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/States","mode":0,"read_only":false,"nid":1730694982,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Checked","mode":0,"read_only":false,"nid":2033982640,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Disabled","mode":0,"read_only":false,"nid":225095339,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Focused","mode":0,"read_only":false,"nid":1095977589,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Pressed","mode":0,"read_only":false,"nid":113432452,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"part":"lv.PART.MAIN","childs":[{"strtype":"_style/StyleState","mode":0,"read_only":false,"nid":-780480113,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"DEFAULT","closed":false,"childs":[{"strtype":"_style/Border_Color","mode":0,"read_only":false,"nid":34204592,"compnid":0,"compmode":0,"integer":0,"intarray":[0,0,0,0],"strval":null,"closed":false,"childs":[],"InheritedType":7}],"InheritedType":1}],"strtype":"PANEL/Style_main","mode":0,"read_only":false,"nid":1769957676,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.MAIN, Rectangle, Pad, BGimg, Text","closed":false,"InheritedType":11},{"part":"lv.PART.SCROLLBAR","childs":[],"strtype":"PANEL/Style_scrollbar","mode":0,"read_only":false,"nid":-1624977489,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.SCROLLBAR, Rectangle, Pad","closed":false,"InheritedType":11}],"saved_assetKey":null,"saved_objtypeKey":"PANEL","tree_closed":false},{"guid":"GUID71587957-988093S1611333","cid":null,"coid":0,"cgid":0,"deepid":1747205136,"children":[{"guid":"GUID54982811-988092S1611333","cid":null,"coid":0,"cgid":0,"deepid":772475347,"children":[],"isPage":false,"locked":false,"properties":[{"strtype":"OBJECT/Name","mode":0,"read_only":false,"nid":-454133619,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"settingsscreen Label8","closed":false,"childs":[],"InheritedType":10},{"strtype":"OBJECT/Transform","mode":0,"read_only":false,"nid":1938400388,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Position","mode":17,"read_only":false,"nid":-852250495,"compnid":0,"compmode":0,"integer":0,"intarray":[0,0],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Size","mode":51,"read_only":false,"nid":-1418849939,"compnid":0,"compmode":0,"integer":0,"intarray":[1,1],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Align","mode":0,"read_only":false,"nid":-120683248,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"CENTER","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Flags","mode":0,"read_only":false,"nid":-1866373270,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Hidden","mode":0,"read_only":false,"nid":-250004027,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Clickable","mode":0,"read_only":false,"nid":-1330561887,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Checkable","mode":0,"read_only":false,"nid":1814290422,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Press_lock","mode":0,"read_only":false,"nid":42299894,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Click_focusable","mode":0,"read_only":false,"nid":-1342781574,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Adv_hittest","mode":0,"read_only":false,"nid":1814057844,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Ignore_layout","mode":0,"read_only":false,"nid":364966059,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Floating","mode":0,"read_only":false,"nid":-1234780177,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Event_bubble","mode":0,"read_only":false,"nid":-1856365039,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Gesture_bubble","mode":0,"read_only":false,"nid":1251017919,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Snappable","mode":0,"read_only":false,"nid":-1732609021,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollable","mode":0,"read_only":false,"nid":796492891,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_elastic","mode":0,"read_only":false,"nid":-2058992828,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_momentum","mode":0,"read_only":false,"nid":2122590570,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_on_focus","mode":0,"read_only":false,"nid":618868877,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_chain","mode":0,"read_only":false,"nid":1908225444,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_one","mode":0,"read_only":false,"nid":623761585,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollbar_mode","mode":0,"read_only":false,"nid":1634349443,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"AUTO","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Scroll_direction","mode":0,"read_only":false,"nid":-1912465328,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"ALL","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/States","mode":0,"read_only":false,"nid":277870151,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Checked","mode":0,"read_only":false,"nid":1312510302,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Disabled","mode":0,"read_only":false,"nid":2093762539,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Focused","mode":0,"read_only":false,"nid":1349106025,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Pressed","mode":0,"read_only":false,"nid":1945554030,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"LABEL/Label","mode":0,"read_only":false,"nid":1686597032,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"LABEL/Long_mode","mode":0,"read_only":false,"nid":-1607764152,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"WRAP","closed":false,"childs":[],"InheritedType":3},{"strtype":"LABEL/Text","mode":0,"read_only":false,"nid":-1178317664,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"LV_SYMBOL_PLAY","closed":false,"childs":[],"InheritedType":10},{"part":"lv.PART.MAIN","childs":[],"strtype":"LABEL/Style_main","mode":0,"read_only":false,"nid":-898371069,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.MAIN, Text, Rectangle, Pad","closed":false,"InheritedType":11},{"strtype":"LABEL/Recolor","mode":0,"read_only":false,"nid":508262012,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2}],"saved_assetKey":null,"saved_objtypeKey":"LABEL","tree_closed":true}],"isPage":false,"locked":false,"properties":[{"strtype":"OBJECT/Name","mode":0,"read_only":false,"nid":1599651507,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"hapticplaybutton","closed":false,"childs":[],"InheritedType":10},{"strtype":"OBJECT/Transform","mode":0,"read_only":false,"nid":468345196,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Position","mode":17,"read_only":false,"nid":-867591433,"compnid":0,"compmode":0,"integer":0,"intarray":[0,0],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Size","mode":17,"read_only":false,"nid":1287633888,"compnid":0,"compmode":0,"integer":0,"intarray":[32,32],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Align","mode":0,"read_only":false,"nid":-16784102,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"RIGHT_MID","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Flags","mode":0,"read_only":false,"nid":372457361,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Hidden","mode":0,"read_only":false,"nid":539139427,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Clickable","mode":0,"read_only":false,"nid":2047515217,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Checkable","mode":0,"read_only":false,"nid":980802613,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Press_lock","mode":0,"read_only":false,"nid":1638983418,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Click_focusable","mode":0,"read_only":false,"nid":-1142942108,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Adv_hittest","mode":0,"read_only":false,"nid":-1306710251,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Ignore_layout","mode":0,"read_only":false,"nid":-1866476927,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Floating","mode":0,"read_only":false,"nid":1888434468,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Event_bubble","mode":0,"read_only":false,"nid":247393846,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Gesture_bubble","mode":0,"read_only":false,"nid":-1501032673,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Snappable","mode":0,"read_only":false,"nid":-279826677,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollable","mode":0,"read_only":false,"nid":-1417234365,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_elastic","mode":0,"read_only":false,"nid":-975401870,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_momentum","mode":0,"read_only":false,"nid":-757704484,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_on_focus","mode":0,"read_only":false,"nid":-1585098217,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_chain","mode":0,"read_only":false,"nid":345775516,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_one","mode":0,"read_only":false,"nid":1491612014,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollbar_mode","mode":0,"read_only":false,"nid":-71444633,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"AUTO","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Scroll_direction","mode":0,"read_only":false,"nid":-660077059,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"ALL","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/States","mode":0,"read_only":false,"nid":-1030046598,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Checked","mode":0,"read_only":false,"nid":319061771,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Disabled","mode":0,"read_only":false,"nid":811818019,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Focused","mode":0,"read_only":false,"nid":-499403120,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Pressed","mode":0,"read_only":false,"nid":850227470,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"part":"lv.PART.MAIN","childs":[],"strtype":"BUTTON/Style_main","mode":0,"read_only":false,"nid":45612525,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.MAIN, Rectangle, Text","closed":false,"InheritedType":11}],"saved_assetKey":null,"saved_objtypeKey":"BUTTON","tree_closed":false}],"isPage":false,"locked":false,"properties":[{"strtype":"OBJECT/Name","mode":0,"read_only":false,"nid":-889454870,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"hapticpanel","closed":false,"childs":[],"InheritedType":10},{"strtype":"OBJECT/Transform","mode":0,"read_only":false,"nid":-276503200,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Position","mode":17,"read_only":false,"nid":459383374,"compnid":0,"compmode":0,"integer":0,"intarray":[0,120],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Size","mode":18,"read_only":false,"nid":962306401,"compnid":0,"compmode":0,"integer":0,"intarray":[100,50],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Align","mode":0,"read_only":false,"nid":-242973671,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"TOP_MID","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Flags","mode":0,"read_only":false,"nid":-231464354,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Hidden","mode":0,"read_only":false,"nid":-54773568,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Clickable","mode":0,"read_only":false,"nid":54489981,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Checkable","mode":0,"read_only":false,"nid":-1716965897,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Press_lock","mode":0,"read_only":false,"nid":-1278191026,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Click_focusable","mode":0,"read_only":false,"nid":-759416879,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Adv_hittest","mode":0,"read_only":false,"nid":-133276437,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Ignore_layout","mode":0,"read_only":false,"nid":169395864,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Floating","mode":0,"read_only":false,"nid":-113182986,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Event_bubble","mode":0,"read_only":false,"nid":-1092919763,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Gesture_bubble","mode":0,"read_only":false,"nid":-1822457254,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Snappable","mode":0,"read_only":false,"nid":105492198,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollable","mode":0,"read_only":false,"nid":-1568784185,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_elastic","mode":0,"read_only":false,"nid":-1717434158,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_momentum","mode":0,"read_only":false,"nid":722581285,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_on_focus","mode":0,"read_only":false,"nid":-1688912525,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_chain","mode":0,"read_only":false,"nid":-1574164386,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_one","mode":0,"read_only":false,"nid":423216137,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollbar_mode","mode":0,"read_only":false,"nid":-2004664588,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"AUTO","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Scroll_direction","mode":0,"read_only":false,"nid":631136381,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"ALL","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/States","mode":0,"read_only":false,"nid":-649337134,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Checked","mode":0,"read_only":false,"nid":2143678150,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Disabled","mode":0,"read_only":false,"nid":1831436017,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Focused","mode":0,"read_only":false,"nid":-1354029631,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Pressed","mode":0,"read_only":false,"nid":-1344112062,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"part":"lv.PART.MAIN","childs":[],"strtype":"PANEL/Style_main","mode":0,"read_only":false,"nid":-100527752,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.MAIN, Rectangle, Pad, BGimg, Text","closed":false,"InheritedType":11},{"part":"lv.PART.SCROLLBAR","childs":[],"strtype":"PANEL/Style_scrollbar","mode":0,"read_only":false,"nid":421829838,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.SCROLLBAR, Rectangle, Pad","closed":false,"InheritedType":11}],"saved_assetKey":null,"saved_objtypeKey":"PANEL","tree_closed":false}],"isPage":false,"locked":false,"properties":[{"strtype":"OBJECT/Name","mode":0,"read_only":false,"nid":293255738,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"settingspanel","closed":false,"childs":[],"InheritedType":10},{"strtype":"OBJECT/Transform","mode":0,"read_only":false,"nid":-2089947573,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Position","mode":17,"read_only":false,"nid":1378448719,"compnid":0,"compmode":0,"integer":0,"intarray":[0,0],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Size","mode":18,"read_only":false,"nid":-501550617,"compnid":0,"compmode":0,"integer":0,"intarray":[100,165],"strval":null,"closed":false,"childs":[],"InheritedType":7},{"strtype":"OBJECT/Align","mode":0,"read_only":false,"nid":-801046971,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"BOTTOM_MID","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Flags","mode":0,"read_only":false,"nid":-305702995,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Hidden","mode":0,"read_only":false,"nid":1622599386,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Clickable","mode":0,"read_only":false,"nid":-1282012289,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Checkable","mode":0,"read_only":false,"nid":327152265,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Press_lock","mode":0,"read_only":false,"nid":-903057834,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Click_focusable","mode":0,"read_only":false,"nid":-547628108,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Adv_hittest","mode":0,"read_only":false,"nid":1096644111,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Ignore_layout","mode":0,"read_only":false,"nid":971749600,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Floating","mode":0,"read_only":false,"nid":551820389,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Event_bubble","mode":0,"read_only":false,"nid":349867837,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Gesture_bubble","mode":0,"read_only":false,"nid":-1175220122,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Snappable","mode":0,"read_only":false,"nid":-1659912127,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollable","mode":0,"read_only":false,"nid":-375902389,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_elastic","mode":0,"read_only":false,"nid":1832147245,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_momentum","mode":0,"read_only":false,"nid":349829140,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_on_focus","mode":0,"read_only":false,"nid":1308867462,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_chain","mode":0,"read_only":false,"nid":1532092131,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_one","mode":0,"read_only":false,"nid":10439254,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollbar_mode","mode":0,"read_only":false,"nid":-1996036172,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"AUTO","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Scroll_direction","mode":0,"read_only":false,"nid":1597076179,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"VER","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/States","mode":0,"read_only":false,"nid":-588443010,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Checked","mode":0,"read_only":false,"nid":985981220,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Disabled","mode":0,"read_only":false,"nid":1239526845,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Focused","mode":0,"read_only":false,"nid":2054648607,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Pressed","mode":0,"read_only":false,"nid":-342032556,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"part":"lv.PART.MAIN","childs":[{"strtype":"_style/StyleState","mode":0,"read_only":false,"nid":288267755,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"DEFAULT","closed":false,"childs":[{"strtype":"_style/Padding","mode":0,"read_only":false,"nid":-1154074172,"compnid":0,"compmode":0,"integer":0,"intarray":[0,0,0,0],"strval":null,"closed":false,"childs":[],"InheritedType":7}],"InheritedType":1}],"strtype":"PANEL/Style_main","mode":0,"read_only":false,"nid":-942187392,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.MAIN, Rectangle, Pad, BGimg, Text","closed":false,"InheritedType":11},{"part":"lv.PART.SCROLLBAR","childs":[],"strtype":"PANEL/Style_scrollbar","mode":0,"read_only":false,"nid":-33679820,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.SCROLLBAR, Rectangle, Pad","closed":false,"InheritedType":11}],"saved_assetKey":null,"saved_objtypeKey":"PANEL","tree_closed":false}],"isPage":true,"locked":false,"properties":[{"strtype":"OBJECT/Name","mode":0,"read_only":false,"nid":36785087,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"settingsscreen","closed":false,"childs":[],"InheritedType":10},{"strtype":"OBJECT/Transform","mode":0,"read_only":false,"nid":-311998216,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":false,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Flags","mode":0,"read_only":false,"nid":-861580376,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Hidden","mode":0,"read_only":false,"nid":-2146623384,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Clickable","mode":0,"read_only":false,"nid":1161302096,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Checkable","mode":0,"read_only":false,"nid":1939748048,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Press_lock","mode":0,"read_only":false,"nid":1034861812,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Adv_hittest","mode":0,"read_only":false,"nid":1175294707,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Ignore_layout","mode":0,"read_only":false,"nid":-1213374928,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollable","mode":0,"read_only":false,"nid":57221717,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_elastic","mode":0,"read_only":false,"nid":-796482728,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_momentum","mode":0,"read_only":false,"nid":-185985895,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"True","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scroll_one","mode":0,"read_only":false,"nid":2115789341,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Scrollbar_mode","mode":0,"read_only":false,"nid":335750767,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"AUTO","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/Scroll_direction","mode":0,"read_only":false,"nid":-824511642,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"ALL","closed":false,"childs":[],"InheritedType":3},{"strtype":"OBJECT/States","mode":0,"read_only":false,"nid":-1293192017,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":null,"closed":true,"childs":[],"InheritedType":1},{"strtype":"OBJECT/Checked","mode":0,"read_only":false,"nid":-1900013587,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Focused","mode":0,"read_only":false,"nid":1237515419,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"strtype":"OBJECT/Pressed","mode":0,"read_only":false,"nid":809946134,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"False","closed":false,"childs":[],"InheritedType":2},{"part":"lv.PART.MAIN","childs":[],"strtype":"SCREEN/Style_main","mode":0,"read_only":false,"nid":1077823634,"compnid":0,"compmode":0,"integer":0,"intarray":null,"strval":"lv.PART.MAIN, Rectangle, Text","closed":false,"InheritedType":11}],"saved_assetKey":null,"saved_objtypeKey":"SCREEN","tree_closed":false}],"isPage":false,"locked":false,"properties":[],"saved_assetKey":null,"saved_objtypeKey":null,"tree_closed":false},"animations":[],"info":{"name":"emu.spj","depth":2,"width":320,"height":240,"rotation":0,"offset_x":0,"offset_y":0,"description":"","board":"Eclipse with SDL for development on PC","board_version":"v1.0.1","editor_version":"1.1.1","image":"","force_export_images":false,"pointfilter":false,"theme_simplified":false,"theme_dark":true,"theme_color1":5,"theme_color2":0,"exportFolderPath":"/Users/bob/esp-cpp/esp-box-emu/components/gui/generated","backup_cnt":15,"autosave_cnt":0,"lvgl_version":"8.3.3","callfuncsexport":null,"BitDepth":16,"Name":"emu"}} \ No newline at end of file +{ + "root": { + "guid": "GUID82628138-598591S6601293", + "deepid": 0, + "children": [ + { + "guid": "GUID89464801-598592S871293", + "deepid": 364291833, + "children": [ + { + "guid": "GUID82286227-183715S2401311", + "deepid": -1351072138, + "children": [ + { + "guid": "GUID63884569-185245S8761311", + "deepid": -319034606, + "children": [ + { + "guid": "GUID68923071-185741S6911311", + "deepid": 1744197136, + "locked": false, + "properties": [ + { + "nid": 1942293601, + "strtype": "OBJECT/Name", + "strval": "Screen1 Label2", + "InheritedType": 10 + }, + { + "nid": -103109009, + "strtype": "LABEL/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": 205582056, + "strtype": "LABEL/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": 1975798477, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": -1231183007, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 0, + 0 + ], + "InheritedType": 7 + }, + { + "nid": 1714440314, + "flags": 51, + "strtype": "OBJECT/Size", + "intarray": [ + 1, + 1 + ], + "InheritedType": 7 + }, + { + "nid": 704634356, + "strtype": "OBJECT/Align", + "strval": "CENTER", + "InheritedType": 3 + }, + { + "nid": -1334165268, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": 313583681, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 957604063, + "strtype": "OBJECT/Clickable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1480126722, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -453425063, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1721657076, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -72062390, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -755047643, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1027614881, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -167564646, + "strtype": "LABEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 231121340, + "strtype": "LABEL/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 413020367, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1154050029, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1355310420, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1495176023, + "strtype": "OBJECT/Scrollable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -2137161386, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1627854740, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1139664308, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1448754701, + "strtype": "OBJECT/Scroll_chain", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1222006733, + "strtype": "LABEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 600279847, + "strtype": "OBJECT/Scroll_one", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -841879350, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": -191194457, + "strtype": "OBJECT/Scroll_direction", + "strval": "ALL", + "InheritedType": 3 + }, + { + "nid": -2132192277, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": -206984319, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 969287666, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1056382712, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 38525807, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 274577618, + "strtype": "LABEL/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1798877353, + "strtype": "LABEL/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1793842681, + "strtype": "LABEL/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1335188704, + "strtype": "LABEL/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -144208276, + "strtype": "LABEL/Label", + "InheritedType": 1 + }, + { + "nid": -1617062804, + "strtype": "LABEL/Long_mode", + "strval": "WRAP", + "InheritedType": 3 + }, + { + "nid": 1280753114, + "strtype": "LABEL/Text", + "strval": "LV_SYMBOL_SETTINGS", + "InheritedType": 10 + }, + { + "part": "lv.PART.MAIN", + "childs": [], + "nid": 1037011229, + "strtype": "LABEL/Style_main", + "strval": "lv.PART.MAIN, Text, Rectangle, Pad", + "InheritedType": 11 + }, + { + "nid": 1195103384, + "strtype": "LABEL/Recolor", + "strval": "False", + "InheritedType": 2 + } + ], + "saved_objtypeKey": "LABEL" + } + ], + "locked": false, + "properties": [ + { + "nid": -2111400487, + "strtype": "OBJECT/Name", + "strval": "settingsbutton", + "InheritedType": 10 + }, + { + "nid": 1277523519, + "strtype": "BUTTON/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": -1232764707, + "strtype": "BUTTON/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": -1491849615, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": 658246001, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 0, + 0 + ], + "InheritedType": 7 + }, + { + "nid": 1765571872, + "flags": 17, + "strtype": "OBJECT/Size", + "intarray": [ + 48, + 48 + ], + "InheritedType": 7 + }, + { + "nid": 2084132336, + "strtype": "OBJECT/Align", + "strval": "LEFT_MID", + "InheritedType": 3 + }, + { + "nid": -1058539791, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": 346555591, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1536957442, + "strtype": "OBJECT/Clickable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -966001626, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 733180116, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 87582738, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1189646698, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1865097933, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -104490192, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1454080673, + "strtype": "BUTTON/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1299590119, + "strtype": "BUTTON/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1160577646, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 297904625, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -361458740, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 763997165, + "strtype": "OBJECT/Scrollable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 341953729, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1786163695, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 969361892, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1433169587, + "strtype": "OBJECT/Scroll_chain", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1689433627, + "strtype": "BUTTON/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1370271325, + "strtype": "OBJECT/Scroll_one", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1187406500, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": 87240939, + "strtype": "OBJECT/Scroll_direction", + "strval": "ALL", + "InheritedType": 3 + }, + { + "nid": -411433075, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": -478202704, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1904992918, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1904535082, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -939445982, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1232877386, + "strtype": "BUTTON/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1231945448, + "strtype": "BUTTON/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1634249089, + "strtype": "BUTTON/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1357088102, + "strtype": "BUTTON/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "part": "lv.PART.MAIN", + "childs": [ + { + "nid": 853401189, + "strtype": "_style/StyleState", + "strval": "DEFAULT", + "childs": [ + { + "nid": 2088107997, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -158165232, + "strtype": "_style/StyleState", + "strval": "CHECKED", + "childs": [ + { + "nid": 664937218, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -2117766267, + "strtype": "_style/StyleState", + "strval": "PRESSED", + "childs": [ + { + "nid": -81814625, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 907491030, + "strtype": "_style/StyleState", + "strval": "DISABLED", + "childs": [ + { + "nid": 1988737162, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -2096219077, + "strtype": "_style/StyleState", + "strval": "FOCUSED", + "childs": [ + { + "nid": 14270146, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 1981587848, + "strtype": "_style/StyleState", + "strval": "CHECKED|PRESSED", + "childs": [ + { + "nid": -1535537439, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 1882634535, + "strtype": "_style/StyleState", + "strval": "USER_1", + "childs": [ + { + "nid": -330734348, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -1194848740, + "strtype": "_style/StyleState", + "strval": "USER_2", + "childs": [ + { + "nid": 681622590, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -92910857, + "strtype": "_style/StyleState", + "strval": "USER_3", + "childs": [ + { + "nid": 967449782, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -1790192862, + "strtype": "_style/StyleState", + "strval": "USER_4", + "childs": [ + { + "nid": -518006123, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + } + ], + "nid": 1125857505, + "strtype": "BUTTON/Style_main", + "strval": "lv.PART.MAIN, Rectangle, Pad, Text ", + "InheritedType": 11 + }, + { + "disabled": false, + "nid": 467913869, + "strtype": "_event/EventHandler", + "strval": "CLICKED", + "childs": [ + { + "nid": 73098225, + "strtype": "_custom/name", + "strval": "settingsbuttonclicked", + "InheritedType": 10 + }, + { + "nid": 899486756, + "strtype": "_custom/condition_C", + "strval": "", + "InheritedType": 10 + }, + { + "nid": -1782669218, + "strtype": "_custom/condition_P", + "strval": "", + "InheritedType": 10 + }, + { + "nid": 2122662858, + "strtype": "_event/action", + "strval": "CHANGE SCREEN", + "childs": [ + { + "nid": -1501044014, + "strtype": "CHANGE SCREEN/Name", + "strval": "CHANGE SCREEN", + "InheritedType": 10 + }, + { + "nid": -283396808, + "strtype": "CHANGE SCREEN/Call", + "strval": "ChangeScreen( <{Screen_to}>, lv.SCR_LOAD_ANIM.<{Fade_mode}>, <{Speed}>, <{Delay}>)", + "InheritedType": 10 + }, + { + "nid": 1696615592, + "strtype": "CHANGE SCREEN/CallC", + "strval": "_ui_screen_change( &<{Screen_to}>, LV_SCR_LOAD_ANIM_<{Fade_mode}>, <{Speed}>, <{Delay}>, &<{Screen_to}>_screen_init);", + "InheritedType": 10 + }, + { + "nid": -692898442, + "strtype": "CHANGE SCREEN/Screen_to", + "strval": "GUID11083184-186700S7241311", + "InheritedType": 9 + }, + { + "nid": -458747014, + "strtype": "CHANGE SCREEN/Fade_mode", + "strval": "MOVE_RIGHT", + "InheritedType": 3 + }, + { + "nid": 817725016, + "strtype": "CHANGE SCREEN/Speed", + "integer": 100, + "InheritedType": 6 + }, + { + "nid": 134033322, + "strtype": "CHANGE SCREEN/Delay", + "InheritedType": 6 + } + ], + "InheritedType": 10 + } + ], + "InheritedType": 4 + } + ], + "saved_objtypeKey": "BUTTON" + }, + { + "guid": "GUID59992799-185482S6861311", + "deepid": -1180335275, + "locked": false, + "properties": [ + { + "nid": -1290593206, + "strtype": "OBJECT/Name", + "strval": "Screen1 Label1", + "InheritedType": 10 + }, + { + "nid": -1139039527, + "strtype": "LABEL/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": 239094992, + "strtype": "LABEL/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": 163870194, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": 430154773, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 0, + 0 + ], + "InheritedType": 7 + }, + { + "nid": -655296272, + "flags": 51, + "strtype": "OBJECT/Size", + "intarray": [ + 1, + 1 + ], + "InheritedType": 7 + }, + { + "nid": 2108986733, + "strtype": "OBJECT/Align", + "strval": "CENTER", + "InheritedType": 3 + }, + { + "nid": -1621394025, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": 247034819, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1006551844, + "strtype": "OBJECT/Clickable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 308827085, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1481357983, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -2106251302, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -802226996, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1376466370, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1220879529, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -731753882, + "strtype": "LABEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 628168038, + "strtype": "LABEL/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 625738716, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 901383996, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1414017030, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 590586875, + "strtype": "OBJECT/Scrollable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1900123583, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 652011905, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1359373998, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1709376103, + "strtype": "OBJECT/Scroll_chain", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -2004971208, + "strtype": "LABEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 556060833, + "strtype": "OBJECT/Scroll_one", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 2090948622, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": 806115801, + "strtype": "OBJECT/Scroll_direction", + "strval": "ALL", + "InheritedType": 3 + }, + { + "nid": 131074994, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": -1375148533, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -421645467, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1518033214, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -218083494, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1544685538, + "strtype": "LABEL/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1854317558, + "strtype": "LABEL/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1228045771, + "strtype": "LABEL/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1715828318, + "strtype": "LABEL/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 737081825, + "strtype": "LABEL/Label", + "InheritedType": 1 + }, + { + "nid": 107894546, + "strtype": "LABEL/Long_mode", + "strval": "WRAP", + "InheritedType": 3 + }, + { + "nid": 1505493626, + "strtype": "LABEL/Text", + "strval": "Select Rom", + "InheritedType": 10 + }, + { + "part": "lv.PART.MAIN", + "childs": [], + "nid": 1764472988, + "strtype": "LABEL/Style_main", + "strval": "lv.PART.MAIN, Text, Rectangle, Pad", + "InheritedType": 11 + }, + { + "nid": -295841366, + "strtype": "LABEL/Recolor", + "strval": "False", + "InheritedType": 2 + } + ], + "saved_objtypeKey": "LABEL" + }, + { + "guid": "GUID24964206-186481S2471311", + "deepid": -319034606, + "children": [ + { + "guid": "GUID29700096-186480S2471311", + "deepid": 1744197136, + "locked": false, + "properties": [ + { + "nid": 768421321, + "strtype": "OBJECT/Name", + "strval": "Screen1 Label3", + "InheritedType": 10 + }, + { + "nid": 1968908557, + "strtype": "LABEL/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": 247236939, + "strtype": "LABEL/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": 61493129, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": -1279143560, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 0, + 0 + ], + "InheritedType": 7 + }, + { + "nid": -1288738998, + "flags": 51, + "strtype": "OBJECT/Size", + "intarray": [ + 1, + 1 + ], + "InheritedType": 7 + }, + { + "nid": -705584082, + "strtype": "OBJECT/Align", + "strval": "CENTER", + "InheritedType": 3 + }, + { + "nid": 1136535165, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": -1775006322, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 668105945, + "strtype": "OBJECT/Clickable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 569431364, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1630764848, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -535982790, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -703030184, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -955720851, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 128209807, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -666429562, + "strtype": "LABEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1534268579, + "strtype": "LABEL/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -2062981217, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -100551205, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -813001541, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 315108684, + "strtype": "OBJECT/Scrollable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -114625118, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1538054804, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 881190556, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -2008827562, + "strtype": "OBJECT/Scroll_chain", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 543094896, + "strtype": "LABEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1739255701, + "strtype": "OBJECT/Scroll_one", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 926261608, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": 1087428325, + "strtype": "OBJECT/Scroll_direction", + "strval": "ALL", + "InheritedType": 3 + }, + { + "nid": 710605013, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": -1267366761, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1648789018, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -465692407, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 259710568, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 605592415, + "strtype": "LABEL/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -614171990, + "strtype": "LABEL/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1274952779, + "strtype": "LABEL/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1196235289, + "strtype": "LABEL/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -941315432, + "strtype": "LABEL/Label", + "InheritedType": 1 + }, + { + "nid": 1493802716, + "strtype": "LABEL/Long_mode", + "strval": "WRAP", + "InheritedType": 3 + }, + { + "nid": -846609210, + "strtype": "LABEL/Text", + "strval": "LV_SYMBOL_PLAY", + "InheritedType": 10 + }, + { + "part": "lv.PART.MAIN", + "childs": [], + "nid": -169174998, + "strtype": "LABEL/Style_main", + "strval": "lv.PART.MAIN, Text, Rectangle, Pad", + "InheritedType": 11 + }, + { + "nid": 1168885217, + "strtype": "LABEL/Recolor", + "strval": "False", + "InheritedType": 2 + } + ], + "saved_objtypeKey": "LABEL" + } + ], + "locked": false, + "properties": [ + { + "nid": 1589302611, + "strtype": "OBJECT/Name", + "strval": "playbutton", + "InheritedType": 10 + }, + { + "nid": 2023958936, + "strtype": "BUTTON/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": 883305061, + "strtype": "BUTTON/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": -675571315, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": 483113871, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 0, + 0 + ], + "InheritedType": 7 + }, + { + "nid": 1373937859, + "flags": 17, + "strtype": "OBJECT/Size", + "intarray": [ + 48, + 48 + ], + "InheritedType": 7 + }, + { + "nid": -1350483583, + "strtype": "OBJECT/Align", + "strval": "RIGHT_MID", + "InheritedType": 3 + }, + { + "nid": -428542643, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": -948719095, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1592351677, + "strtype": "OBJECT/Clickable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -598750578, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 644485506, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1950426769, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 175111144, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1026708970, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -905245580, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1505142414, + "strtype": "BUTTON/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1210840900, + "strtype": "BUTTON/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -681190793, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -679540114, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1358169722, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1314643040, + "strtype": "OBJECT/Scrollable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1738195762, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 621111986, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 759167708, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1410322306, + "strtype": "OBJECT/Scroll_chain", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 2042483848, + "strtype": "BUTTON/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 674656452, + "strtype": "OBJECT/Scroll_one", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 89186766, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": 574920142, + "strtype": "OBJECT/Scroll_direction", + "strval": "ALL", + "InheritedType": 3 + }, + { + "nid": 1732642989, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": 10954893, + "strtype": "OBJECT/Checked", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1525392534, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1851451361, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 872498834, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 160076551, + "strtype": "BUTTON/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1153562740, + "strtype": "BUTTON/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1719183281, + "strtype": "BUTTON/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 677503380, + "strtype": "BUTTON/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "part": "lv.PART.MAIN", + "childs": [ + { + "nid": 272140409, + "strtype": "_style/StyleState", + "strval": "DEFAULT", + "childs": [ + { + "nid": 650150665, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -547472153, + "strtype": "_style/StyleState", + "strval": "CHECKED", + "childs": [ + { + "nid": 336602657, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 558555342, + "strtype": "_style/StyleState", + "strval": "PRESSED", + "childs": [ + { + "nid": 2003992284, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -1375378946, + "strtype": "_style/StyleState", + "strval": "DISABLED", + "childs": [ + { + "nid": -256328219, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 855311850, + "strtype": "_style/StyleState", + "strval": "FOCUSED", + "childs": [ + { + "nid": 1040756563, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 369875057, + "strtype": "_style/StyleState", + "strval": "CHECKED|PRESSED", + "childs": [ + { + "nid": 729683925, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 1863295554, + "strtype": "_style/StyleState", + "strval": "USER_1", + "childs": [ + { + "nid": 1125116942, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -1906060616, + "strtype": "_style/StyleState", + "strval": "USER_2", + "childs": [ + { + "nid": 524202732, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -329498224, + "strtype": "_style/StyleState", + "strval": "USER_3", + "childs": [ + { + "nid": 1826624367, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -620901523, + "strtype": "_style/StyleState", + "strval": "USER_4", + "childs": [ + { + "nid": -94549582, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + } + ], + "nid": 1961753684, + "strtype": "BUTTON/Style_main", + "strval": "lv.PART.MAIN, Rectangle, Pad, Text ", + "InheritedType": 11 + } + ], + "saved_objtypeKey": "BUTTON" + } + ], + "locked": false, + "properties": [ + { + "nid": -2075149394, + "strtype": "OBJECT/Name", + "strval": "header", + "InheritedType": 10 + }, + { + "nid": -1876954458, + "strtype": "PANEL/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": -1194864081, + "strtype": "PANEL/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": 694045763, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": -1217914541, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 0, + 0 + ], + "InheritedType": 7 + }, + { + "nid": 874312949, + "flags": 18, + "strtype": "OBJECT/Size", + "intarray": [ + 100, + 75 + ], + "InheritedType": 7 + }, + { + "nid": 437051860, + "strtype": "OBJECT/Align", + "strval": "TOP_MID", + "InheritedType": 3 + }, + { + "nid": 1441842160, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": 1959303567, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1809136658, + "strtype": "OBJECT/Clickable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1189011624, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -724844703, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -3259665, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -2133884457, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1634568808, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1026346933, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1867658826, + "strtype": "PANEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -734423796, + "strtype": "PANEL/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 175907554, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 48882448, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -81820157, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1633626360, + "strtype": "OBJECT/Scrollable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -427043301, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -949157007, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1424714686, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -153007185, + "strtype": "OBJECT/Scroll_chain", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 826553609, + "strtype": "PANEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -86749051, + "strtype": "OBJECT/Scroll_one", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 2073125369, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": 1748060483, + "strtype": "OBJECT/Scroll_direction", + "strval": "ALL", + "InheritedType": 3 + }, + { + "nid": -1081332065, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": -410497902, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -306248434, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 709524044, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 117979946, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1782615455, + "strtype": "PANEL/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -251320318, + "strtype": "PANEL/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1821970093, + "strtype": "PANEL/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 233624241, + "strtype": "PANEL/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "part": "lv.PART.MAIN", + "childs": [], + "nid": -1875185321, + "strtype": "PANEL/Style_main", + "strval": "lv.PART.MAIN, Rectangle, Pad, Text", + "InheritedType": 11 + }, + { + "part": "lv.PART.SCROLLBAR", + "childs": [], + "nid": 1492913670, + "strtype": "PANEL/Style_scrollbar", + "strval": "lv.PART.SCROLLBAR, Rectangle, Pad", + "InheritedType": 11 + } + ], + "saved_objtypeKey": "PANEL" + }, + { + "guid": "GUID81773217-184225S9061311", + "deepid": -2106017550, + "locked": false, + "properties": [ + { + "nid": 1624090982, + "strtype": "OBJECT/Name", + "strval": "rompanel", + "InheritedType": 10 + }, + { + "nid": -1737501268, + "strtype": "PANEL/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": -1430644174, + "strtype": "PANEL/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": -125572465, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": 594690190, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 0, + 0 + ], + "InheritedType": 7 + }, + { + "nid": 1493274914, + "flags": 17, + "strtype": "OBJECT/Size", + "intarray": [ + 220, + 165 + ], + "InheritedType": 7 + }, + { + "nid": 783565123, + "strtype": "OBJECT/Align", + "strval": "BOTTOM_LEFT", + "InheritedType": 3 + }, + { + "nid": -478748334, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": 257378300, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 2004092468, + "strtype": "OBJECT/Clickable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1644180872, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 291669969, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -260397889, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1944124269, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -371491316, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 813645260, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -929333653, + "strtype": "PANEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 944855108, + "strtype": "PANEL/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 793910599, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1813277656, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1195017156, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -432638701, + "strtype": "OBJECT/Scrollable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1348672465, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -332672446, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 555617621, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -566057317, + "strtype": "OBJECT/Scroll_chain", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 318221835, + "strtype": "PANEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1251351714, + "strtype": "OBJECT/Scroll_one", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -2118778781, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": -354263957, + "strtype": "OBJECT/Scroll_direction", + "strval": "VER", + "InheritedType": 3 + }, + { + "nid": -301932538, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": 1206873254, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1637185019, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1591254541, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1123710285, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1933572328, + "strtype": "PANEL/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 2058213407, + "strtype": "PANEL/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1619240045, + "strtype": "PANEL/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 880126800, + "strtype": "PANEL/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "part": "lv.PART.MAIN", + "childs": [], + "nid": 514781749, + "strtype": "PANEL/Style_main", + "strval": "lv.PART.MAIN, Rectangle, Pad, Text", + "InheritedType": 11 + }, + { + "part": "lv.PART.SCROLLBAR", + "childs": [], + "nid": 1493062028, + "strtype": "PANEL/Style_scrollbar", + "strval": "lv.PART.SCROLLBAR, Rectangle, Pad", + "InheritedType": 11 + } + ], + "saved_objtypeKey": "PANEL", + "tree_closed": true + }, + { + "guid": "GUID63675663-184735S481311", + "deepid": 48170148, + "children": [ + { + "guid": "GUID7716583-186482S9211311", + "deepid": -1378606456, + "locked": false, + "properties": [ + { + "nid": -1325263398, + "strtype": "OBJECT/Name", + "strval": "boxart", + "InheritedType": 10 + }, + { + "nid": 1461309959, + "strtype": "IMAGE/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": -174359722, + "strtype": "IMAGE/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": -1769124851, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": 1677976762, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 0, + 0 + ], + "InheritedType": 7 + }, + { + "nid": 1341462371, + "flags": 49, + "strtype": "OBJECT/Size", + "intarray": [ + 100, + 1 + ], + "InheritedType": 7 + }, + { + "nid": 1530081457, + "strtype": "OBJECT/Align", + "strval": "CENTER", + "InheritedType": 3 + }, + { + "nid": -769407439, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": -643865914, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -31451436, + "strtype": "OBJECT/Clickable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1742693265, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1803295509, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 380313203, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -150309734, + "strtype": "OBJECT/Adv_hittest", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 85661470, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1836159222, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1663652762, + "strtype": "IMAGE/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 806234380, + "strtype": "IMAGE/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1721090057, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 516700661, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1796678450, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -2140042386, + "strtype": "OBJECT/Scrollable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 2019659151, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -2139697877, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1670965136, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1038645231, + "strtype": "OBJECT/Scroll_chain", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1056637599, + "strtype": "IMAGE/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -357835659, + "strtype": "OBJECT/Scroll_one", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1012245863, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": 2120335945, + "strtype": "OBJECT/Scroll_direction", + "strval": "ALL", + "InheritedType": 3 + }, + { + "nid": 179743376, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": 1923113305, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 263541344, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1914598617, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -12125208, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1875283100, + "strtype": "IMAGE/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 980949545, + "strtype": "IMAGE/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1078938359, + "strtype": "IMAGE/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 192863016, + "strtype": "IMAGE/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1575536526, + "strtype": "IMAGE/Image", + "InheritedType": 1 + }, + { + "nid": -1142835856, + "strtype": "IMAGE/Asset", + "strval": "", + "InheritedType": 5 + }, + { + "nid": 703339987, + "strtype": "IMAGE/Pivot", + "intarray": [ + 0, + 0 + ], + "InheritedType": 7 + }, + { + "nid": -1756705934, + "strtype": "IMAGE/Rotation", + "InheritedType": 6 + }, + { + "nid": -226171153, + "strtype": "IMAGE/Scale", + "integer": 256, + "InheritedType": 6 + }, + { + "part": "lv.PART.MAIN", + "childs": [], + "nid": 1076877138, + "strtype": "IMAGE/Style_main", + "strval": "lv.PART.MAIN, Rectangle, Image", + "InheritedType": 11 + } + ], + "saved_objtypeKey": "IMAGE" + } + ], + "locked": false, + "properties": [ + { + "nid": 294703303, + "strtype": "OBJECT/Name", + "strval": "boxartpanel", + "InheritedType": 10 + }, + { + "nid": -713180076, + "strtype": "PANEL/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": 1489930254, + "strtype": "PANEL/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": 872853391, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": 455770362, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 0, + 0 + ], + "InheritedType": 7 + }, + { + "nid": -158282169, + "flags": 17, + "strtype": "OBJECT/Size", + "intarray": [ + 100, + 165 + ], + "InheritedType": 7 + }, + { + "nid": 1019503844, + "strtype": "OBJECT/Align", + "strval": "BOTTOM_RIGHT", + "InheritedType": 3 + }, + { + "nid": 1354946701, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": -243373765, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -587210112, + "strtype": "OBJECT/Clickable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1679441123, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -773033394, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 623122610, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1975366446, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1295593253, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -325372822, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 901313794, + "strtype": "PANEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1112861648, + "strtype": "PANEL/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1715427747, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1046772791, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1039563569, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1937286848, + "strtype": "OBJECT/Scrollable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -404542164, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -2052092742, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1967310733, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1791758573, + "strtype": "OBJECT/Scroll_chain", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -781085280, + "strtype": "PANEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 904957487, + "strtype": "OBJECT/Scroll_one", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -347743088, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": -1028846612, + "strtype": "OBJECT/Scroll_direction", + "strval": "ALL", + "InheritedType": 3 + }, + { + "nid": 109231300, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": 1411017959, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1735425352, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1475754589, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1417908895, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1705847695, + "strtype": "PANEL/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1812863425, + "strtype": "PANEL/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1424425572, + "strtype": "PANEL/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 235645398, + "strtype": "PANEL/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "part": "lv.PART.MAIN", + "childs": [], + "nid": -2002851217, + "strtype": "PANEL/Style_main", + "strval": "lv.PART.MAIN, Rectangle, Pad, Text", + "InheritedType": 11 + }, + { + "part": "lv.PART.SCROLLBAR", + "childs": [], + "nid": 997051013, + "strtype": "PANEL/Style_scrollbar", + "strval": "lv.PART.SCROLLBAR, Rectangle, Pad", + "InheritedType": 11 + } + ], + "saved_objtypeKey": "PANEL", + "tree_closed": true + } + ], + "isPage": true, + "locked": false, + "properties": [ + { + "nid": 1804933313, + "strtype": "OBJECT/Name", + "strval": "romscreen", + "InheritedType": 10 + }, + { + "nid": 649404939, + "strtype": "SCREEN/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": -1616897293, + "strtype": "SCREEN/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": 1328335903, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": -1908819204, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": -214781359, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -341688350, + "strtype": "OBJECT/Clickable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 772226476, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 767434551, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -452698219, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1374566889, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 420212076, + "strtype": "SCREEN/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -747009874, + "strtype": "SCREEN/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 966637495, + "strtype": "OBJECT/Scrollable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 724657336, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1501994263, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1778399717, + "strtype": "SCREEN/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 908519298, + "strtype": "OBJECT/Scroll_one", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1689960792, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": -1604203333, + "strtype": "OBJECT/Scroll_direction", + "strval": "ALL", + "InheritedType": 3 + }, + { + "nid": 2074852090, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": -1342301299, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1459892938, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -976176475, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1670638674, + "strtype": "SCREEN/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1840898499, + "strtype": "SCREEN/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1404941341, + "strtype": "SCREEN/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -699130037, + "strtype": "SCREEN/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1648118945, + "strtype": "SCREEN/Screen", + "InheritedType": 1 + }, + { + "nid": -610393952, + "strtype": "SCREEN/Temporary", + "strval": "False", + "InheritedType": 2 + }, + { + "part": "lv.PART.MAIN", + "childs": [ + { + "nid": 1134044721, + "strtype": "_style/StyleState", + "strval": "DEFAULT", + "childs": [ + { + "nid": -526081505, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -466270481, + "strtype": "_style/StyleState", + "strval": "CHECKED", + "childs": [ + { + "nid": 1542392930, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 1121318053, + "strtype": "_style/StyleState", + "strval": "PRESSED", + "childs": [ + { + "nid": 1078579350, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 1654887382, + "strtype": "_style/StyleState", + "strval": "CHECKED|PRESSED", + "childs": [ + { + "nid": -1772694724, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -2073654570, + "strtype": "_style/StyleState", + "strval": "DISABLED", + "childs": [ + { + "nid": -335591984, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -220865925, + "strtype": "_style/StyleState", + "strval": "USER_1", + "childs": [ + { + "nid": -1041993235, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 1807781073, + "strtype": "_style/StyleState", + "strval": "USER_2", + "childs": [ + { + "nid": 2028238605, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 1610814953, + "strtype": "_style/StyleState", + "strval": "USER_3", + "childs": [ + { + "nid": -1524328064, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -309799346, + "strtype": "_style/StyleState", + "strval": "USER_4", + "childs": [ + { + "nid": -942183200, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + } + ], + "nid": -1411917506, + "strtype": "SCREEN/Style_main", + "strval": "lv.PART.MAIN, Rectangle, Pad, Text", + "InheritedType": 11 + }, + { + "part": "lv.PART.SCROLLBAR", + "childs": [], + "nid": 133477643, + "strtype": "SCREEN/Style_scrollbar", + "strval": "lv.PART.SCROLLBAR, Rectangle, Pad", + "InheritedType": 11 + }, + { + "nid": -169599917, + "strtype": "SCREEN/Don't export screen", + "strval": "False", + "InheritedType": 2 + } + ], + "saved_objtypeKey": "SCREEN" + }, + { + "guid": "GUID11083184-186700S7241311", + "deepid": -1399510403, + "children": [ + { + "guid": "GUID71242329-188602S5821311", + "deepid": -1351072138, + "children": [ + { + "guid": "GUID93658042-187867S5801311", + "deepid": -319034606, + "children": [ + { + "guid": "GUID85405414-187866S5801311", + "deepid": 1744197136, + "locked": false, + "properties": [ + { + "nid": 220131969, + "strtype": "OBJECT/Name", + "strval": "Screen1 Label4", + "InheritedType": 10 + }, + { + "nid": -233859654, + "strtype": "LABEL/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": -377179768, + "strtype": "LABEL/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": 1112630818, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": 1626367905, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 0, + 0 + ], + "InheritedType": 7 + }, + { + "nid": 639747324, + "flags": 51, + "strtype": "OBJECT/Size", + "intarray": [ + 1, + 1 + ], + "InheritedType": 7 + }, + { + "nid": -1686432985, + "strtype": "OBJECT/Align", + "strval": "CENTER", + "InheritedType": 3 + }, + { + "nid": 1051888095, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": 704271868, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1974207974, + "strtype": "OBJECT/Clickable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1377847357, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1546185118, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -710855543, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 838112895, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 134605401, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -93215389, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 355685806, + "strtype": "LABEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1662193728, + "strtype": "LABEL/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1779474452, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -377665551, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1265859753, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 260067843, + "strtype": "OBJECT/Scrollable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -874336810, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1470508028, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -442829360, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 984279099, + "strtype": "OBJECT/Scroll_chain", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 779030527, + "strtype": "LABEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1152757753, + "strtype": "OBJECT/Scroll_one", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 2058336429, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": 1068445176, + "strtype": "OBJECT/Scroll_direction", + "strval": "ALL", + "InheritedType": 3 + }, + { + "nid": -1659170088, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": 1959784332, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1322424022, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 2057341832, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1245178267, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 23475991, + "strtype": "LABEL/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1241588392, + "strtype": "LABEL/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1206602112, + "strtype": "LABEL/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1714535330, + "strtype": "LABEL/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1068509114, + "strtype": "LABEL/Label", + "InheritedType": 1 + }, + { + "nid": -1209487334, + "strtype": "LABEL/Long_mode", + "strval": "WRAP", + "InheritedType": 3 + }, + { + "nid": -1457966035, + "strtype": "LABEL/Text", + "strval": "LV_SYMBOL_CLOSE", + "InheritedType": 10 + }, + { + "part": "lv.PART.MAIN", + "childs": [], + "nid": -964379850, + "strtype": "LABEL/Style_main", + "strval": "lv.PART.MAIN, Text, Rectangle, Pad", + "InheritedType": 11 + }, + { + "nid": -1347939066, + "strtype": "LABEL/Recolor", + "strval": "False", + "InheritedType": 2 + } + ], + "saved_objtypeKey": "LABEL" + } + ], + "locked": false, + "properties": [ + { + "nid": 523231075, + "strtype": "OBJECT/Name", + "strval": "closebutton", + "InheritedType": 10 + }, + { + "nid": -1351480955, + "strtype": "BUTTON/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": 2133911809, + "strtype": "BUTTON/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": -1921569652, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": -1773885538, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 0, + 0 + ], + "InheritedType": 7 + }, + { + "nid": 1787045802, + "flags": 17, + "strtype": "OBJECT/Size", + "intarray": [ + 48, + 48 + ], + "InheritedType": 7 + }, + { + "nid": 299487165, + "strtype": "OBJECT/Align", + "strval": "LEFT_MID", + "InheritedType": 3 + }, + { + "nid": -1536462032, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": 126225879, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1680938705, + "strtype": "OBJECT/Clickable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 784482322, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1507476349, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1482874277, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1288709262, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -2021958142, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -548365898, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1360668662, + "strtype": "BUTTON/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -934036105, + "strtype": "BUTTON/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 801066566, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 550527123, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1985837284, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1344922528, + "strtype": "OBJECT/Scrollable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -713617352, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1215723071, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 644176831, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1036610831, + "strtype": "OBJECT/Scroll_chain", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1603483968, + "strtype": "BUTTON/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1378263982, + "strtype": "OBJECT/Scroll_one", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1129255577, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": -1220332152, + "strtype": "OBJECT/Scroll_direction", + "strval": "ALL", + "InheritedType": 3 + }, + { + "nid": -376218650, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": 1021845225, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1088971947, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1783938302, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 277903052, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 2091754339, + "strtype": "BUTTON/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -2035207344, + "strtype": "BUTTON/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1897192385, + "strtype": "BUTTON/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1355911405, + "strtype": "BUTTON/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "part": "lv.PART.MAIN", + "childs": [ + { + "nid": -2059023325, + "strtype": "_style/StyleState", + "strval": "DEFAULT", + "childs": [ + { + "nid": 1603624928, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -775003603, + "strtype": "_style/StyleState", + "strval": "CHECKED", + "childs": [ + { + "nid": 1221808839, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 630323347, + "strtype": "_style/StyleState", + "strval": "PRESSED", + "childs": [ + { + "nid": 33885359, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -569175510, + "strtype": "_style/StyleState", + "strval": "DISABLED", + "childs": [ + { + "nid": -770807782, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -651359036, + "strtype": "_style/StyleState", + "strval": "FOCUSED", + "childs": [ + { + "nid": -1613255359, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 1733381830, + "strtype": "_style/StyleState", + "strval": "CHECKED|PRESSED", + "childs": [ + { + "nid": 1138859142, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -1011196543, + "strtype": "_style/StyleState", + "strval": "USER_1", + "childs": [ + { + "nid": 1684304072, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 1321492681, + "strtype": "_style/StyleState", + "strval": "USER_2", + "childs": [ + { + "nid": -1158481491, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -871207030, + "strtype": "_style/StyleState", + "strval": "USER_3", + "childs": [ + { + "nid": -1141342674, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 2025685259, + "strtype": "_style/StyleState", + "strval": "USER_4", + "childs": [ + { + "nid": -1719845381, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + } + ], + "nid": 1693716685, + "strtype": "BUTTON/Style_main", + "strval": "lv.PART.MAIN, Rectangle, Pad, Text ", + "InheritedType": 11 + }, + { + "disabled": false, + "nid": -1515963209, + "strtype": "_event/EventHandler", + "strval": "CLICKED", + "childs": [ + { + "nid": -837493316, + "strtype": "_custom/name", + "strval": "closebuttonclicked", + "InheritedType": 10 + }, + { + "nid": -1613558854, + "strtype": "_custom/condition_C", + "strval": "", + "InheritedType": 10 + }, + { + "nid": 113723748, + "strtype": "_custom/condition_P", + "strval": "", + "InheritedType": 10 + }, + { + "nid": 789895350, + "strtype": "_event/action", + "strval": "CHANGE SCREEN", + "childs": [ + { + "nid": -744240497, + "strtype": "CHANGE SCREEN/Name", + "strval": "CHANGE SCREEN", + "InheritedType": 10 + }, + { + "nid": 1353260000, + "strtype": "CHANGE SCREEN/Call", + "strval": "ChangeScreen( <{Screen_to}>, lv.SCR_LOAD_ANIM.<{Fade_mode}>, <{Speed}>, <{Delay}>)", + "InheritedType": 10 + }, + { + "nid": -1411868270, + "strtype": "CHANGE SCREEN/CallC", + "strval": "_ui_screen_change( &<{Screen_to}>, LV_SCR_LOAD_ANIM_<{Fade_mode}>, <{Speed}>, <{Delay}>, &<{Screen_to}>_screen_init);", + "InheritedType": 10 + }, + { + "nid": 1194108977, + "strtype": "CHANGE SCREEN/Screen_to", + "strval": "GUID89464801-598592S871293", + "InheritedType": 9 + }, + { + "nid": 1199658682, + "strtype": "CHANGE SCREEN/Fade_mode", + "strval": "MOVE_LEFT", + "InheritedType": 3 + }, + { + "nid": 1163567255, + "strtype": "CHANGE SCREEN/Speed", + "integer": 100, + "InheritedType": 6 + }, + { + "nid": 1059492776, + "strtype": "CHANGE SCREEN/Delay", + "InheritedType": 6 + } + ], + "InheritedType": 10 + } + ], + "InheritedType": 4 + } + ], + "saved_objtypeKey": "BUTTON" + }, + { + "guid": "GUID6309509-188119S5811311", + "deepid": -1180335275, + "locked": false, + "properties": [ + { + "nid": 1510858959, + "strtype": "OBJECT/Name", + "strval": "Screen1 Label5", + "InheritedType": 10 + }, + { + "nid": -682677104, + "strtype": "LABEL/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": -15465667, + "strtype": "LABEL/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": 393675504, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": 1452969984, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 0, + 0 + ], + "InheritedType": 7 + }, + { + "nid": -4138425, + "flags": 51, + "strtype": "OBJECT/Size", + "intarray": [ + 1, + 1 + ], + "InheritedType": 7 + }, + { + "nid": 1548006736, + "strtype": "OBJECT/Align", + "strval": "CENTER", + "InheritedType": 3 + }, + { + "nid": -1650731956, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": 1944371193, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1613848643, + "strtype": "OBJECT/Clickable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -489951652, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1688808660, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1852805478, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1683101901, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1449420883, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1128694896, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -87265228, + "strtype": "LABEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1638365110, + "strtype": "LABEL/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -294309747, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -746252407, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1516495233, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1771450641, + "strtype": "OBJECT/Scrollable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 332106176, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1967322048, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1081970217, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 687442634, + "strtype": "OBJECT/Scroll_chain", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -126192545, + "strtype": "LABEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -800586981, + "strtype": "OBJECT/Scroll_one", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1139538187, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": 1431038454, + "strtype": "OBJECT/Scroll_direction", + "strval": "ALL", + "InheritedType": 3 + }, + { + "nid": 773544234, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": -800857330, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -697414858, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -122047763, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -544103514, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1028724016, + "strtype": "LABEL/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -854003502, + "strtype": "LABEL/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 630693483, + "strtype": "LABEL/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -444573859, + "strtype": "LABEL/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 2099318370, + "strtype": "LABEL/Label", + "InheritedType": 1 + }, + { + "nid": -1392059186, + "strtype": "LABEL/Long_mode", + "strval": "WRAP", + "InheritedType": 3 + }, + { + "nid": 1209562768, + "strtype": "LABEL/Text", + "strval": "Settings", + "InheritedType": 10 + }, + { + "part": "lv.PART.MAIN", + "childs": [], + "nid": 1508559270, + "strtype": "LABEL/Style_main", + "strval": "lv.PART.MAIN, Text, Rectangle, Pad", + "InheritedType": 11 + }, + { + "nid": 748402945, + "strtype": "LABEL/Recolor", + "strval": "False", + "InheritedType": 2 + } + ], + "saved_objtypeKey": "LABEL" + } + ], + "locked": false, + "properties": [ + { + "nid": 969798039, + "strtype": "OBJECT/Name", + "strval": "header1", + "InheritedType": 10 + }, + { + "nid": 1472425386, + "strtype": "PANEL/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": 1036155463, + "strtype": "PANEL/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": 1581082210, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": 1826503983, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 0, + 0 + ], + "InheritedType": 7 + }, + { + "nid": -1007318253, + "flags": 18, + "strtype": "OBJECT/Size", + "intarray": [ + 100, + 75 + ], + "InheritedType": 7 + }, + { + "nid": -977181891, + "strtype": "OBJECT/Align", + "strval": "TOP_MID", + "InheritedType": 3 + }, + { + "nid": -1247652904, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": 360104754, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1238550443, + "strtype": "OBJECT/Clickable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -873545390, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1168285312, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1886953255, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 2032672946, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1916457756, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -668595607, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1017244699, + "strtype": "PANEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1603991957, + "strtype": "PANEL/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1859801446, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1769127878, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1970413352, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 902843190, + "strtype": "OBJECT/Scrollable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -84410102, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1688302573, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -688003906, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -217396211, + "strtype": "OBJECT/Scroll_chain", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 8829025, + "strtype": "PANEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -968116429, + "strtype": "OBJECT/Scroll_one", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -66620511, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": -1934856363, + "strtype": "OBJECT/Scroll_direction", + "strval": "ALL", + "InheritedType": 3 + }, + { + "nid": 850030692, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": -63130348, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1735410726, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1202133546, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 986357925, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 169045231, + "strtype": "PANEL/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 506895759, + "strtype": "PANEL/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1394573636, + "strtype": "PANEL/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1870933936, + "strtype": "PANEL/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "part": "lv.PART.MAIN", + "childs": [], + "nid": 1730033866, + "strtype": "PANEL/Style_main", + "strval": "lv.PART.MAIN, Rectangle, Pad, Text", + "InheritedType": 11 + }, + { + "part": "lv.PART.SCROLLBAR", + "childs": [], + "nid": 932875600, + "strtype": "PANEL/Style_scrollbar", + "strval": "lv.PART.SCROLLBAR, Rectangle, Pad", + "InheritedType": 11 + } + ], + "saved_objtypeKey": "PANEL" + }, + { + "guid": "GUID75257134-188603S6131311", + "deepid": 1706283088, + "children": [ + { + "guid": "GUID91240927-189511S1951311", + "deepid": 360687305, + "children": [ + { + "guid": "GUID52319682-189113S1781311", + "deepid": -202353456, + "locked": false, + "properties": [ + { + "nid": 1806376669, + "strtype": "OBJECT/Name", + "strval": "volumebar", + "InheritedType": 10 + }, + { + "nid": 938152199, + "strtype": "BAR/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": -1289685334, + "strtype": "BAR/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": 111495273, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": -1990081592, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 25, + 0 + ], + "InheritedType": 7 + }, + { + "nid": 1631576004, + "flags": 17, + "strtype": "OBJECT/Size", + "intarray": [ + 130, + 10 + ], + "InheritedType": 7 + }, + { + "nid": 346281212, + "strtype": "OBJECT/Align", + "strval": "CENTER", + "InheritedType": 3 + }, + { + "nid": 1822981541, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": 4292027, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -8206887, + "strtype": "OBJECT/Clickable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 184026762, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -2113967387, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1429090687, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1428349346, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 668149518, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1855530764, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -2141193927, + "strtype": "BAR/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 2046319247, + "strtype": "BAR/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1492531625, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1553484465, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1321515440, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -107284910, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1880595572, + "strtype": "BAR/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -2029594041, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": 536911714, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -966015859, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1940176824, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 676852539, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1773039634, + "strtype": "BAR/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1062808773, + "strtype": "BAR/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 2076250507, + "strtype": "BAR/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -212338632, + "strtype": "BAR/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1951628896, + "strtype": "BAR/Bar", + "InheritedType": 1 + }, + { + "nid": -137659985, + "strtype": "BAR/Range", + "intarray": [ + 0, + 100 + ], + "InheritedType": 7 + }, + { + "nid": -1703216607, + "strtype": "BAR/Value", + "integer": 25, + "InheritedType": 6 + }, + { + "part": "lv.PART.MAIN", + "childs": [], + "nid": 1818187202, + "strtype": "BAR/Style_main", + "strval": "lv.PART.MAIN, Rectangle, Pad, Anim1", + "InheritedType": 11 + }, + { + "part": "lv.PART.INDICATOR", + "childs": [], + "nid": 1545285503, + "strtype": "BAR/Style_indicator", + "strval": "lv.PART.INDICATOR, Rectangle", + "InheritedType": 11 + }, + { + "nid": -788568469, + "strtype": "BAR/Mode", + "strval": "NORMAL", + "InheritedType": 3 + }, + { + "nid": 595901786, + "strtype": "BAR/Value_start", + "InheritedType": 6 + } + ], + "saved_objtypeKey": "BAR" + }, + { + "guid": "GUID39279483-190724S9841311", + "deepid": 1747205136, + "children": [ + { + "guid": "GUID99944086-191235S8571311", + "deepid": 772475347, + "locked": false, + "properties": [ + { + "nid": -1930038249, + "strtype": "OBJECT/Name", + "strval": "settingsscreen Label1", + "InheritedType": 10 + }, + { + "nid": 1577706513, + "strtype": "LABEL/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": 621759652, + "strtype": "LABEL/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": 727275177, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": 1217812799, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 0, + 0 + ], + "InheritedType": 7 + }, + { + "nid": -1569293951, + "flags": 51, + "strtype": "OBJECT/Size", + "intarray": [ + 1, + 1 + ], + "InheritedType": 7 + }, + { + "nid": -1034285378, + "strtype": "OBJECT/Align", + "strval": "CENTER", + "InheritedType": 3 + }, + { + "nid": 1427950476, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": 114472909, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 863137164, + "strtype": "OBJECT/Clickable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1564109199, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1270782612, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1546869336, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 2143829452, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1122946853, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1614310473, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1825790592, + "strtype": "LABEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 782691670, + "strtype": "LABEL/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 356637142, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1251302715, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1573807157, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1660773874, + "strtype": "OBJECT/Scrollable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1229019489, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1691046641, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1419971448, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1532357228, + "strtype": "OBJECT/Scroll_chain", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1520868608, + "strtype": "LABEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1950576810, + "strtype": "OBJECT/Scroll_one", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1596909560, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": -1191335171, + "strtype": "OBJECT/Scroll_direction", + "strval": "ALL", + "InheritedType": 3 + }, + { + "nid": -1849663476, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": 80910747, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -792548392, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -710030846, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -923396291, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 263484897, + "strtype": "LABEL/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -327784695, + "strtype": "LABEL/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 2140510441, + "strtype": "LABEL/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1363132655, + "strtype": "LABEL/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -180305815, + "strtype": "LABEL/Label", + "InheritedType": 1 + }, + { + "nid": 991706278, + "strtype": "LABEL/Long_mode", + "strval": "WRAP", + "InheritedType": 3 + }, + { + "nid": 657855460, + "strtype": "LABEL/Text", + "strval": "LV_SYMBOL_MUTE", + "InheritedType": 10 + }, + { + "part": "lv.PART.MAIN", + "childs": [], + "nid": -400461348, + "strtype": "LABEL/Style_main", + "strval": "lv.PART.MAIN, Text, Rectangle, Pad", + "InheritedType": 11 + }, + { + "nid": -777522670, + "strtype": "LABEL/Recolor", + "strval": "False", + "InheritedType": 2 + } + ], + "saved_objtypeKey": "LABEL", + "tree_closed": true + } + ], + "locked": false, + "properties": [ + { + "nid": 1314244594, + "strtype": "OBJECT/Name", + "strval": "mutebutton", + "InheritedType": 10 + }, + { + "nid": -1163851501, + "strtype": "BUTTON/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": 828386425, + "strtype": "BUTTON/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": 2011383751, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": -1606224578, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 0, + 0 + ], + "InheritedType": 7 + }, + { + "nid": -1850645733, + "flags": 17, + "strtype": "OBJECT/Size", + "intarray": [ + 32, + 32 + ], + "InheritedType": 7 + }, + { + "nid": 1567052015, + "strtype": "OBJECT/Align", + "strval": "LEFT_MID", + "InheritedType": 3 + }, + { + "nid": 2032998091, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": 1316352421, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1567560698, + "strtype": "OBJECT/Clickable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -352891432, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -424967916, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 139271125, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1331076241, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 453208867, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 2132295609, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 19022132, + "strtype": "BUTTON/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -183081135, + "strtype": "BUTTON/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1305038990, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 704389032, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1253325469, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -564890079, + "strtype": "OBJECT/Scrollable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -425994999, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -365006970, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1347643693, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1348549192, + "strtype": "OBJECT/Scroll_chain", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 592708066, + "strtype": "BUTTON/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1651658965, + "strtype": "OBJECT/Scroll_one", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -952810438, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": 217474460, + "strtype": "OBJECT/Scroll_direction", + "strval": "ALL", + "InheritedType": 3 + }, + { + "nid": 976981262, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": -764514508, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1264052488, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1550315557, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1042146404, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -2035581471, + "strtype": "BUTTON/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -993255745, + "strtype": "BUTTON/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1139761678, + "strtype": "BUTTON/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1948161057, + "strtype": "BUTTON/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "part": "lv.PART.MAIN", + "childs": [ + { + "nid": -1963477684, + "strtype": "_style/StyleState", + "strval": "DEFAULT", + "childs": [ + { + "nid": 804525227, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 1977841536, + "strtype": "_style/StyleState", + "strval": "CHECKED", + "childs": [ + { + "nid": -646849286, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 291661444, + "strtype": "_style/StyleState", + "strval": "PRESSED", + "childs": [ + { + "nid": 402680812, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 893732090, + "strtype": "_style/StyleState", + "strval": "DISABLED", + "childs": [ + { + "nid": -1264673563, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -409517455, + "strtype": "_style/StyleState", + "strval": "FOCUSED", + "childs": [ + { + "nid": -1240681811, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -798263956, + "strtype": "_style/StyleState", + "strval": "CHECKED|PRESSED", + "childs": [ + { + "nid": -1561609902, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -943929336, + "strtype": "_style/StyleState", + "strval": "USER_1", + "childs": [ + { + "nid": -1992252355, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 996755627, + "strtype": "_style/StyleState", + "strval": "USER_2", + "childs": [ + { + "nid": 1539125682, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -119684639, + "strtype": "_style/StyleState", + "strval": "USER_3", + "childs": [ + { + "nid": -1643594842, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -1388448097, + "strtype": "_style/StyleState", + "strval": "USER_4", + "childs": [ + { + "nid": 1540924606, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + } + ], + "nid": 1025397561, + "strtype": "BUTTON/Style_main", + "strval": "lv.PART.MAIN, Rectangle, Pad, Text ", + "InheritedType": 11 + } + ], + "saved_objtypeKey": "BUTTON" + }, + { + "guid": "GUID70689077-190021S101311", + "deepid": 1974200836, + "children": [ + { + "guid": "GUID56706892-191487S6101311", + "deepid": 772475347, + "locked": false, + "properties": [ + { + "nid": 1911332451, + "strtype": "OBJECT/Name", + "strval": "settingsscreen Label2", + "InheritedType": 10 + }, + { + "nid": 1707308654, + "strtype": "LABEL/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": -1201821741, + "strtype": "LABEL/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": 727625556, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": 1865084510, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 0, + 0 + ], + "InheritedType": 7 + }, + { + "nid": -944066216, + "flags": 51, + "strtype": "OBJECT/Size", + "intarray": [ + 1, + 1 + ], + "InheritedType": 7 + }, + { + "nid": -1937637338, + "strtype": "OBJECT/Align", + "strval": "CENTER", + "InheritedType": 3 + }, + { + "nid": 1649159456, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": -1625138221, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1544516067, + "strtype": "OBJECT/Clickable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1747243890, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 570465972, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1522545778, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -134510517, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -4916114, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 2103578648, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1007748611, + "strtype": "LABEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -808303262, + "strtype": "LABEL/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1020231027, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1022920755, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1071647246, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1796043576, + "strtype": "OBJECT/Scrollable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1164169774, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1180255750, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1014042856, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -563926185, + "strtype": "OBJECT/Scroll_chain", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 637276521, + "strtype": "LABEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1571691970, + "strtype": "OBJECT/Scroll_one", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1969626086, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": 1278583339, + "strtype": "OBJECT/Scroll_direction", + "strval": "ALL", + "InheritedType": 3 + }, + { + "nid": -1419625726, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": 1737166595, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1845941990, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 449414225, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 914365736, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1862294777, + "strtype": "LABEL/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1240512188, + "strtype": "LABEL/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 381436547, + "strtype": "LABEL/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 386688045, + "strtype": "LABEL/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1930619190, + "strtype": "LABEL/Label", + "InheritedType": 1 + }, + { + "nid": 226095567, + "strtype": "LABEL/Long_mode", + "strval": "WRAP", + "InheritedType": 3 + }, + { + "nid": -1885892812, + "strtype": "LABEL/Text", + "strval": "LV_SYMBOL_VOLUME_MID", + "InheritedType": 10 + }, + { + "part": "lv.PART.MAIN", + "childs": [], + "nid": -656991961, + "strtype": "LABEL/Style_main", + "strval": "lv.PART.MAIN, Text, Rectangle, Pad", + "InheritedType": 11 + }, + { + "nid": -523790132, + "strtype": "LABEL/Recolor", + "strval": "False", + "InheritedType": 2 + } + ], + "saved_objtypeKey": "LABEL", + "tree_closed": true + } + ], + "locked": false, + "properties": [ + { + "nid": -746253711, + "strtype": "OBJECT/Name", + "strval": "volumedownbutton", + "InheritedType": 10 + }, + { + "nid": -1527321573, + "strtype": "BUTTON/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": -1128055653, + "strtype": "BUTTON/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": 1166350434, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": -1791561707, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 52, + 0 + ], + "InheritedType": 7 + }, + { + "nid": -1594956429, + "flags": 17, + "strtype": "OBJECT/Size", + "intarray": [ + 32, + 32 + ], + "InheritedType": 7 + }, + { + "nid": 1017266635, + "strtype": "OBJECT/Align", + "strval": "LEFT_MID", + "InheritedType": 3 + }, + { + "nid": -815408647, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": -1680791222, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1715200079, + "strtype": "OBJECT/Clickable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1329704091, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -2060547337, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1383511263, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 314555331, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -595472266, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 601311889, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1834019584, + "strtype": "BUTTON/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 2097176023, + "strtype": "BUTTON/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -385306667, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -2011816227, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 689963481, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1679703758, + "strtype": "OBJECT/Scrollable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -351632952, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -217333946, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1169521470, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1542823923, + "strtype": "OBJECT/Scroll_chain", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -718944319, + "strtype": "BUTTON/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1369949633, + "strtype": "OBJECT/Scroll_one", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -602771881, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": -165877659, + "strtype": "OBJECT/Scroll_direction", + "strval": "ALL", + "InheritedType": 3 + }, + { + "nid": 670891205, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": 1454352202, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1993249019, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1754361429, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -961791522, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1696273742, + "strtype": "BUTTON/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -776047682, + "strtype": "BUTTON/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 383135242, + "strtype": "BUTTON/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -681924605, + "strtype": "BUTTON/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "part": "lv.PART.MAIN", + "childs": [ + { + "nid": -354381304, + "strtype": "_style/StyleState", + "strval": "DEFAULT", + "childs": [ + { + "nid": -605100093, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -1978918108, + "strtype": "_style/StyleState", + "strval": "CHECKED", + "childs": [ + { + "nid": 589499370, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 1939344138, + "strtype": "_style/StyleState", + "strval": "PRESSED", + "childs": [ + { + "nid": -1944653915, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -1906989276, + "strtype": "_style/StyleState", + "strval": "DISABLED", + "childs": [ + { + "nid": 1332028778, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -43921586, + "strtype": "_style/StyleState", + "strval": "FOCUSED", + "childs": [ + { + "nid": -1605804807, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 2091935010, + "strtype": "_style/StyleState", + "strval": "CHECKED|PRESSED", + "childs": [ + { + "nid": -1777906871, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 119779901, + "strtype": "_style/StyleState", + "strval": "USER_1", + "childs": [ + { + "nid": -1389514147, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 203190829, + "strtype": "_style/StyleState", + "strval": "USER_2", + "childs": [ + { + "nid": -559496242, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -1518645458, + "strtype": "_style/StyleState", + "strval": "USER_3", + "childs": [ + { + "nid": 480891658, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -649320136, + "strtype": "_style/StyleState", + "strval": "USER_4", + "childs": [ + { + "nid": 1830367566, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + } + ], + "nid": -1856289680, + "strtype": "BUTTON/Style_main", + "strval": "lv.PART.MAIN, Rectangle, Pad, Text ", + "InheritedType": 11 + } + ], + "saved_objtypeKey": "BUTTON" + }, + { + "guid": "GUID20371102-190258S611311", + "deepid": 1747205136, + "children": [ + { + "guid": "GUID63125033-190725S2991311", + "deepid": 772475347, + "locked": false, + "properties": [ + { + "nid": -142981181, + "strtype": "OBJECT/Name", + "strval": "settingsscreen Label3", + "InheritedType": 10 + }, + { + "nid": -1265444769, + "strtype": "LABEL/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": -1614295455, + "strtype": "LABEL/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": -322276688, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": 1182201210, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 0, + 0 + ], + "InheritedType": 7 + }, + { + "nid": -626021048, + "flags": 51, + "strtype": "OBJECT/Size", + "intarray": [ + 1, + 1 + ], + "InheritedType": 7 + }, + { + "nid": 323591277, + "strtype": "OBJECT/Align", + "strval": "CENTER", + "InheritedType": 3 + }, + { + "nid": 1806436848, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": 2052886501, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -756145973, + "strtype": "OBJECT/Clickable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 102261043, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1925839109, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -104060684, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1743780865, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -2074545012, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1335630866, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 829420721, + "strtype": "LABEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 850319726, + "strtype": "LABEL/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1574073009, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1410644096, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -307985432, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1941627508, + "strtype": "OBJECT/Scrollable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1813005716, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1757119516, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1958885368, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -917609384, + "strtype": "OBJECT/Scroll_chain", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1256546021, + "strtype": "LABEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1233948796, + "strtype": "OBJECT/Scroll_one", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -784485020, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": -220079138, + "strtype": "OBJECT/Scroll_direction", + "strval": "ALL", + "InheritedType": 3 + }, + { + "nid": 1577768451, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": 77636456, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -900778478, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -372703794, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 2052347946, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 120644699, + "strtype": "LABEL/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -728887151, + "strtype": "LABEL/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 461133867, + "strtype": "LABEL/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 2131163921, + "strtype": "LABEL/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1169275378, + "strtype": "LABEL/Label", + "InheritedType": 1 + }, + { + "nid": -922162139, + "strtype": "LABEL/Long_mode", + "strval": "WRAP", + "InheritedType": 3 + }, + { + "nid": -137675359, + "strtype": "LABEL/Text", + "strval": "LV_SYMBOL_VOLUME_MAX", + "InheritedType": 10 + }, + { + "part": "lv.PART.MAIN", + "childs": [], + "nid": 1316225288, + "strtype": "LABEL/Style_main", + "strval": "lv.PART.MAIN, Text, Rectangle, Pad", + "InheritedType": 11 + }, + { + "nid": 768272301, + "strtype": "LABEL/Recolor", + "strval": "False", + "InheritedType": 2 + } + ], + "saved_objtypeKey": "LABEL", + "tree_closed": true + } + ], + "locked": false, + "properties": [ + { + "nid": -1705231511, + "strtype": "OBJECT/Name", + "strval": "volumeupbutton", + "InheritedType": 10 + }, + { + "nid": 1247906897, + "strtype": "BUTTON/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": -1931369946, + "strtype": "BUTTON/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": -1571273727, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": -1424554210, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 0, + 0 + ], + "InheritedType": 7 + }, + { + "nid": -1155548983, + "flags": 17, + "strtype": "OBJECT/Size", + "intarray": [ + 32, + 32 + ], + "InheritedType": 7 + }, + { + "nid": -2081178700, + "strtype": "OBJECT/Align", + "strval": "RIGHT_MID", + "InheritedType": 3 + }, + { + "nid": 240348769, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": 935377156, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 825900336, + "strtype": "OBJECT/Clickable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -567562748, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1938984707, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 371394221, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1152434413, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -727175755, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1897018523, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 2104309256, + "strtype": "BUTTON/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1796157885, + "strtype": "BUTTON/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1574630580, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -194209759, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -948805450, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -265584907, + "strtype": "OBJECT/Scrollable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1570739697, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 278200667, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 791786176, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1005994103, + "strtype": "OBJECT/Scroll_chain", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1899429081, + "strtype": "BUTTON/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1299168848, + "strtype": "OBJECT/Scroll_one", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1764176376, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": -1979981796, + "strtype": "OBJECT/Scroll_direction", + "strval": "ALL", + "InheritedType": 3 + }, + { + "nid": -1957502173, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": 477768546, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -690279378, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1770308251, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -319824094, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1941219782, + "strtype": "BUTTON/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -961853808, + "strtype": "BUTTON/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1400004300, + "strtype": "BUTTON/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1735276269, + "strtype": "BUTTON/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "part": "lv.PART.MAIN", + "childs": [ + { + "nid": -1545243699, + "strtype": "_style/StyleState", + "strval": "DEFAULT", + "childs": [ + { + "nid": -1629488294, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 905959141, + "strtype": "_style/StyleState", + "strval": "CHECKED", + "childs": [ + { + "nid": 254984273, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 1136049512, + "strtype": "_style/StyleState", + "strval": "PRESSED", + "childs": [ + { + "nid": -1851884098, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -1745526127, + "strtype": "_style/StyleState", + "strval": "DISABLED", + "childs": [ + { + "nid": 1593383193, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -1128162331, + "strtype": "_style/StyleState", + "strval": "FOCUSED", + "childs": [ + { + "nid": 1589075712, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 1573831745, + "strtype": "_style/StyleState", + "strval": "CHECKED|PRESSED", + "childs": [ + { + "nid": -1536446511, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 759433610, + "strtype": "_style/StyleState", + "strval": "USER_1", + "childs": [ + { + "nid": 1035639364, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 1842292616, + "strtype": "_style/StyleState", + "strval": "USER_2", + "childs": [ + { + "nid": 836940462, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 1848831846, + "strtype": "_style/StyleState", + "strval": "USER_3", + "childs": [ + { + "nid": 282866697, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 1890301583, + "strtype": "_style/StyleState", + "strval": "USER_4", + "childs": [ + { + "nid": -86427093, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + } + ], + "nid": -981339932, + "strtype": "BUTTON/Style_main", + "strval": "lv.PART.MAIN, Rectangle, Pad, Text ", + "InheritedType": 11 + } + ], + "saved_objtypeKey": "BUTTON" + } + ], + "locked": false, + "properties": [ + { + "nid": 1622370266, + "strtype": "OBJECT/Name", + "strval": "volumepanel", + "InheritedType": 10 + }, + { + "nid": 1159335384, + "strtype": "PANEL/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": 1444508218, + "strtype": "PANEL/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": -40984885, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": -1530809409, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 0, + 0 + ], + "InheritedType": 7 + }, + { + "nid": -449850928, + "flags": 18, + "strtype": "OBJECT/Size", + "intarray": [ + 100, + 50 + ], + "InheritedType": 7 + }, + { + "nid": -1328915473, + "strtype": "OBJECT/Align", + "strval": "TOP_MID", + "InheritedType": 3 + }, + { + "nid": -38472910, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": -2070226347, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1039718249, + "strtype": "OBJECT/Clickable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1984946195, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -357265162, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1423310606, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 680677753, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1919299339, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1959043473, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -2119244613, + "strtype": "PANEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1081628134, + "strtype": "PANEL/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1101057787, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 659031435, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 832573248, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1030948237, + "strtype": "OBJECT/Scrollable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1209319722, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 847928562, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -66310528, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -586328854, + "strtype": "OBJECT/Scroll_chain", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 457441885, + "strtype": "PANEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1467473907, + "strtype": "OBJECT/Scroll_one", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -779691917, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": -396414551, + "strtype": "OBJECT/Scroll_direction", + "strval": "ALL", + "InheritedType": 3 + }, + { + "nid": -1835541357, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": 1862865437, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1176463440, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1781783900, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -613627066, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1411820450, + "strtype": "PANEL/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1251465956, + "strtype": "PANEL/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1384720524, + "strtype": "PANEL/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 837510650, + "strtype": "PANEL/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "part": "lv.PART.MAIN", + "childs": [], + "nid": -1420950959, + "strtype": "PANEL/Style_main", + "strval": "lv.PART.MAIN, Rectangle, Pad, Text", + "InheritedType": 11 + }, + { + "part": "lv.PART.SCROLLBAR", + "childs": [], + "nid": 847802074, + "strtype": "PANEL/Style_scrollbar", + "strval": "lv.PART.SCROLLBAR, Rectangle, Pad", + "InheritedType": 11 + } + ], + "saved_objtypeKey": "PANEL" + }, + { + "guid": "GUID4916518-747474S4202337", + "deepid": 360687305, + "children": [ + { + "guid": "GUID19741898-745067S4142337", + "deepid": -202353456, + "locked": false, + "properties": [ + { + "nid": -738295509, + "strtype": "OBJECT/Name", + "strval": "brightnessbar", + "InheritedType": 10 + }, + { + "nid": 973471479, + "strtype": "BAR/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": -639903223, + "strtype": "BAR/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": -1840381173, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": 1480662409, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 0, + 0 + ], + "InheritedType": 7 + }, + { + "nid": -303873145, + "flags": 17, + "strtype": "OBJECT/Size", + "intarray": [ + 180, + 10 + ], + "InheritedType": 7 + }, + { + "nid": 1284404183, + "strtype": "OBJECT/Align", + "strval": "CENTER", + "InheritedType": 3 + }, + { + "nid": 278468908, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": -725786158, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 361704891, + "strtype": "OBJECT/Clickable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 2029752577, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1254122124, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1904588042, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1336890090, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1796013522, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 888345785, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1289566690, + "strtype": "BAR/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1901120100, + "strtype": "BAR/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -741061658, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -535923061, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 2092899471, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1628777875, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1950246748, + "strtype": "BAR/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1953735479, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": -787211172, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 85166279, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1814409877, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -271687810, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -877389930, + "strtype": "BAR/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1286237530, + "strtype": "BAR/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1278966723, + "strtype": "BAR/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1917905245, + "strtype": "BAR/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1510861439, + "strtype": "BAR/Bar", + "InheritedType": 1 + }, + { + "nid": 1295892718, + "strtype": "BAR/Range", + "intarray": [ + 0, + 100 + ], + "InheritedType": 7 + }, + { + "nid": 658353927, + "strtype": "BAR/Value", + "integer": 100, + "InheritedType": 6 + }, + { + "part": "lv.PART.MAIN", + "childs": [], + "nid": -272316128, + "strtype": "BAR/Style_main", + "strval": "lv.PART.MAIN, Rectangle, Pad, Anim1", + "InheritedType": 11 + }, + { + "part": "lv.PART.INDICATOR", + "childs": [], + "nid": 571866023, + "strtype": "BAR/Style_indicator", + "strval": "lv.PART.INDICATOR, Rectangle", + "InheritedType": 11 + }, + { + "nid": -1945140, + "strtype": "BAR/Mode", + "strval": "NORMAL", + "InheritedType": 3 + }, + { + "nid": -1406158434, + "strtype": "BAR/Value_start", + "InheritedType": 6 + } + ], + "saved_objtypeKey": "BAR" + }, + { + "guid": "GUID75236848-746671S4192337", + "deepid": 1974200836, + "children": [ + { + "guid": "GUID87342077-746670S4192337", + "deepid": 772475347, + "locked": false, + "properties": [ + { + "nid": -1529146747, + "strtype": "OBJECT/Name", + "strval": "settingsscreen Label10", + "InheritedType": 10 + }, + { + "nid": -1155045093, + "strtype": "LABEL/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": 30824597, + "strtype": "LABEL/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": -1376438412, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": -1165059409, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 0, + 0 + ], + "InheritedType": 7 + }, + { + "nid": 949142992, + "flags": 51, + "strtype": "OBJECT/Size", + "intarray": [ + 1, + 1 + ], + "InheritedType": 7 + }, + { + "nid": -568941105, + "strtype": "OBJECT/Align", + "strval": "CENTER", + "InheritedType": 3 + }, + { + "nid": 790951901, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": 1845591762, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1949959597, + "strtype": "OBJECT/Clickable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1686332246, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 36930403, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1386094556, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 438489441, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -363973540, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 643421907, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1294369873, + "strtype": "LABEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 166807059, + "strtype": "LABEL/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 668848645, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 694938542, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1417968582, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -982583336, + "strtype": "OBJECT/Scrollable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -803307037, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1495225510, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1309257865, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -544067167, + "strtype": "OBJECT/Scroll_chain", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1175885661, + "strtype": "LABEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1366315529, + "strtype": "OBJECT/Scroll_one", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -25481969, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": -1916246220, + "strtype": "OBJECT/Scroll_direction", + "strval": "ALL", + "InheritedType": 3 + }, + { + "nid": 1912969623, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": 40214741, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 533784686, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -360206237, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1608246511, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1136043065, + "strtype": "LABEL/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -128064615, + "strtype": "LABEL/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 756432390, + "strtype": "LABEL/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -237544363, + "strtype": "LABEL/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -989147795, + "strtype": "LABEL/Label", + "InheritedType": 1 + }, + { + "nid": 1807964350, + "strtype": "LABEL/Long_mode", + "strval": "WRAP", + "InheritedType": 3 + }, + { + "nid": 1845919193, + "strtype": "LABEL/Text", + "strval": "LV_SYMBOL_MINUS", + "InheritedType": 10 + }, + { + "part": "lv.PART.MAIN", + "childs": [], + "nid": 127800616, + "strtype": "LABEL/Style_main", + "strval": "lv.PART.MAIN, Text, Rectangle, Pad", + "InheritedType": 11 + }, + { + "nid": 423766439, + "strtype": "LABEL/Recolor", + "strval": "False", + "InheritedType": 2 + } + ], + "saved_objtypeKey": "LABEL", + "tree_closed": true + } + ], + "locked": false, + "properties": [ + { + "nid": 2057473867, + "strtype": "OBJECT/Name", + "strval": "brightnessdownbutton", + "InheritedType": 10 + }, + { + "nid": -2042565458, + "strtype": "BUTTON/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": 1756758074, + "strtype": "BUTTON/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": 329147494, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": 927827203, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 0, + 0 + ], + "InheritedType": 7 + }, + { + "nid": -2112792513, + "flags": 17, + "strtype": "OBJECT/Size", + "intarray": [ + 32, + 32 + ], + "InheritedType": 7 + }, + { + "nid": 1572944664, + "strtype": "OBJECT/Align", + "strval": "LEFT_MID", + "InheritedType": 3 + }, + { + "nid": -858267972, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": 1436935711, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1295447823, + "strtype": "OBJECT/Clickable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1873862121, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1493868473, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1007140180, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 512791942, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 400061509, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 955034826, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1940530720, + "strtype": "BUTTON/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 611124010, + "strtype": "BUTTON/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1936819326, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -2125670561, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -568256806, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 435156754, + "strtype": "OBJECT/Scrollable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -543325638, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -621198240, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 985660408, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1352098838, + "strtype": "OBJECT/Scroll_chain", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1415736238, + "strtype": "BUTTON/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1761881304, + "strtype": "OBJECT/Scroll_one", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1988957352, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": 195934548, + "strtype": "OBJECT/Scroll_direction", + "strval": "ALL", + "InheritedType": 3 + }, + { + "nid": 1533995458, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": -319150599, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 2052254641, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -292482148, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1553754714, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1146107216, + "strtype": "BUTTON/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1411803494, + "strtype": "BUTTON/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -2089870469, + "strtype": "BUTTON/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -65962083, + "strtype": "BUTTON/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "part": "lv.PART.MAIN", + "childs": [ + { + "nid": 210168565, + "strtype": "_style/StyleState", + "strval": "DEFAULT", + "childs": [ + { + "nid": 1900085492, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 1457145552, + "strtype": "_style/StyleState", + "strval": "CHECKED", + "childs": [ + { + "nid": -532874830, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 1186274240, + "strtype": "_style/StyleState", + "strval": "PRESSED", + "childs": [ + { + "nid": 1959673655, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 456716784, + "strtype": "_style/StyleState", + "strval": "DISABLED", + "childs": [ + { + "nid": -1320365827, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -1342785944, + "strtype": "_style/StyleState", + "strval": "FOCUSED", + "childs": [ + { + "nid": 1631512845, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 1747242043, + "strtype": "_style/StyleState", + "strval": "CHECKED|PRESSED", + "childs": [ + { + "nid": 1438695880, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -384397435, + "strtype": "_style/StyleState", + "strval": "USER_1", + "childs": [ + { + "nid": -573288199, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -596154329, + "strtype": "_style/StyleState", + "strval": "USER_2", + "childs": [ + { + "nid": -1787973551, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -214084982, + "strtype": "_style/StyleState", + "strval": "USER_3", + "childs": [ + { + "nid": 1874747869, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 1639595396, + "strtype": "_style/StyleState", + "strval": "USER_4", + "childs": [ + { + "nid": 2146835330, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + } + ], + "nid": -249148430, + "strtype": "BUTTON/Style_main", + "strval": "lv.PART.MAIN, Rectangle, Pad, Text ", + "InheritedType": 11 + } + ], + "saved_objtypeKey": "BUTTON" + }, + { + "guid": "GUID2642171-747473S4202337", + "deepid": 1747205136, + "children": [ + { + "guid": "GUID77486661-747472S4202337", + "deepid": 772475347, + "locked": false, + "properties": [ + { + "nid": -955806603, + "strtype": "OBJECT/Name", + "strval": "settingsscreen Label11", + "InheritedType": 10 + }, + { + "nid": -348487315, + "strtype": "LABEL/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": -1403023477, + "strtype": "LABEL/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": -122989223, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": 191987722, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 0, + 0 + ], + "InheritedType": 7 + }, + { + "nid": -1182204346, + "flags": 51, + "strtype": "OBJECT/Size", + "intarray": [ + 1, + 1 + ], + "InheritedType": 7 + }, + { + "nid": -373161335, + "strtype": "OBJECT/Align", + "strval": "CENTER", + "InheritedType": 3 + }, + { + "nid": -946857106, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": 2117528834, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1433552431, + "strtype": "OBJECT/Clickable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1538092824, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 347893387, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1275033423, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 510033468, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -984523968, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -78708474, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -290245613, + "strtype": "LABEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 693467100, + "strtype": "LABEL/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 925761143, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1018950835, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1292284538, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1844676581, + "strtype": "OBJECT/Scrollable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -807570752, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 742197711, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1616343001, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -86132046, + "strtype": "OBJECT/Scroll_chain", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1387472991, + "strtype": "LABEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1595158111, + "strtype": "OBJECT/Scroll_one", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -712410005, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": -1891987597, + "strtype": "OBJECT/Scroll_direction", + "strval": "ALL", + "InheritedType": 3 + }, + { + "nid": 946494345, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": 1531365501, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -41586593, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1853545450, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 730008479, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1236131485, + "strtype": "LABEL/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1427614831, + "strtype": "LABEL/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1156387513, + "strtype": "LABEL/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1132980990, + "strtype": "LABEL/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -37946944, + "strtype": "LABEL/Label", + "InheritedType": 1 + }, + { + "nid": -1313336038, + "strtype": "LABEL/Long_mode", + "strval": "WRAP", + "InheritedType": 3 + }, + { + "nid": 452728016, + "strtype": "LABEL/Text", + "strval": "LV_SYMBOL_PLUS", + "InheritedType": 10 + }, + { + "part": "lv.PART.MAIN", + "childs": [], + "nid": 414007950, + "strtype": "LABEL/Style_main", + "strval": "lv.PART.MAIN, Text, Rectangle, Pad", + "InheritedType": 11 + }, + { + "nid": -2080162829, + "strtype": "LABEL/Recolor", + "strval": "False", + "InheritedType": 2 + } + ], + "saved_objtypeKey": "LABEL", + "tree_closed": true + } + ], + "locked": false, + "properties": [ + { + "nid": -872385864, + "strtype": "OBJECT/Name", + "strval": "brightnessupbutton", + "InheritedType": 10 + }, + { + "nid": 1594677549, + "strtype": "BUTTON/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": -1532365221, + "strtype": "BUTTON/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": -265891535, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": 655311465, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 0, + 0 + ], + "InheritedType": 7 + }, + { + "nid": -567228037, + "flags": 17, + "strtype": "OBJECT/Size", + "intarray": [ + 32, + 32 + ], + "InheritedType": 7 + }, + { + "nid": -411076819, + "strtype": "OBJECT/Align", + "strval": "RIGHT_MID", + "InheritedType": 3 + }, + { + "nid": 904294521, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": 1774447900, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1751225163, + "strtype": "OBJECT/Clickable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 530771488, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -499210666, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1171767595, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1836836331, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1415236491, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 554742140, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1062374207, + "strtype": "BUTTON/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 749236652, + "strtype": "BUTTON/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 740086271, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1812328512, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1259915487, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -236133880, + "strtype": "OBJECT/Scrollable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1775397232, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1938119758, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1036851815, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 548115223, + "strtype": "OBJECT/Scroll_chain", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 499313070, + "strtype": "BUTTON/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1378637610, + "strtype": "OBJECT/Scroll_one", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -969930965, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": -1056169167, + "strtype": "OBJECT/Scroll_direction", + "strval": "ALL", + "InheritedType": 3 + }, + { + "nid": 1799848611, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": -1844576694, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1523666023, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1724120811, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -638631854, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1844598422, + "strtype": "BUTTON/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1638766848, + "strtype": "BUTTON/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 158838261, + "strtype": "BUTTON/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1864159581, + "strtype": "BUTTON/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "part": "lv.PART.MAIN", + "childs": [ + { + "nid": -1897775924, + "strtype": "_style/StyleState", + "strval": "DEFAULT", + "childs": [ + { + "nid": 1159706127, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -1896842128, + "strtype": "_style/StyleState", + "strval": "CHECKED", + "childs": [ + { + "nid": -1859001010, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -1645870664, + "strtype": "_style/StyleState", + "strval": "PRESSED", + "childs": [ + { + "nid": 253329484, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -978161635, + "strtype": "_style/StyleState", + "strval": "DISABLED", + "childs": [ + { + "nid": -1020647398, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 1571346511, + "strtype": "_style/StyleState", + "strval": "FOCUSED", + "childs": [ + { + "nid": -85951353, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -1335866682, + "strtype": "_style/StyleState", + "strval": "CHECKED|PRESSED", + "childs": [ + { + "nid": -376928575, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 1935952756, + "strtype": "_style/StyleState", + "strval": "USER_1", + "childs": [ + { + "nid": -1739809860, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -325335005, + "strtype": "_style/StyleState", + "strval": "USER_2", + "childs": [ + { + "nid": -1068672883, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 450864816, + "strtype": "_style/StyleState", + "strval": "USER_3", + "childs": [ + { + "nid": 526953040, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -1209969577, + "strtype": "_style/StyleState", + "strval": "USER_4", + "childs": [ + { + "nid": 697846675, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + } + ], + "nid": 361840996, + "strtype": "BUTTON/Style_main", + "strval": "lv.PART.MAIN, Rectangle, Pad, Text ", + "InheritedType": 11 + } + ], + "saved_objtypeKey": "BUTTON" + } + ], + "locked": false, + "properties": [ + { + "nid": -1845708141, + "strtype": "OBJECT/Name", + "strval": "brightnesspanel", + "InheritedType": 10 + }, + { + "nid": 1426370461, + "strtype": "PANEL/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": -285556183, + "strtype": "PANEL/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": -2067505918, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": 1105465445, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 0, + 60 + ], + "InheritedType": 7 + }, + { + "nid": 236540873, + "flags": 18, + "strtype": "OBJECT/Size", + "intarray": [ + 100, + 50 + ], + "InheritedType": 7 + }, + { + "nid": -876919645, + "strtype": "OBJECT/Align", + "strval": "TOP_MID", + "InheritedType": 3 + }, + { + "nid": 251788934, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": 1886116506, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -534866163, + "strtype": "OBJECT/Clickable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1693811190, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1016218190, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1690092112, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 569988956, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 823569940, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1720896172, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 570699954, + "strtype": "PANEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 540267855, + "strtype": "PANEL/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1254234124, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -610806801, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -568321432, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1617392137, + "strtype": "OBJECT/Scrollable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 28838458, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 295463401, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 821029820, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -637811457, + "strtype": "OBJECT/Scroll_chain", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1412516870, + "strtype": "PANEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 2088690422, + "strtype": "OBJECT/Scroll_one", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -85181245, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": -394305353, + "strtype": "OBJECT/Scroll_direction", + "strval": "ALL", + "InheritedType": 3 + }, + { + "nid": -676988821, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": 1410623698, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 997663347, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1298343472, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1072398774, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 900794096, + "strtype": "PANEL/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 808447712, + "strtype": "PANEL/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 228034003, + "strtype": "PANEL/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 444314822, + "strtype": "PANEL/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "part": "lv.PART.MAIN", + "childs": [], + "nid": 891248898, + "strtype": "PANEL/Style_main", + "strval": "lv.PART.MAIN, Rectangle, Pad, Text", + "InheritedType": 11 + }, + { + "part": "lv.PART.SCROLLBAR", + "childs": [], + "nid": -34193217, + "strtype": "PANEL/Style_scrollbar", + "strval": "lv.PART.SCROLLBAR, Rectangle, Pad", + "InheritedType": 11 + } + ], + "saved_objtypeKey": "PANEL" + }, + { + "guid": "GUID67721423-285518S3301318", + "deepid": 360687305, + "children": [ + { + "guid": "GUID80601172-285828S1941318", + "deepid": 1216628497, + "locked": false, + "properties": [ + { + "nid": -395336962, + "strtype": "OBJECT/Name", + "strval": "settingsscreen Label4", + "InheritedType": 10 + }, + { + "nid": -975656308, + "strtype": "LABEL/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": 1524061209, + "strtype": "LABEL/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": -198484168, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": -377503218, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 0, + 0 + ], + "InheritedType": 7 + }, + { + "nid": 2118515430, + "flags": 51, + "strtype": "OBJECT/Size", + "intarray": [ + 1, + 1 + ], + "InheritedType": 7 + }, + { + "nid": 566413322, + "strtype": "OBJECT/Align", + "strval": "LEFT_MID", + "InheritedType": 3 + }, + { + "nid": 1779534618, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": 1147394038, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -129110230, + "strtype": "OBJECT/Clickable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1925633316, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -713886646, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -379591550, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1937628540, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1295592968, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1336255532, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1822645585, + "strtype": "LABEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1556888129, + "strtype": "LABEL/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1487418135, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1795825425, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1920953482, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 950672431, + "strtype": "OBJECT/Scrollable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1023908935, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -120323443, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1156019654, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -262425959, + "strtype": "OBJECT/Scroll_chain", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 210024918, + "strtype": "LABEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 905269254, + "strtype": "OBJECT/Scroll_one", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1795609789, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": 1493745311, + "strtype": "OBJECT/Scroll_direction", + "strval": "ALL", + "InheritedType": 3 + }, + { + "nid": 22978483, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": 1007100097, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 2019162393, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1349845479, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 272546033, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1845005135, + "strtype": "LABEL/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 394877070, + "strtype": "LABEL/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 324129532, + "strtype": "LABEL/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1999364944, + "strtype": "LABEL/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1958402874, + "strtype": "LABEL/Label", + "InheritedType": 1 + }, + { + "nid": -907239616, + "strtype": "LABEL/Long_mode", + "strval": "WRAP", + "InheritedType": 3 + }, + { + "nid": -461244078, + "strtype": "LABEL/Text", + "strval": "Video Scaling", + "InheritedType": 10 + }, + { + "part": "lv.PART.MAIN", + "childs": [], + "nid": 557783208, + "strtype": "LABEL/Style_main", + "strval": "lv.PART.MAIN, Text, Rectangle, Pad", + "InheritedType": 11 + }, + { + "nid": -1308994622, + "strtype": "LABEL/Recolor", + "strval": "False", + "InheritedType": 2 + } + ], + "saved_objtypeKey": "LABEL" + }, + { + "guid": "GUID98772757-285519S9071318", + "deepid": 215144840, + "locked": false, + "properties": [ + { + "nid": -1499105916, + "strtype": "OBJECT/Name", + "strval": "videosettingdropdown", + "InheritedType": 10 + }, + { + "nid": -833052970, + "strtype": "DROPDOWN/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": 173517310, + "strtype": "DROPDOWN/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": 939309185, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": -337171154, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 0, + 0 + ], + "InheritedType": 7 + }, + { + "nid": -267115516, + "flags": 49, + "strtype": "OBJECT/Size", + "intarray": [ + 100, + 1 + ], + "InheritedType": 7 + }, + { + "nid": -487006894, + "strtype": "OBJECT/Align", + "strval": "RIGHT_MID", + "InheritedType": 3 + }, + { + "nid": -948410111, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": -1264268199, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -692374100, + "strtype": "OBJECT/Clickable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 871278040, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 939319439, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -528485012, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1878778983, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1190592755, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -143168306, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -97127138, + "strtype": "DROPDOWN/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1225222140, + "strtype": "DROPDOWN/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 446211051, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 790137269, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1572284371, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1639493359, + "strtype": "OBJECT/Scrollable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1659802642, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -2086235259, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 194986278, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1946057639, + "strtype": "OBJECT/Scroll_chain", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -930559496, + "strtype": "DROPDOWN/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -348276397, + "strtype": "OBJECT/Scroll_one", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -676475654, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": -331178092, + "strtype": "OBJECT/Scroll_direction", + "strval": "ALL", + "InheritedType": 3 + }, + { + "nid": -449720306, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": -184201546, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 503508826, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1867699625, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1504211368, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 403553676, + "strtype": "DROPDOWN/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1015542392, + "strtype": "DROPDOWN/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -579138380, + "strtype": "DROPDOWN/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 675325405, + "strtype": "DROPDOWN/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1723195836, + "strtype": "DROPDOWN/Label", + "InheritedType": 1 + }, + { + "nid": 1851623158, + "strtype": "DROPDOWN/Options", + "strval": "Original\\nFit\\nFill", + "InheritedType": 10 + }, + { + "nid": -607934791, + "strtype": "DROPDOWN/List_align", + "strval": "BOTTOM", + "InheritedType": 3 + }, + { + "nid": 1357876550, + "strtype": "DROPDOWN/Show_selected", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1860739319, + "strtype": "DROPDOWN/Base_text", + "strval": "", + "InheritedType": 10 + }, + { + "part": "lv.PART.MAIN", + "childs": [], + "nid": -1089257542, + "strtype": "DROPDOWN/Style_main", + "strval": "lv.PART.MAIN, Text, Rectangle, Pad", + "InheritedType": 11 + }, + { + "part": "lv.PART.INDICATOR", + "childs": [], + "nid": 1119332532, + "strtype": "DROPDOWN/Style_indicator", + "strval": "lv.PART.INDICATOR, Text", + "InheritedType": 11 + }, + { + "part": " lv.PART.MAIN", + "childs": [], + "nid": -1229826038, + "strtype": "DROPDOWN/Style_list_main", + "strval": "{\"python\":\"{0}.get_list()\",\"c\":\"lv_dropdown_get_list({0})\"} lv.PART.MAIN, Text, Rectangle, Pad", + "InheritedType": 11 + }, + { + "part": " lv.PART.SCROLLBAR", + "childs": [], + "nid": -515944636, + "strtype": "DROPDOWN/Style_list_scrollbar", + "strval": "{\"python\":\"{0}.get_list()\",\"c\":\"lv_dropdown_get_list({0})\"} lv.PART.SCROLLBAR, Rectangle, Pad", + "InheritedType": 11 + }, + { + "part": " lv.PART.SELECTED", + "childs": [], + "nid": -308311713, + "strtype": "DROPDOWN/Style_list_selected", + "strval": "{\"python\":\"{0}.get_list()\",\"c\":\"lv_dropdown_get_list({0})\"} lv.PART.SELECTED, Text, Rectangle", + "InheritedType": 11 + } + ], + "saved_objtypeKey": "DROPDOWN" + } + ], + "locked": false, + "properties": [ + { + "nid": 310569747, + "strtype": "OBJECT/Name", + "strval": "fillpanel", + "InheritedType": 10 + }, + { + "nid": -1305373989, + "strtype": "PANEL/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": -870254774, + "strtype": "PANEL/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": -780618510, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": -279061413, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 0, + 120 + ], + "InheritedType": 7 + }, + { + "nid": -1205435750, + "flags": 18, + "strtype": "OBJECT/Size", + "intarray": [ + 100, + 50 + ], + "InheritedType": 7 + }, + { + "nid": -276443251, + "strtype": "OBJECT/Align", + "strval": "TOP_MID", + "InheritedType": 3 + }, + { + "nid": 82719897, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": 1778830101, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1529010867, + "strtype": "OBJECT/Clickable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -894953894, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 73407229, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1115198411, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 2017630228, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -952891307, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -244049172, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 2119463164, + "strtype": "PANEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -951515595, + "strtype": "PANEL/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 829724295, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 44394886, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 248119940, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1344742211, + "strtype": "OBJECT/Scrollable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 257047744, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1259320433, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1447439479, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1294387385, + "strtype": "OBJECT/Scroll_chain", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 344942698, + "strtype": "PANEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 2124492668, + "strtype": "OBJECT/Scroll_one", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -2000946347, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": 2125641182, + "strtype": "OBJECT/Scroll_direction", + "strval": "ALL", + "InheritedType": 3 + }, + { + "nid": 1501535119, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": -191002638, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1997098738, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1732710412, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -209806177, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -996734966, + "strtype": "PANEL/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1082834875, + "strtype": "PANEL/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1652858250, + "strtype": "PANEL/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 2134777334, + "strtype": "PANEL/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "part": "lv.PART.MAIN", + "childs": [], + "nid": 1248955287, + "strtype": "PANEL/Style_main", + "strval": "lv.PART.MAIN, Rectangle, Pad, Text", + "InheritedType": 11 + }, + { + "part": "lv.PART.SCROLLBAR", + "childs": [], + "nid": 480727559, + "strtype": "PANEL/Style_scrollbar", + "strval": "lv.PART.SCROLLBAR, Rectangle, Pad", + "InheritedType": 11 + } + ], + "saved_objtypeKey": "PANEL", + "tree_closed": true + }, + { + "guid": "GUID68530106-985878S8011333", + "deepid": 360687305, + "children": [ + { + "guid": "GUID77011862-985581S8001333", + "deepid": 1216628497, + "locked": false, + "properties": [ + { + "nid": 108161869, + "strtype": "OBJECT/Name", + "strval": "settingsscreen Label5", + "InheritedType": 10 + }, + { + "nid": 462691270, + "strtype": "LABEL/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": -1985945175, + "strtype": "LABEL/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": 938526526, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": -2112264570, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 0, + 0 + ], + "InheritedType": 7 + }, + { + "nid": 1825213937, + "flags": 51, + "strtype": "OBJECT/Size", + "intarray": [ + 1, + 1 + ], + "InheritedType": 7 + }, + { + "nid": 1605176069, + "strtype": "OBJECT/Align", + "strval": "LEFT_MID", + "InheritedType": 3 + }, + { + "nid": -823371061, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": -2037090573, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -268920215, + "strtype": "OBJECT/Clickable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 582384967, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 54313431, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1040981925, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -2039680426, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1512460223, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -690487349, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1328805864, + "strtype": "LABEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1941369210, + "strtype": "LABEL/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -476224623, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1692148584, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1492788393, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1074613893, + "strtype": "OBJECT/Scrollable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1006210209, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1502839038, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 326279858, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -628091418, + "strtype": "OBJECT/Scroll_chain", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 807456838, + "strtype": "LABEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1885280456, + "strtype": "OBJECT/Scroll_one", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1858121867, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": 1912389116, + "strtype": "OBJECT/Scroll_direction", + "strval": "ALL", + "InheritedType": 3 + }, + { + "nid": 77869856, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": 2105279509, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1267873325, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1982273925, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -981750769, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 951516878, + "strtype": "LABEL/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -327222377, + "strtype": "LABEL/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1846366997, + "strtype": "LABEL/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1045832529, + "strtype": "LABEL/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1816003695, + "strtype": "LABEL/Label", + "InheritedType": 1 + }, + { + "nid": 1020965820, + "strtype": "LABEL/Long_mode", + "strval": "WRAP", + "InheritedType": 3 + }, + { + "nid": 1813247421, + "strtype": "LABEL/Text", + "strval": "Haptics", + "InheritedType": 10 + }, + { + "part": "lv.PART.MAIN", + "childs": [], + "nid": -1148811272, + "strtype": "LABEL/Style_main", + "strval": "lv.PART.MAIN, Text, Rectangle, Pad", + "InheritedType": 11 + }, + { + "nid": -1912129680, + "strtype": "LABEL/Recolor", + "strval": "False", + "InheritedType": 2 + } + ], + "saved_objtypeKey": "LABEL" + }, + { + "guid": "GUID33971297-987102S9211333", + "deepid": 1749732703, + "children": [ + { + "guid": "GUID24536412-986843S3741333", + "deepid": 505369930, + "locked": false, + "properties": [ + { + "nid": 2121084415, + "strtype": "OBJECT/Name", + "strval": "hapticlabel", + "InheritedType": 10 + }, + { + "nid": 101844023, + "strtype": "LABEL/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": -1385038040, + "strtype": "LABEL/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": 1105737193, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": -1683041175, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 0, + 0 + ], + "InheritedType": 7 + }, + { + "nid": -1042189485, + "flags": 51, + "strtype": "OBJECT/Size", + "intarray": [ + 1, + 1 + ], + "InheritedType": 7 + }, + { + "nid": 1071928887, + "strtype": "OBJECT/Align", + "strval": "CENTER", + "InheritedType": 3 + }, + { + "nid": 408712308, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": -2134344516, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1811824782, + "strtype": "OBJECT/Clickable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1937291256, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 536354823, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1620154216, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1809709961, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1447675497, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1787582422, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 468624532, + "strtype": "LABEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1422912086, + "strtype": "LABEL/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 493976034, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -470716817, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 358584689, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 230833232, + "strtype": "OBJECT/Scrollable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -56555512, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1566023647, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1746923410, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -550577560, + "strtype": "OBJECT/Scroll_chain", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1432052929, + "strtype": "LABEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1996505576, + "strtype": "OBJECT/Scroll_one", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1517733782, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": 1843227362, + "strtype": "OBJECT/Scroll_direction", + "strval": "ALL", + "InheritedType": 3 + }, + { + "nid": 387707491, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": 1624081569, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -2098629064, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -469542671, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -960382923, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 50834297, + "strtype": "LABEL/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -290570754, + "strtype": "LABEL/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -446032836, + "strtype": "LABEL/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -306199170, + "strtype": "LABEL/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1036485493, + "strtype": "LABEL/Label", + "InheritedType": 1 + }, + { + "nid": 391755609, + "strtype": "LABEL/Long_mode", + "strval": "WRAP", + "InheritedType": 3 + }, + { + "nid": -63219133, + "strtype": "LABEL/Text", + "strval": "128", + "InheritedType": 10 + }, + { + "part": "lv.PART.MAIN", + "childs": [], + "nid": 692439944, + "strtype": "LABEL/Style_main", + "strval": "lv.PART.MAIN, Text, Rectangle, Pad", + "InheritedType": 11 + }, + { + "nid": 2025898768, + "strtype": "LABEL/Recolor", + "strval": "False", + "InheritedType": 2 + } + ], + "saved_objtypeKey": "LABEL" + }, + { + "guid": "GUID81508308-986842S2201333", + "deepid": 1747205136, + "children": [ + { + "guid": "GUID12117480-986841S2201333", + "deepid": 772475347, + "locked": false, + "properties": [ + { + "nid": -1204944192, + "strtype": "OBJECT/Name", + "strval": "settingsscreen Label7", + "InheritedType": 10 + }, + { + "nid": -1366968822, + "strtype": "LABEL/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": -735909463, + "strtype": "LABEL/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": -825638070, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": 1136727332, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 0, + 0 + ], + "InheritedType": 7 + }, + { + "nid": 1162596951, + "flags": 51, + "strtype": "OBJECT/Size", + "intarray": [ + 1, + 1 + ], + "InheritedType": 7 + }, + { + "nid": 1218163885, + "strtype": "OBJECT/Align", + "strval": "CENTER", + "InheritedType": 3 + }, + { + "nid": -1231510665, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": 626928405, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1989382092, + "strtype": "OBJECT/Clickable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1891707155, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1865859032, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 654426909, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -754991086, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 141008546, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1941595931, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -817168753, + "strtype": "LABEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 682792053, + "strtype": "LABEL/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1352610852, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -229114029, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 200161189, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1825158237, + "strtype": "OBJECT/Scrollable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -2084595109, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1290485788, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -781423144, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 320115546, + "strtype": "OBJECT/Scroll_chain", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -736637835, + "strtype": "LABEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 967775316, + "strtype": "OBJECT/Scroll_one", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 748625172, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": 1960338955, + "strtype": "OBJECT/Scroll_direction", + "strval": "ALL", + "InheritedType": 3 + }, + { + "nid": 1128950979, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": 658578913, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 48673346, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 695713431, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -936968905, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -2027685276, + "strtype": "LABEL/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1464898803, + "strtype": "LABEL/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 2085563523, + "strtype": "LABEL/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1272461139, + "strtype": "LABEL/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 87542098, + "strtype": "LABEL/Label", + "InheritedType": 1 + }, + { + "nid": -674883412, + "strtype": "LABEL/Long_mode", + "strval": "WRAP", + "InheritedType": 3 + }, + { + "nid": -2074513056, + "strtype": "LABEL/Text", + "strval": "LV_SYMBOL_LEFT", + "InheritedType": 10 + }, + { + "part": "lv.PART.MAIN", + "childs": [], + "nid": -1895592964, + "strtype": "LABEL/Style_main", + "strval": "lv.PART.MAIN, Text, Rectangle, Pad", + "InheritedType": 11 + }, + { + "nid": -118071692, + "strtype": "LABEL/Recolor", + "strval": "False", + "InheritedType": 2 + } + ], + "saved_objtypeKey": "LABEL", + "tree_closed": true + } + ], + "locked": false, + "properties": [ + { + "nid": -43670223, + "strtype": "OBJECT/Name", + "strval": "hapticdownbutton", + "InheritedType": 10 + }, + { + "nid": -427469451, + "strtype": "BUTTON/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": -1009382722, + "strtype": "BUTTON/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": -329180222, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": -467054364, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 0, + 0 + ], + "InheritedType": 7 + }, + { + "nid": -1365394826, + "flags": 17, + "strtype": "OBJECT/Size", + "intarray": [ + 32, + 32 + ], + "InheritedType": 7 + }, + { + "nid": 1289267838, + "strtype": "OBJECT/Align", + "strval": "LEFT_MID", + "InheritedType": 3 + }, + { + "nid": 324897234, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": 54660832, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1320925560, + "strtype": "OBJECT/Clickable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1582421834, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -154823019, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1930550962, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 382618871, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -367944262, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 476131816, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -2105845086, + "strtype": "BUTTON/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 14881517, + "strtype": "BUTTON/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -42070788, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1460730241, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1532669817, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1602665820, + "strtype": "OBJECT/Scrollable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 2120703147, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 490541518, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -325434893, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -443831648, + "strtype": "OBJECT/Scroll_chain", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 131609732, + "strtype": "BUTTON/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 232747053, + "strtype": "OBJECT/Scroll_one", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1611606988, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": 1482054420, + "strtype": "OBJECT/Scroll_direction", + "strval": "ALL", + "InheritedType": 3 + }, + { + "nid": 2001580579, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": 2004046973, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -243641813, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1528257079, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -559955621, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1690553235, + "strtype": "BUTTON/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -718416051, + "strtype": "BUTTON/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 2025670203, + "strtype": "BUTTON/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1942487790, + "strtype": "BUTTON/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "part": "lv.PART.MAIN", + "childs": [ + { + "nid": 572971852, + "strtype": "_style/StyleState", + "strval": "DEFAULT", + "childs": [ + { + "nid": 1498029060, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -1561290011, + "strtype": "_style/StyleState", + "strval": "CHECKED", + "childs": [ + { + "nid": 1989501466, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -780674449, + "strtype": "_style/StyleState", + "strval": "PRESSED", + "childs": [ + { + "nid": -739698824, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -1227871059, + "strtype": "_style/StyleState", + "strval": "DISABLED", + "childs": [ + { + "nid": 1807181291, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -1330566621, + "strtype": "_style/StyleState", + "strval": "FOCUSED", + "childs": [ + { + "nid": -1106006063, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 1816785383, + "strtype": "_style/StyleState", + "strval": "CHECKED|PRESSED", + "childs": [ + { + "nid": -741595549, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 631137998, + "strtype": "_style/StyleState", + "strval": "USER_1", + "childs": [ + { + "nid": 1562273864, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -865091468, + "strtype": "_style/StyleState", + "strval": "USER_2", + "childs": [ + { + "nid": 534397099, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -826660799, + "strtype": "_style/StyleState", + "strval": "USER_3", + "childs": [ + { + "nid": 248785580, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -1720820496, + "strtype": "_style/StyleState", + "strval": "USER_4", + "childs": [ + { + "nid": -1209759381, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + } + ], + "nid": 250447315, + "strtype": "BUTTON/Style_main", + "strval": "lv.PART.MAIN, Rectangle, Pad, Text ", + "InheritedType": 11 + } + ], + "saved_objtypeKey": "BUTTON" + }, + { + "guid": "GUID85568922-986360S6801333", + "deepid": 1747205136, + "children": [ + { + "guid": "GUID55293293-986359S6801333", + "deepid": 772475347, + "locked": false, + "properties": [ + { + "nid": -1989641943, + "strtype": "OBJECT/Name", + "strval": "settingsscreen Label6", + "InheritedType": 10 + }, + { + "nid": -1832328258, + "strtype": "LABEL/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": -1480278979, + "strtype": "LABEL/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": -721307662, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": -135968140, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 0, + 0 + ], + "InheritedType": 7 + }, + { + "nid": -256795461, + "flags": 51, + "strtype": "OBJECT/Size", + "intarray": [ + 1, + 1 + ], + "InheritedType": 7 + }, + { + "nid": 1639667649, + "strtype": "OBJECT/Align", + "strval": "CENTER", + "InheritedType": 3 + }, + { + "nid": 491422054, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": -597442509, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1236687858, + "strtype": "OBJECT/Clickable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -945291653, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1455401579, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 256675821, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 395565610, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 181517169, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1863618263, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 483213160, + "strtype": "LABEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1431955389, + "strtype": "LABEL/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -153997478, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 160791077, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -39982422, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1854630470, + "strtype": "OBJECT/Scrollable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -358427222, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1484324698, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 785193819, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1963252089, + "strtype": "OBJECT/Scroll_chain", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -324033663, + "strtype": "LABEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1186400358, + "strtype": "OBJECT/Scroll_one", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1417316904, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": 214205073, + "strtype": "OBJECT/Scroll_direction", + "strval": "ALL", + "InheritedType": 3 + }, + { + "nid": -196965506, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": 1837253203, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 260095710, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1244714978, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1052654952, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1261504964, + "strtype": "LABEL/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1206701844, + "strtype": "LABEL/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 745656218, + "strtype": "LABEL/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1076938206, + "strtype": "LABEL/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 2019885918, + "strtype": "LABEL/Label", + "InheritedType": 1 + }, + { + "nid": 1119887123, + "strtype": "LABEL/Long_mode", + "strval": "WRAP", + "InheritedType": 3 + }, + { + "nid": -821363648, + "strtype": "LABEL/Text", + "strval": "LV_SYMBOL_RIGHT", + "InheritedType": 10 + }, + { + "part": "lv.PART.MAIN", + "childs": [], + "nid": 1957686224, + "strtype": "LABEL/Style_main", + "strval": "lv.PART.MAIN, Text, Rectangle, Pad", + "InheritedType": 11 + }, + { + "nid": 1893833962, + "strtype": "LABEL/Recolor", + "strval": "False", + "InheritedType": 2 + } + ], + "saved_objtypeKey": "LABEL", + "tree_closed": true + } + ], + "locked": false, + "properties": [ + { + "nid": -994128521, + "strtype": "OBJECT/Name", + "strval": "hapticupbutton", + "InheritedType": 10 + }, + { + "nid": 1247239020, + "strtype": "BUTTON/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": -1572169734, + "strtype": "BUTTON/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": 1595494351, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": -510918155, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 0, + 0 + ], + "InheritedType": 7 + }, + { + "nid": -530456535, + "flags": 17, + "strtype": "OBJECT/Size", + "intarray": [ + 32, + 32 + ], + "InheritedType": 7 + }, + { + "nid": -1799318118, + "strtype": "OBJECT/Align", + "strval": "RIGHT_MID", + "InheritedType": 3 + }, + { + "nid": 1669714741, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": -173144687, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -5770262, + "strtype": "OBJECT/Clickable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -546356400, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -471701767, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -96693334, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1849213411, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1675927837, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 111833975, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 882156434, + "strtype": "BUTTON/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -430706646, + "strtype": "BUTTON/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -921510129, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1834122623, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1084532938, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1320776261, + "strtype": "OBJECT/Scrollable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1636244335, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 501009363, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1313810776, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1767648552, + "strtype": "OBJECT/Scroll_chain", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -218138020, + "strtype": "BUTTON/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1371103881, + "strtype": "OBJECT/Scroll_one", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 188142666, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": 1092686066, + "strtype": "OBJECT/Scroll_direction", + "strval": "ALL", + "InheritedType": 3 + }, + { + "nid": 219410556, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": 1015770481, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 116995833, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -33204203, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 639215323, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1367446507, + "strtype": "BUTTON/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -893317374, + "strtype": "BUTTON/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -417890658, + "strtype": "BUTTON/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -831902193, + "strtype": "BUTTON/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "part": "lv.PART.MAIN", + "childs": [ + { + "nid": 423820976, + "strtype": "_style/StyleState", + "strval": "DEFAULT", + "childs": [ + { + "nid": 971729596, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 1283435244, + "strtype": "_style/StyleState", + "strval": "CHECKED", + "childs": [ + { + "nid": 1168342389, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 1873970739, + "strtype": "_style/StyleState", + "strval": "PRESSED", + "childs": [ + { + "nid": -1941514897, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 1723136541, + "strtype": "_style/StyleState", + "strval": "DISABLED", + "childs": [ + { + "nid": 799679184, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -233273295, + "strtype": "_style/StyleState", + "strval": "FOCUSED", + "childs": [ + { + "nid": -2023191621, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 1338404857, + "strtype": "_style/StyleState", + "strval": "CHECKED|PRESSED", + "childs": [ + { + "nid": -1571720884, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 916568952, + "strtype": "_style/StyleState", + "strval": "USER_1", + "childs": [ + { + "nid": 687975373, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 1391264937, + "strtype": "_style/StyleState", + "strval": "USER_2", + "childs": [ + { + "nid": -1210218797, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -1434334429, + "strtype": "_style/StyleState", + "strval": "USER_3", + "childs": [ + { + "nid": 1847659808, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -371255231, + "strtype": "_style/StyleState", + "strval": "USER_4", + "childs": [ + { + "nid": -1228074341, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + } + ], + "nid": -1615171284, + "strtype": "BUTTON/Style_main", + "strval": "lv.PART.MAIN, Rectangle, Pad, Text ", + "InheritedType": 11 + } + ], + "saved_objtypeKey": "BUTTON" + } + ], + "locked": false, + "properties": [ + { + "nid": 8138876, + "strtype": "OBJECT/Name", + "strval": "settingsscreen Panel1", + "InheritedType": 10 + }, + { + "nid": -2034779580, + "strtype": "PANEL/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": -397066625, + "strtype": "PANEL/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": 653753779, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": -2117449657, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + -30, + 0 + ], + "InheritedType": 7 + }, + { + "nid": 1067674969, + "flags": 17, + "strtype": "OBJECT/Size", + "intarray": [ + 140, + 50 + ], + "InheritedType": 7 + }, + { + "nid": -1215452238, + "strtype": "OBJECT/Align", + "strval": "RIGHT_MID", + "InheritedType": 3 + }, + { + "nid": 17601028, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": -1807975108, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1223433757, + "strtype": "OBJECT/Clickable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1525999988, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1458673942, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -174013214, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1479280683, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1820996495, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1834878098, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1613347882, + "strtype": "PANEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 677413188, + "strtype": "PANEL/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -821024587, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1994484524, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 572305565, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1132269706, + "strtype": "OBJECT/Scrollable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1939140309, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 226182299, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1563520604, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1579329810, + "strtype": "OBJECT/Scroll_chain", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1205595213, + "strtype": "PANEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 2053684583, + "strtype": "OBJECT/Scroll_one", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1975172564, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": 1967380329, + "strtype": "OBJECT/Scroll_direction", + "strval": "ALL", + "InheritedType": 3 + }, + { + "nid": 1730694982, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": 2033982640, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 225095339, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1095977589, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 113432452, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -2111490187, + "strtype": "PANEL/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -290762527, + "strtype": "PANEL/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 79038853, + "strtype": "PANEL/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1407061280, + "strtype": "PANEL/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "part": "lv.PART.MAIN", + "childs": [ + { + "nid": -780480113, + "strtype": "_style/StyleState", + "strval": "DEFAULT", + "childs": [ + { + "nid": 34204592, + "strtype": "_style/Border_Color", + "intarray": [ + 0, + 0, + 0, + 0 + ], + "InheritedType": 7 + } + ], + "InheritedType": 1 + } + ], + "nid": 1769957676, + "strtype": "PANEL/Style_main", + "strval": "lv.PART.MAIN, Rectangle, Pad, Text", + "InheritedType": 11 + }, + { + "part": "lv.PART.SCROLLBAR", + "childs": [], + "nid": -1624977489, + "strtype": "PANEL/Style_scrollbar", + "strval": "lv.PART.SCROLLBAR, Rectangle, Pad", + "InheritedType": 11 + } + ], + "saved_objtypeKey": "PANEL" + }, + { + "guid": "GUID71587957-988093S1611333", + "deepid": 1747205136, + "children": [ + { + "guid": "GUID54982811-988092S1611333", + "deepid": 772475347, + "locked": false, + "properties": [ + { + "nid": -454133619, + "strtype": "OBJECT/Name", + "strval": "settingsscreen Label8", + "InheritedType": 10 + }, + { + "nid": 999805916, + "strtype": "LABEL/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": -1709759791, + "strtype": "LABEL/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": 1938400388, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": -852250495, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 0, + 0 + ], + "InheritedType": 7 + }, + { + "nid": -1418849939, + "flags": 51, + "strtype": "OBJECT/Size", + "intarray": [ + 1, + 1 + ], + "InheritedType": 7 + }, + { + "nid": -120683248, + "strtype": "OBJECT/Align", + "strval": "CENTER", + "InheritedType": 3 + }, + { + "nid": -1866373270, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": -250004027, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1330561887, + "strtype": "OBJECT/Clickable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1814290422, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 42299894, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1342781574, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1814057844, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 364966059, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1234780177, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 42119137, + "strtype": "LABEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -997500155, + "strtype": "LABEL/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1856365039, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1251017919, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1732609021, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 796492891, + "strtype": "OBJECT/Scrollable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -2058992828, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 2122590570, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 618868877, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1908225444, + "strtype": "OBJECT/Scroll_chain", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1738230624, + "strtype": "LABEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 623761585, + "strtype": "OBJECT/Scroll_one", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1634349443, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": -1912465328, + "strtype": "OBJECT/Scroll_direction", + "strval": "ALL", + "InheritedType": 3 + }, + { + "nid": 277870151, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": 1312510302, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 2093762539, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1349106025, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1945554030, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -421647348, + "strtype": "LABEL/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1676327326, + "strtype": "LABEL/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 879250686, + "strtype": "LABEL/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1089568135, + "strtype": "LABEL/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1686597032, + "strtype": "LABEL/Label", + "InheritedType": 1 + }, + { + "nid": -1607764152, + "strtype": "LABEL/Long_mode", + "strval": "WRAP", + "InheritedType": 3 + }, + { + "nid": -1178317664, + "strtype": "LABEL/Text", + "strval": "LV_SYMBOL_PLAY", + "InheritedType": 10 + }, + { + "part": "lv.PART.MAIN", + "childs": [], + "nid": -898371069, + "strtype": "LABEL/Style_main", + "strval": "lv.PART.MAIN, Text, Rectangle, Pad", + "InheritedType": 11 + }, + { + "nid": 508262012, + "strtype": "LABEL/Recolor", + "strval": "False", + "InheritedType": 2 + } + ], + "saved_objtypeKey": "LABEL", + "tree_closed": true + } + ], + "locked": false, + "properties": [ + { + "nid": 1599651507, + "strtype": "OBJECT/Name", + "strval": "hapticplaybutton", + "InheritedType": 10 + }, + { + "nid": -1092300132, + "strtype": "BUTTON/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": -633613975, + "strtype": "BUTTON/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": 468345196, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": -867591433, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 0, + 0 + ], + "InheritedType": 7 + }, + { + "nid": 1287633888, + "flags": 17, + "strtype": "OBJECT/Size", + "intarray": [ + 32, + 32 + ], + "InheritedType": 7 + }, + { + "nid": -16784102, + "strtype": "OBJECT/Align", + "strval": "RIGHT_MID", + "InheritedType": 3 + }, + { + "nid": 372457361, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": 539139427, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 2047515217, + "strtype": "OBJECT/Clickable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 980802613, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1638983418, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1142942108, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1306710251, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1866476927, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1888434468, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -221907685, + "strtype": "BUTTON/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -408853533, + "strtype": "BUTTON/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 247393846, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1501032673, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -279826677, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1417234365, + "strtype": "OBJECT/Scrollable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -975401870, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -757704484, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1585098217, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 345775516, + "strtype": "OBJECT/Scroll_chain", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 84639261, + "strtype": "BUTTON/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1491612014, + "strtype": "OBJECT/Scroll_one", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -71444633, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": -660077059, + "strtype": "OBJECT/Scroll_direction", + "strval": "ALL", + "InheritedType": 3 + }, + { + "nid": -1030046598, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": 319061771, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 811818019, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -499403120, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 850227470, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 751850441, + "strtype": "BUTTON/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1308050864, + "strtype": "BUTTON/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1615082874, + "strtype": "BUTTON/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -2071026901, + "strtype": "BUTTON/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "part": "lv.PART.MAIN", + "childs": [ + { + "nid": -1455416402, + "strtype": "_style/StyleState", + "strval": "DEFAULT", + "childs": [ + { + "nid": -1661415083, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -1415370376, + "strtype": "_style/StyleState", + "strval": "CHECKED", + "childs": [ + { + "nid": 422587134, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -902575801, + "strtype": "_style/StyleState", + "strval": "PRESSED", + "childs": [ + { + "nid": -831315154, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 103648755, + "strtype": "_style/StyleState", + "strval": "DISABLED", + "childs": [ + { + "nid": 1388562073, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 491774273, + "strtype": "_style/StyleState", + "strval": "FOCUSED", + "childs": [ + { + "nid": -1676851399, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -997972340, + "strtype": "_style/StyleState", + "strval": "CHECKED|PRESSED", + "childs": [ + { + "nid": 1248615890, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -899135915, + "strtype": "_style/StyleState", + "strval": "USER_1", + "childs": [ + { + "nid": 333335725, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 1771015960, + "strtype": "_style/StyleState", + "strval": "USER_2", + "childs": [ + { + "nid": 346723925, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -111483934, + "strtype": "_style/StyleState", + "strval": "USER_3", + "childs": [ + { + "nid": -2132204480, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -935554604, + "strtype": "_style/StyleState", + "strval": "USER_4", + "childs": [ + { + "nid": -186376447, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + } + ], + "nid": 45612525, + "strtype": "BUTTON/Style_main", + "strval": "lv.PART.MAIN, Rectangle, Pad, Text ", + "InheritedType": 11 + } + ], + "saved_objtypeKey": "BUTTON" + } + ], + "locked": false, + "properties": [ + { + "nid": -889454870, + "strtype": "OBJECT/Name", + "strval": "hapticpanel", + "InheritedType": 10 + }, + { + "nid": 1724157535, + "strtype": "PANEL/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": 2056292925, + "strtype": "PANEL/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": -276503200, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": 459383374, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 0, + 180 + ], + "InheritedType": 7 + }, + { + "nid": 962306401, + "flags": 18, + "strtype": "OBJECT/Size", + "intarray": [ + 100, + 50 + ], + "InheritedType": 7 + }, + { + "nid": -242973671, + "strtype": "OBJECT/Align", + "strval": "TOP_MID", + "InheritedType": 3 + }, + { + "nid": -231464354, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": -54773568, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 54489981, + "strtype": "OBJECT/Clickable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1716965897, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1278191026, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -759416879, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -133276437, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 169395864, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -113182986, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1202782566, + "strtype": "PANEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -658356399, + "strtype": "PANEL/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1092919763, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1822457254, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 105492198, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1568784185, + "strtype": "OBJECT/Scrollable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1717434158, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 722581285, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1688912525, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1574164386, + "strtype": "OBJECT/Scroll_chain", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -510052279, + "strtype": "PANEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 423216137, + "strtype": "OBJECT/Scroll_one", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -2004664588, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": 631136381, + "strtype": "OBJECT/Scroll_direction", + "strval": "ALL", + "InheritedType": 3 + }, + { + "nid": -649337134, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": 2143678150, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1831436017, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1354029631, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1344112062, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 78034929, + "strtype": "PANEL/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1853988289, + "strtype": "PANEL/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1061562243, + "strtype": "PANEL/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 170726814, + "strtype": "PANEL/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "part": "lv.PART.MAIN", + "childs": [], + "nid": -100527752, + "strtype": "PANEL/Style_main", + "strval": "lv.PART.MAIN, Rectangle, Pad, Text", + "InheritedType": 11 + }, + { + "part": "lv.PART.SCROLLBAR", + "childs": [], + "nid": 421829838, + "strtype": "PANEL/Style_scrollbar", + "strval": "lv.PART.SCROLLBAR, Rectangle, Pad", + "InheritedType": 11 + } + ], + "saved_objtypeKey": "PANEL" + } + ], + "locked": false, + "properties": [ + { + "nid": 293255738, + "strtype": "OBJECT/Name", + "strval": "settingspanel", + "InheritedType": 10 + }, + { + "nid": 1133921183, + "strtype": "PANEL/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": -200325366, + "strtype": "PANEL/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": -2089947573, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": 1378448719, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 0, + 0 + ], + "InheritedType": 7 + }, + { + "nid": -501550617, + "flags": 18, + "strtype": "OBJECT/Size", + "intarray": [ + 100, + 165 + ], + "InheritedType": 7 + }, + { + "nid": -801046971, + "strtype": "OBJECT/Align", + "strval": "BOTTOM_MID", + "InheritedType": 3 + }, + { + "nid": -305702995, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": 1622599386, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1282012289, + "strtype": "OBJECT/Clickable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 327152265, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -903057834, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -547628108, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1096644111, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 971749600, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 551820389, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1722516485, + "strtype": "PANEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1472673713, + "strtype": "PANEL/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 349867837, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1175220122, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1659912127, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -375902389, + "strtype": "OBJECT/Scrollable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1832147245, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 349829140, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1308867462, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1532092131, + "strtype": "OBJECT/Scroll_chain", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1232252396, + "strtype": "PANEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 10439254, + "strtype": "OBJECT/Scroll_one", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1996036172, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": 1597076179, + "strtype": "OBJECT/Scroll_direction", + "strval": "VER", + "InheritedType": 3 + }, + { + "nid": -588443010, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": 985981220, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1239526845, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 2054648607, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -342032556, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -954894945, + "strtype": "PANEL/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 354695347, + "strtype": "PANEL/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1856776379, + "strtype": "PANEL/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1166240042, + "strtype": "PANEL/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "part": "lv.PART.MAIN", + "childs": [ + { + "nid": 288267755, + "strtype": "_style/StyleState", + "strval": "DEFAULT", + "childs": [ + { + "nid": -1154074172, + "strtype": "_style/Padding", + "intarray": [ + 0, + 0, + 0, + 0 + ], + "InheritedType": 7 + } + ], + "InheritedType": 1 + } + ], + "nid": -942187392, + "strtype": "PANEL/Style_main", + "strval": "lv.PART.MAIN, Rectangle, Pad, Text", + "InheritedType": 11 + }, + { + "part": "lv.PART.SCROLLBAR", + "childs": [], + "nid": -33679820, + "strtype": "PANEL/Style_scrollbar", + "strval": "lv.PART.SCROLLBAR, Rectangle, Pad", + "InheritedType": 11 + } + ], + "saved_objtypeKey": "PANEL" + } + ], + "isPage": true, + "locked": false, + "properties": [ + { + "nid": 36785087, + "strtype": "OBJECT/Name", + "strval": "settingsscreen", + "InheritedType": 10 + }, + { + "nid": -1562571804, + "strtype": "SCREEN/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": -1306150751, + "strtype": "SCREEN/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": -311998216, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": -861580376, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": -2146623384, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1161302096, + "strtype": "OBJECT/Clickable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1939748048, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1034861812, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1175294707, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1213374928, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1864998566, + "strtype": "SCREEN/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 802510302, + "strtype": "SCREEN/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 57221717, + "strtype": "OBJECT/Scrollable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -796482728, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -185985895, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1744114232, + "strtype": "SCREEN/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 2115789341, + "strtype": "OBJECT/Scroll_one", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 335750767, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": -824511642, + "strtype": "OBJECT/Scroll_direction", + "strval": "ALL", + "InheritedType": 3 + }, + { + "nid": -1293192017, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": -1900013587, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1237515419, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 809946134, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1318432714, + "strtype": "SCREEN/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 311175729, + "strtype": "SCREEN/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -77076813, + "strtype": "SCREEN/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1059944771, + "strtype": "SCREEN/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 142475338, + "strtype": "SCREEN/Screen", + "InheritedType": 1 + }, + { + "nid": -1676577858, + "strtype": "SCREEN/Temporary", + "strval": "False", + "InheritedType": 2 + }, + { + "part": "lv.PART.MAIN", + "childs": [ + { + "nid": 1615079752, + "strtype": "_style/StyleState", + "strval": "DEFAULT", + "childs": [ + { + "nid": 1350487521, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 1195102371, + "strtype": "_style/StyleState", + "strval": "CHECKED", + "childs": [ + { + "nid": -516779687, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 1464258110, + "strtype": "_style/StyleState", + "strval": "PRESSED", + "childs": [ + { + "nid": -276391187, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 825373222, + "strtype": "_style/StyleState", + "strval": "CHECKED|PRESSED", + "childs": [ + { + "nid": 1004715997, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -1794207221, + "strtype": "_style/StyleState", + "strval": "DISABLED", + "childs": [ + { + "nid": -1241220935, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -577389217, + "strtype": "_style/StyleState", + "strval": "USER_1", + "childs": [ + { + "nid": 1964702928, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": -744687792, + "strtype": "_style/StyleState", + "strval": "USER_2", + "childs": [ + { + "nid": -1730472430, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 1357757309, + "strtype": "_style/StyleState", + "strval": "USER_3", + "childs": [ + { + "nid": 1315631885, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + }, + { + "nid": 1366557165, + "strtype": "_style/StyleState", + "strval": "USER_4", + "childs": [ + { + "nid": -1557285578, + "strtype": "_style/Paddings", + "InheritedType": 1 + } + ], + "InheritedType": 1 + } + ], + "nid": 1077823634, + "strtype": "SCREEN/Style_main", + "strval": "lv.PART.MAIN, Rectangle, Pad, Text", + "InheritedType": 11 + }, + { + "part": "lv.PART.SCROLLBAR", + "childs": [], + "nid": 1690739196, + "strtype": "SCREEN/Style_scrollbar", + "strval": "lv.PART.SCROLLBAR, Rectangle, Pad", + "InheritedType": 11 + }, + { + "nid": -1348083556, + "strtype": "SCREEN/Don't export screen", + "strval": "False", + "InheritedType": 2 + } + ], + "saved_objtypeKey": "SCREEN" + } + ], + "locked": false, + "properties": [ + { + "nid": 1306184105, + "strtype": "STARTEVENTS/Name", + "strval": "___initial_actions0", + "InheritedType": 10 + } + ], + "saved_objtypeKey": "STARTEVENTS" + }, + "animations": [], + "info": { + "name": "emu.spj", + "depth": 2, + "width": 320, + "height": 240, + "rotation": 0, + "offset_x": 0, + "offset_y": 0, + "shape": "RECTANGLE", + "multilang": "DISABLE", + "description": "", + "board": "Eclipse with SDL for development on PC", + "board_version": "v1.0.1", + "editor_version": "1.3.3", + "image": "", + "force_export_images": false, + "flat_export": false, + "pointfilter": false, + "theme_simplified": false, + "theme_dark": true, + "theme_color1": 5, + "theme_color2": 0, + "exportFolderPath": "/Users/bob/esp-cpp/esp-box-emu/components/gui/generated", + "projectExportFolderPath": "/Users/bob/esp-cpp/esp-box-emu/components/gui/squareline", + "backup_cnt": 17, + "autosave_cnt": 0, + "lvgl_version": "8.3.3", + "callfuncsexport": "C_FILE", + "lvgl_include_path": "", + "BitDepth": 16, + "Name": "emu" + } +} \ No newline at end of file diff --git a/components/gui/src/gui.cpp b/components/gui/src/gui.cpp index d939ee59..e345f0e8 100644 --- a/components/gui/src/gui.cpp +++ b/components/gui/src/gui.cpp @@ -21,6 +21,12 @@ void Gui::set_audio_level(int new_audio_level) { set_audio_volume(new_audio_level); } +void Gui::set_brightness(int new_brightness) { + new_brightness = std::clamp(new_brightness, 10, 100); + lv_bar_set_value(ui_brightnessbar, new_brightness, LV_ANIM_ON); + set_display_brightness((float)new_brightness / 100.0f); +} + void Gui::set_video_setting(VideoSetting setting) { ::set_video_setting(setting); lv_dropdown_set_selected(ui_videosettingdropdown, (int)setting); @@ -140,6 +146,10 @@ void Gui::init_ui() { lv_obj_add_event_cb(ui_volumedownbutton, &Gui::event_callback, LV_EVENT_PRESSED, static_cast(this)); lv_obj_add_event_cb(ui_mutebutton, &Gui::event_callback, LV_EVENT_PRESSED, static_cast(this)); + // brightness settings + lv_obj_add_event_cb(ui_brightnessdownbutton, &Gui::event_callback, LV_EVENT_PRESSED, static_cast(this)); + lv_obj_add_event_cb(ui_brightnessupbutton, &Gui::event_callback, LV_EVENT_PRESSED, static_cast(this)); + // haptic settings lv_obj_add_event_cb(ui_hapticdownbutton, &Gui::event_callback, LV_EVENT_PRESSED, static_cast(this)); lv_obj_add_event_cb(ui_hapticupbutton, &Gui::event_callback, LV_EVENT_PRESSED, static_cast(this)); @@ -151,6 +161,8 @@ void Gui::init_ui() { lv_obj_add_event_cb(ui_videosettingdropdown, &Gui::event_callback, LV_EVENT_KEY, static_cast(this)); lv_obj_add_event_cb(ui_volumeupbutton, &Gui::event_callback, LV_EVENT_KEY, static_cast(this)); lv_obj_add_event_cb(ui_volumedownbutton, &Gui::event_callback, LV_EVENT_KEY, static_cast(this)); + lv_obj_add_event_cb(ui_brightnessdownbutton, &Gui::event_callback, LV_EVENT_KEY, static_cast(this)); + lv_obj_add_event_cb(ui_brightnessupbutton, &Gui::event_callback, LV_EVENT_KEY, static_cast(this)); lv_obj_add_event_cb(ui_mutebutton, &Gui::event_callback, LV_EVENT_KEY, static_cast(this)); lv_obj_add_event_cb(ui_hapticdownbutton, &Gui::event_callback, LV_EVENT_KEY, static_cast(this)); lv_obj_add_event_cb(ui_hapticupbutton, &Gui::event_callback, LV_EVENT_KEY, static_cast(this)); @@ -163,6 +175,8 @@ void Gui::init_ui() { lv_group_add_obj(settings_screen_group_, ui_mutebutton); lv_group_add_obj(settings_screen_group_, ui_volumedownbutton); lv_group_add_obj(settings_screen_group_, ui_volumeupbutton); + lv_group_add_obj(settings_screen_group_, ui_brightnessdownbutton); + lv_group_add_obj(settings_screen_group_, ui_brightnessupbutton); lv_group_add_obj(settings_screen_group_, ui_videosettingdropdown); lv_group_add_obj(settings_screen_group_, ui_hapticdownbutton); lv_group_add_obj(settings_screen_group_, ui_hapticupbutton); @@ -178,6 +192,8 @@ void Gui::init_ui() { lv_obj_add_style(ui_closebutton, &button_style_, LV_STATE_FOCUSED); lv_obj_add_style(ui_volumeupbutton, &button_style_, LV_STATE_FOCUSED); lv_obj_add_style(ui_volumedownbutton, &button_style_, LV_STATE_FOCUSED); + lv_obj_add_style(ui_brightnessdownbutton, &button_style_, LV_STATE_FOCUSED); + lv_obj_add_style(ui_brightnessupbutton, &button_style_, LV_STATE_FOCUSED); lv_obj_add_style(ui_mutebutton, &button_style_, LV_STATE_FOCUSED); lv_obj_add_style(ui_hapticupbutton, &button_style_, LV_STATE_FOCUSED); lv_obj_add_style(ui_hapticdownbutton, &button_style_, LV_STATE_FOCUSED); @@ -189,13 +205,13 @@ void Gui::init_ui() { void Gui::load_rom_screen() { logger_.info("Loading rom screen"); - _ui_screen_change( ui_romscreen, LV_SCR_LOAD_ANIM_MOVE_LEFT, 100, 0); + _ui_screen_change( &ui_romscreen, LV_SCR_LOAD_ANIM_MOVE_LEFT, 100, 0, &ui_settingsscreen_screen_init); focus_rommenu(); } void Gui::load_settings_screen() { logger_.info("Loading settings screen"); - _ui_screen_change( ui_settingsscreen, LV_SCR_LOAD_ANIM_MOVE_RIGHT, 100, 0); + _ui_screen_change( &ui_settingsscreen, LV_SCR_LOAD_ANIM_MOVE_RIGHT, 100, 0, &ui_romscreen_screen_init); focus_settings(); } @@ -236,6 +252,19 @@ void Gui::on_pressed(lv_event_t *e) { toggle_mute(); return; } + // brightness controlsn + bool is_brightness_up_button = (target == ui_brightnessupbutton); + if (is_brightness_up_button) { + int brightness = get_display_brightness() * 100.0f; + set_brightness(brightness + 10); + return; + } + bool is_brightness_down_button = (target == ui_brightnessdownbutton); + if (is_brightness_down_button) { + int brightness = get_display_brightness() * 100.0f; + set_brightness(brightness - 10); + return; + } // haptic controls bool is_haptic_up_button = (target == ui_hapticupbutton); if (is_haptic_up_button) { diff --git a/components/menu/.gitignore b/components/menu/.gitignore new file mode 100644 index 00000000..c715b4c2 --- /dev/null +++ b/components/menu/.gitignore @@ -0,0 +1 @@ +squareline/autosave diff --git a/components/menu/CMakeLists.txt b/components/menu/CMakeLists.txt index 71f69538..0017c2da 100644 --- a/components/menu/CMakeLists.txt +++ b/components/menu/CMakeLists.txt @@ -1,5 +1,5 @@ idf_component_register( INCLUDE_DIRS "include" - SRC_DIRS "src" "generated" + SRC_DIRS "src" "generated" "generated/screens" "generated/components" PRIV_INCLUDE_DIRS "generated" REQUIRES lvgl task display logger jpeg box-emu-hal) diff --git a/components/menu/generated/CMakeLists.txt b/components/menu/generated/CMakeLists.txt new file mode 100644 index 00000000..92b63e50 --- /dev/null +++ b/components/menu/generated/CMakeLists.txt @@ -0,0 +1,6 @@ +SET(SOURCES screens/ui_Screen1.c + ui.c + components/ui_comp_hook.c + ui_helpers.c) + +add_library(ui ${SOURCES}) diff --git a/components/menu/generated/components/ui_comp_hook.c b/components/menu/generated/components/ui_comp_hook.c new file mode 100644 index 00000000..e38a8559 --- /dev/null +++ b/components/menu/generated/components/ui_comp_hook.c @@ -0,0 +1,5 @@ +// This file was generated by SquareLine Studio +// SquareLine Studio version: SquareLine Studio 1.3.3 +// LVGL version: 8.2.0 +// Project name: menu + diff --git a/components/menu/generated/filelist.txt b/components/menu/generated/filelist.txt new file mode 100644 index 00000000..92447dd3 --- /dev/null +++ b/components/menu/generated/filelist.txt @@ -0,0 +1,4 @@ +screens/ui_Screen1.c +ui.c +components/ui_comp_hook.c +ui_helpers.c diff --git a/components/menu/generated/screens/ui_Screen1.c b/components/menu/generated/screens/ui_Screen1.c new file mode 100644 index 00000000..b2c47c01 --- /dev/null +++ b/components/menu/generated/screens/ui_Screen1.c @@ -0,0 +1,310 @@ +// This file was generated by SquareLine Studio +// SquareLine Studio version: SquareLine Studio 1.3.3 +// LVGL version: 8.2.0 +// Project name: menu + +#include "../ui.h" + +void ui_Screen1_screen_init(void) +{ +ui_Screen1 = lv_obj_create(NULL); +lv_obj_clear_flag( ui_Screen1, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_menu_panel = lv_obj_create(ui_Screen1); +lv_obj_set_width( ui_menu_panel, lv_pct(100)); +lv_obj_set_height( ui_menu_panel, lv_pct(100)); +lv_obj_set_align( ui_menu_panel, LV_ALIGN_CENTER ); + +ui_menu_title = lv_label_create(ui_menu_panel); +lv_obj_set_width( ui_menu_title, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_menu_title, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_menu_title, LV_ALIGN_TOP_RIGHT ); +lv_label_set_text(ui_menu_title,"Emulation Paused"); + +ui_fps_label = lv_label_create(ui_menu_panel); +lv_obj_set_width( ui_fps_label, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_fps_label, LV_SIZE_CONTENT); /// 1 +lv_obj_set_x( ui_fps_label, 0 ); +lv_obj_set_y( ui_fps_label, 20 ); +lv_obj_set_align( ui_fps_label, LV_ALIGN_TOP_RIGHT ); +lv_label_set_text(ui_fps_label,"200.5 FPS"); + +ui_resume_btn = lv_btn_create(ui_menu_panel); +lv_obj_set_width( ui_resume_btn, 100); +lv_obj_set_height( ui_resume_btn, 40); +lv_obj_add_flag( ui_resume_btn, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags +lv_obj_clear_flag( ui_resume_btn, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_Label6 = lv_label_create(ui_resume_btn); +lv_obj_set_width( ui_Label6, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_Label6, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_Label6, LV_ALIGN_CENTER ); +lv_label_set_text(ui_Label6,"Resume"); + +ui_Panel3 = lv_obj_create(ui_menu_panel); +lv_obj_set_height( ui_Panel3, 50); +lv_obj_set_width( ui_Panel3, lv_pct(100)); +lv_obj_set_x( ui_Panel3, 0 ); +lv_obj_set_y( ui_Panel3, 50 ); +lv_obj_set_align( ui_Panel3, LV_ALIGN_TOP_MID ); +lv_obj_clear_flag( ui_Panel3, LV_OBJ_FLAG_SCROLLABLE ); /// Flags +lv_obj_set_style_pad_left(ui_Panel3, 0, LV_PART_MAIN| LV_STATE_DEFAULT); +lv_obj_set_style_pad_right(ui_Panel3, 0, LV_PART_MAIN| LV_STATE_DEFAULT); +lv_obj_set_style_pad_top(ui_Panel3, 0, LV_PART_MAIN| LV_STATE_DEFAULT); +lv_obj_set_style_pad_bottom(ui_Panel3, 0, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_volume_mute_btn = lv_btn_create(ui_Panel3); +lv_obj_set_width( ui_volume_mute_btn, 30); +lv_obj_set_height( ui_volume_mute_btn, 30); +lv_obj_set_align( ui_volume_mute_btn, LV_ALIGN_LEFT_MID ); +lv_obj_add_flag( ui_volume_mute_btn, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags +lv_obj_clear_flag( ui_volume_mute_btn, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_Label10 = lv_label_create(ui_volume_mute_btn); +lv_obj_set_width( ui_Label10, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_Label10, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_Label10, LV_ALIGN_CENTER ); +lv_label_set_text(ui_Label10,LV_SYMBOL_MUTE); + +ui_volume_dec_btn = lv_btn_create(ui_Panel3); +lv_obj_set_width( ui_volume_dec_btn, 30); +lv_obj_set_height( ui_volume_dec_btn, 30); +lv_obj_set_x( ui_volume_dec_btn, 35 ); +lv_obj_set_y( ui_volume_dec_btn, 0 ); +lv_obj_set_align( ui_volume_dec_btn, LV_ALIGN_LEFT_MID ); +lv_obj_add_flag( ui_volume_dec_btn, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags +lv_obj_clear_flag( ui_volume_dec_btn, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_Label11 = lv_label_create(ui_volume_dec_btn); +lv_obj_set_width( ui_Label11, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_Label11, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_Label11, LV_ALIGN_CENTER ); +lv_label_set_text(ui_Label11,LV_SYMBOL_VOLUME_MID); + +ui_Bar2 = lv_bar_create(ui_Panel3); +lv_bar_set_value(ui_Bar2,25,LV_ANIM_OFF); +lv_obj_set_width( ui_Bar2, 150); +lv_obj_set_height( ui_Bar2, 10); +lv_obj_set_x( ui_Bar2, -50 ); +lv_obj_set_y( ui_Bar2, 0 ); +lv_obj_set_align( ui_Bar2, LV_ALIGN_RIGHT_MID ); + +ui_volume_inc_btn = lv_btn_create(ui_Panel3); +lv_obj_set_width( ui_volume_inc_btn, 30); +lv_obj_set_height( ui_volume_inc_btn, 30); +lv_obj_set_align( ui_volume_inc_btn, LV_ALIGN_RIGHT_MID ); +lv_obj_add_flag( ui_volume_inc_btn, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags +lv_obj_clear_flag( ui_volume_inc_btn, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_Label8 = lv_label_create(ui_volume_inc_btn); +lv_obj_set_width( ui_Label8, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_Label8, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_Label8, LV_ALIGN_CENTER ); +lv_label_set_text(ui_Label8,LV_SYMBOL_VOLUME_MAX); + +ui_Panel5 = lv_obj_create(ui_menu_panel); +lv_obj_set_height( ui_Panel5, 50); +lv_obj_set_width( ui_Panel5, lv_pct(100)); +lv_obj_set_x( ui_Panel5, 0 ); +lv_obj_set_y( ui_Panel5, 100 ); +lv_obj_set_align( ui_Panel5, LV_ALIGN_TOP_MID ); +lv_obj_clear_flag( ui_Panel5, LV_OBJ_FLAG_SCROLLABLE ); /// Flags +lv_obj_set_style_pad_left(ui_Panel5, 0, LV_PART_MAIN| LV_STATE_DEFAULT); +lv_obj_set_style_pad_right(ui_Panel5, 0, LV_PART_MAIN| LV_STATE_DEFAULT); +lv_obj_set_style_pad_top(ui_Panel5, 0, LV_PART_MAIN| LV_STATE_DEFAULT); +lv_obj_set_style_pad_bottom(ui_Panel5, 0, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_brightness_dec_btn = lv_btn_create(ui_Panel5); +lv_obj_set_width( ui_brightness_dec_btn, 30); +lv_obj_set_height( ui_brightness_dec_btn, 30); +lv_obj_set_align( ui_brightness_dec_btn, LV_ALIGN_LEFT_MID ); +lv_obj_add_flag( ui_brightness_dec_btn, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags +lv_obj_clear_flag( ui_brightness_dec_btn, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_Label13 = lv_label_create(ui_brightness_dec_btn); +lv_obj_set_width( ui_Label13, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_Label13, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_Label13, LV_ALIGN_CENTER ); +lv_label_set_text(ui_Label13,LV_SYMBOL_MINUS); + +ui_brightness_bar = lv_bar_create(ui_Panel5); +lv_bar_set_value(ui_brightness_bar,25,LV_ANIM_OFF); +lv_obj_set_width( ui_brightness_bar, 185); +lv_obj_set_height( ui_brightness_bar, 10); +lv_obj_set_align( ui_brightness_bar, LV_ALIGN_CENTER ); + +ui_brightness_inc_btn = lv_btn_create(ui_Panel5); +lv_obj_set_width( ui_brightness_inc_btn, 30); +lv_obj_set_height( ui_brightness_inc_btn, 30); +lv_obj_set_align( ui_brightness_inc_btn, LV_ALIGN_RIGHT_MID ); +lv_obj_add_flag( ui_brightness_inc_btn, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags +lv_obj_clear_flag( ui_brightness_inc_btn, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_Label14 = lv_label_create(ui_brightness_inc_btn); +lv_obj_set_width( ui_Label14, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_Label14, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_Label14, LV_ALIGN_CENTER ); +lv_label_set_text(ui_Label14,LV_SYMBOL_PLUS); + +ui_Panel4 = lv_obj_create(ui_menu_panel); +lv_obj_set_height( ui_Panel4, 50); +lv_obj_set_width( ui_Panel4, lv_pct(100)); +lv_obj_set_x( ui_Panel4, 0 ); +lv_obj_set_y( ui_Panel4, 150 ); +lv_obj_set_align( ui_Panel4, LV_ALIGN_TOP_MID ); +lv_obj_clear_flag( ui_Panel4, LV_OBJ_FLAG_SCROLLABLE ); /// Flags +lv_obj_set_style_pad_left(ui_Panel4, 0, LV_PART_MAIN| LV_STATE_DEFAULT); +lv_obj_set_style_pad_right(ui_Panel4, 0, LV_PART_MAIN| LV_STATE_DEFAULT); +lv_obj_set_style_pad_top(ui_Panel4, 0, LV_PART_MAIN| LV_STATE_DEFAULT); +lv_obj_set_style_pad_bottom(ui_Panel4, 0, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_btn_slot_dec = lv_btn_create(ui_Panel4); +lv_obj_set_width( ui_btn_slot_dec, 30); +lv_obj_set_height( ui_btn_slot_dec, 30); +lv_obj_set_align( ui_btn_slot_dec, LV_ALIGN_LEFT_MID ); +lv_obj_add_flag( ui_btn_slot_dec, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags +lv_obj_clear_flag( ui_btn_slot_dec, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_Label2 = lv_label_create(ui_btn_slot_dec); +lv_obj_set_width( ui_Label2, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_Label2, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_Label2, LV_ALIGN_CENTER ); +lv_label_set_text(ui_Label2,"-"); + +ui_slot_label = lv_label_create(ui_Panel4); +lv_obj_set_width( ui_slot_label, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_slot_label, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_slot_label, LV_ALIGN_CENTER ); +lv_label_set_text(ui_slot_label,"Save Slot 1"); + +ui_btn_slot_inc = lv_btn_create(ui_Panel4); +lv_obj_set_width( ui_btn_slot_inc, 30); +lv_obj_set_height( ui_btn_slot_inc, 30); +lv_obj_set_align( ui_btn_slot_inc, LV_ALIGN_RIGHT_MID ); +lv_obj_add_flag( ui_btn_slot_inc, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags +lv_obj_clear_flag( ui_btn_slot_inc, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_Label1 = lv_label_create(ui_btn_slot_inc); +lv_obj_set_width( ui_Label1, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_Label1, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_Label1, LV_ALIGN_CENTER ); +lv_label_set_text(ui_Label1,"+"); + +ui_Panel2 = lv_obj_create(ui_menu_panel); +lv_obj_set_height( ui_Panel2, 100); +lv_obj_set_width( ui_Panel2, lv_pct(100)); +lv_obj_set_x( ui_Panel2, 0 ); +lv_obj_set_y( ui_Panel2, 200 ); +lv_obj_set_align( ui_Panel2, LV_ALIGN_TOP_MID ); +lv_obj_add_flag( ui_Panel2, LV_OBJ_FLAG_EVENT_BUBBLE ); /// Flags +lv_obj_clear_flag( ui_Panel2, LV_OBJ_FLAG_SCROLLABLE ); /// Flags +lv_obj_set_style_pad_left(ui_Panel2, 0, LV_PART_MAIN| LV_STATE_DEFAULT); +lv_obj_set_style_pad_right(ui_Panel2, 0, LV_PART_MAIN| LV_STATE_DEFAULT); +lv_obj_set_style_pad_top(ui_Panel2, 0, LV_PART_MAIN| LV_STATE_DEFAULT); +lv_obj_set_style_pad_bottom(ui_Panel2, 0, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_load_btn = lv_btn_create(ui_Panel2); +lv_obj_set_width( ui_load_btn, 50); +lv_obj_set_height( ui_load_btn, 40); +lv_obj_set_align( ui_load_btn, LV_ALIGN_LEFT_MID ); +lv_obj_add_flag( ui_load_btn, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags +lv_obj_clear_flag( ui_load_btn, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_Label4 = lv_label_create(ui_load_btn); +lv_obj_set_width( ui_Label4, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_Label4, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_Label4, LV_ALIGN_CENTER ); +lv_label_set_text(ui_Label4,"Load"); + +ui_slot_image = lv_img_create(ui_Panel2); +lv_obj_set_width( ui_slot_image, 80); +lv_obj_set_height( ui_slot_image, 60); +lv_obj_set_align( ui_slot_image, LV_ALIGN_RIGHT_MID ); +lv_obj_add_flag( ui_slot_image, LV_OBJ_FLAG_ADV_HITTEST ); /// Flags +lv_obj_clear_flag( ui_slot_image, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_Panel1 = lv_obj_create(ui_menu_panel); +lv_obj_set_height( ui_Panel1, 100); +lv_obj_set_width( ui_Panel1, lv_pct(100)); +lv_obj_set_x( ui_Panel1, 0 ); +lv_obj_set_y( ui_Panel1, 300 ); +lv_obj_set_align( ui_Panel1, LV_ALIGN_TOP_MID ); +lv_obj_clear_flag( ui_Panel1, LV_OBJ_FLAG_SCROLLABLE ); /// Flags +lv_obj_set_style_pad_left(ui_Panel1, 0, LV_PART_MAIN| LV_STATE_DEFAULT); +lv_obj_set_style_pad_right(ui_Panel1, 0, LV_PART_MAIN| LV_STATE_DEFAULT); +lv_obj_set_style_pad_top(ui_Panel1, 0, LV_PART_MAIN| LV_STATE_DEFAULT); +lv_obj_set_style_pad_bottom(ui_Panel1, 0, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_save_btn = lv_btn_create(ui_Panel1); +lv_obj_set_width( ui_save_btn, 50); +lv_obj_set_height( ui_save_btn, 40); +lv_obj_set_align( ui_save_btn, LV_ALIGN_LEFT_MID ); +lv_obj_add_flag( ui_save_btn, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags +lv_obj_clear_flag( ui_save_btn, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_Label3 = lv_label_create(ui_save_btn); +lv_obj_set_width( ui_Label3, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_Label3, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_Label3, LV_ALIGN_CENTER ); +lv_label_set_text(ui_Label3,"Save"); + +ui_pause_image = lv_img_create(ui_Panel1); +lv_obj_set_width( ui_pause_image, 80); +lv_obj_set_height( ui_pause_image, 60); +lv_obj_set_align( ui_pause_image, LV_ALIGN_RIGHT_MID ); +lv_obj_add_flag( ui_pause_image, LV_OBJ_FLAG_ADV_HITTEST ); /// Flags +lv_obj_clear_flag( ui_pause_image, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_Panel6 = lv_obj_create(ui_menu_panel); +lv_obj_set_height( ui_Panel6, 50); +lv_obj_set_width( ui_Panel6, lv_pct(100)); +lv_obj_set_x( ui_Panel6, 0 ); +lv_obj_set_y( ui_Panel6, 400 ); +lv_obj_set_align( ui_Panel6, LV_ALIGN_TOP_MID ); +lv_obj_clear_flag( ui_Panel6, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_Label9 = lv_label_create(ui_Panel6); +lv_obj_set_width( ui_Label9, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_Label9, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_Label9, LV_ALIGN_LEFT_MID ); +lv_label_set_text(ui_Label9,"Video"); + +ui_Dropdown2 = lv_dropdown_create(ui_Panel6); +lv_dropdown_set_options( ui_Dropdown2, "Original\nFit\nFill" ); +lv_obj_set_width( ui_Dropdown2, 150); +lv_obj_set_height( ui_Dropdown2, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_Dropdown2, LV_ALIGN_RIGHT_MID ); +lv_obj_add_flag( ui_Dropdown2, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags + + + +ui_reset_btn = lv_btn_create(ui_menu_panel); +lv_obj_set_width( ui_reset_btn, 100); +lv_obj_set_height( ui_reset_btn, 40); +lv_obj_set_x( ui_reset_btn, 0 ); +lv_obj_set_y( ui_reset_btn, 455 ); +lv_obj_add_flag( ui_reset_btn, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags +lv_obj_clear_flag( ui_reset_btn, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_Label5 = lv_label_create(ui_reset_btn); +lv_obj_set_width( ui_Label5, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_Label5, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_Label5, LV_ALIGN_CENTER ); +lv_label_set_text(ui_Label5,"Reset"); + +ui_quit_btn = lv_btn_create(ui_menu_panel); +lv_obj_set_width( ui_quit_btn, 100); +lv_obj_set_height( ui_quit_btn, 40); +lv_obj_set_x( ui_quit_btn, 0 ); +lv_obj_set_y( ui_quit_btn, 455 ); +lv_obj_set_align( ui_quit_btn, LV_ALIGN_TOP_RIGHT ); +lv_obj_add_flag( ui_quit_btn, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags +lv_obj_clear_flag( ui_quit_btn, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_Label7 = lv_label_create(ui_quit_btn); +lv_obj_set_width( ui_Label7, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_Label7, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_Label7, LV_ALIGN_CENTER ); +lv_label_set_text(ui_Label7,"Quit"); + +} diff --git a/components/menu/generated/ui.c b/components/menu/generated/ui.c index cef3f1a4..c3254b4f 100644 --- a/components/menu/generated/ui.c +++ b/components/menu/generated/ui.c @@ -1,5 +1,5 @@ // This file was generated by SquareLine Studio -// SquareLine Studio version: SquareLine Studio 1.2.3 +// SquareLine Studio version: SquareLine Studio 1.3.3 // LVGL version: 8.2.0 // Project name: menu @@ -7,9 +7,14 @@ #include "ui_helpers.h" ///////////////////// VARIABLES //////////////////// + + +// SCREEN: ui_Screen1 +void ui_Screen1_screen_init(void); lv_obj_t *ui_Screen1; lv_obj_t *ui_menu_panel; lv_obj_t *ui_menu_title; +lv_obj_t *ui_fps_label; lv_obj_t *ui_resume_btn; lv_obj_t *ui_Label6; lv_obj_t *ui_Panel3; @@ -20,6 +25,12 @@ lv_obj_t *ui_Label11; lv_obj_t *ui_Bar2; lv_obj_t *ui_volume_inc_btn; lv_obj_t *ui_Label8; +lv_obj_t *ui_Panel5; +lv_obj_t *ui_brightness_dec_btn; +lv_obj_t *ui_Label13; +lv_obj_t *ui_brightness_bar; +lv_obj_t *ui_brightness_inc_btn; +lv_obj_t *ui_Label14; lv_obj_t *ui_Panel4; lv_obj_t *ui_btn_slot_dec; lv_obj_t *ui_Label2; @@ -56,259 +67,6 @@ lv_obj_t *ui____initial_actions0; ///////////////////// FUNCTIONS //////////////////// ///////////////////// SCREENS //////////////////// -void ui_Screen1_screen_init(void) -{ -ui_Screen1 = lv_obj_create(NULL); -lv_obj_clear_flag( ui_Screen1, LV_OBJ_FLAG_SCROLLABLE ); /// Flags - -ui_menu_panel = lv_obj_create(ui_Screen1); -lv_obj_set_width( ui_menu_panel, lv_pct(100)); -lv_obj_set_height( ui_menu_panel, lv_pct(100)); -lv_obj_set_align( ui_menu_panel, LV_ALIGN_CENTER ); - -ui_menu_title = lv_label_create(ui_menu_panel); -lv_obj_set_width( ui_menu_title, LV_SIZE_CONTENT); /// 1 -lv_obj_set_height( ui_menu_title, LV_SIZE_CONTENT); /// 1 -lv_obj_set_align( ui_menu_title, LV_ALIGN_TOP_MID ); -lv_label_set_text(ui_menu_title,"Emulation Paused"); - -ui_resume_btn = lv_btn_create(ui_menu_panel); -lv_obj_set_width( ui_resume_btn, 100); -lv_obj_set_height( ui_resume_btn, 40); -lv_obj_set_x( ui_resume_btn, 0 ); -lv_obj_set_y( ui_resume_btn, 35 ); -lv_obj_set_align( ui_resume_btn, LV_ALIGN_TOP_MID ); -lv_obj_add_flag( ui_resume_btn, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags -lv_obj_clear_flag( ui_resume_btn, LV_OBJ_FLAG_SCROLLABLE ); /// Flags - -ui_Label6 = lv_label_create(ui_resume_btn); -lv_obj_set_width( ui_Label6, LV_SIZE_CONTENT); /// 1 -lv_obj_set_height( ui_Label6, LV_SIZE_CONTENT); /// 1 -lv_obj_set_align( ui_Label6, LV_ALIGN_CENTER ); -lv_label_set_text(ui_Label6,"Resume"); - -ui_Panel3 = lv_obj_create(ui_menu_panel); -lv_obj_set_height( ui_Panel3, 50); -lv_obj_set_width( ui_Panel3, lv_pct(100)); -lv_obj_set_x( ui_Panel3, 0 ); -lv_obj_set_y( ui_Panel3, 80 ); -lv_obj_set_align( ui_Panel3, LV_ALIGN_TOP_MID ); -lv_obj_clear_flag( ui_Panel3, LV_OBJ_FLAG_SCROLLABLE ); /// Flags -lv_obj_set_style_pad_left(ui_Panel3, 0, LV_PART_MAIN| LV_STATE_DEFAULT); -lv_obj_set_style_pad_right(ui_Panel3, 0, LV_PART_MAIN| LV_STATE_DEFAULT); -lv_obj_set_style_pad_top(ui_Panel3, 0, LV_PART_MAIN| LV_STATE_DEFAULT); -lv_obj_set_style_pad_bottom(ui_Panel3, 0, LV_PART_MAIN| LV_STATE_DEFAULT); - -ui_volume_mute_btn = lv_btn_create(ui_Panel3); -lv_obj_set_width( ui_volume_mute_btn, 30); -lv_obj_set_height( ui_volume_mute_btn, 30); -lv_obj_set_align( ui_volume_mute_btn, LV_ALIGN_LEFT_MID ); -lv_obj_add_flag( ui_volume_mute_btn, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags -lv_obj_clear_flag( ui_volume_mute_btn, LV_OBJ_FLAG_SCROLLABLE ); /// Flags - -ui_Label10 = lv_label_create(ui_volume_mute_btn); -lv_obj_set_width( ui_Label10, LV_SIZE_CONTENT); /// 1 -lv_obj_set_height( ui_Label10, LV_SIZE_CONTENT); /// 1 -lv_obj_set_align( ui_Label10, LV_ALIGN_CENTER ); -lv_label_set_text(ui_Label10,LV_SYMBOL_MUTE); - -ui_volume_dec_btn = lv_btn_create(ui_Panel3); -lv_obj_set_width( ui_volume_dec_btn, 30); -lv_obj_set_height( ui_volume_dec_btn, 30); -lv_obj_set_x( ui_volume_dec_btn, 35 ); -lv_obj_set_y( ui_volume_dec_btn, 0 ); -lv_obj_set_align( ui_volume_dec_btn, LV_ALIGN_LEFT_MID ); -lv_obj_add_flag( ui_volume_dec_btn, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags -lv_obj_clear_flag( ui_volume_dec_btn, LV_OBJ_FLAG_SCROLLABLE ); /// Flags - -ui_Label11 = lv_label_create(ui_volume_dec_btn); -lv_obj_set_width( ui_Label11, LV_SIZE_CONTENT); /// 1 -lv_obj_set_height( ui_Label11, LV_SIZE_CONTENT); /// 1 -lv_obj_set_align( ui_Label11, LV_ALIGN_CENTER ); -lv_label_set_text(ui_Label11,LV_SYMBOL_VOLUME_MID); - -ui_Bar2 = lv_bar_create(ui_Panel3); -lv_bar_set_value(ui_Bar2,25,LV_ANIM_OFF); -lv_obj_set_width( ui_Bar2, 150); -lv_obj_set_height( ui_Bar2, 10); -lv_obj_set_x( ui_Bar2, -50 ); -lv_obj_set_y( ui_Bar2, 0 ); -lv_obj_set_align( ui_Bar2, LV_ALIGN_RIGHT_MID ); - -ui_volume_inc_btn = lv_btn_create(ui_Panel3); -lv_obj_set_width( ui_volume_inc_btn, 30); -lv_obj_set_height( ui_volume_inc_btn, 30); -lv_obj_set_align( ui_volume_inc_btn, LV_ALIGN_RIGHT_MID ); -lv_obj_add_flag( ui_volume_inc_btn, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags -lv_obj_clear_flag( ui_volume_inc_btn, LV_OBJ_FLAG_SCROLLABLE ); /// Flags - -ui_Label8 = lv_label_create(ui_volume_inc_btn); -lv_obj_set_width( ui_Label8, LV_SIZE_CONTENT); /// 1 -lv_obj_set_height( ui_Label8, LV_SIZE_CONTENT); /// 1 -lv_obj_set_align( ui_Label8, LV_ALIGN_CENTER ); -lv_label_set_text(ui_Label8,LV_SYMBOL_VOLUME_MAX); - -ui_Panel4 = lv_obj_create(ui_menu_panel); -lv_obj_set_height( ui_Panel4, 50); -lv_obj_set_width( ui_Panel4, lv_pct(100)); -lv_obj_set_x( ui_Panel4, 0 ); -lv_obj_set_y( ui_Panel4, 130 ); -lv_obj_set_align( ui_Panel4, LV_ALIGN_TOP_MID ); -lv_obj_clear_flag( ui_Panel4, LV_OBJ_FLAG_SCROLLABLE ); /// Flags -lv_obj_set_style_pad_left(ui_Panel4, 0, LV_PART_MAIN| LV_STATE_DEFAULT); -lv_obj_set_style_pad_right(ui_Panel4, 0, LV_PART_MAIN| LV_STATE_DEFAULT); -lv_obj_set_style_pad_top(ui_Panel4, 0, LV_PART_MAIN| LV_STATE_DEFAULT); -lv_obj_set_style_pad_bottom(ui_Panel4, 0, LV_PART_MAIN| LV_STATE_DEFAULT); - -ui_btn_slot_dec = lv_btn_create(ui_Panel4); -lv_obj_set_width( ui_btn_slot_dec, 30); -lv_obj_set_height( ui_btn_slot_dec, 30); -lv_obj_set_align( ui_btn_slot_dec, LV_ALIGN_LEFT_MID ); -lv_obj_add_flag( ui_btn_slot_dec, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags -lv_obj_clear_flag( ui_btn_slot_dec, LV_OBJ_FLAG_SCROLLABLE ); /// Flags - -ui_Label2 = lv_label_create(ui_btn_slot_dec); -lv_obj_set_width( ui_Label2, LV_SIZE_CONTENT); /// 1 -lv_obj_set_height( ui_Label2, LV_SIZE_CONTENT); /// 1 -lv_obj_set_align( ui_Label2, LV_ALIGN_CENTER ); -lv_label_set_text(ui_Label2,"-"); - -ui_slot_label = lv_label_create(ui_Panel4); -lv_obj_set_width( ui_slot_label, LV_SIZE_CONTENT); /// 1 -lv_obj_set_height( ui_slot_label, LV_SIZE_CONTENT); /// 1 -lv_obj_set_align( ui_slot_label, LV_ALIGN_CENTER ); -lv_label_set_text(ui_slot_label,"Save Slot 1"); - -ui_btn_slot_inc = lv_btn_create(ui_Panel4); -lv_obj_set_width( ui_btn_slot_inc, 30); -lv_obj_set_height( ui_btn_slot_inc, 30); -lv_obj_set_align( ui_btn_slot_inc, LV_ALIGN_RIGHT_MID ); -lv_obj_add_flag( ui_btn_slot_inc, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags -lv_obj_clear_flag( ui_btn_slot_inc, LV_OBJ_FLAG_SCROLLABLE ); /// Flags - -ui_Label1 = lv_label_create(ui_btn_slot_inc); -lv_obj_set_width( ui_Label1, LV_SIZE_CONTENT); /// 1 -lv_obj_set_height( ui_Label1, LV_SIZE_CONTENT); /// 1 -lv_obj_set_align( ui_Label1, LV_ALIGN_CENTER ); -lv_label_set_text(ui_Label1,"+"); - -ui_Panel2 = lv_obj_create(ui_menu_panel); -lv_obj_set_height( ui_Panel2, 100); -lv_obj_set_width( ui_Panel2, lv_pct(100)); -lv_obj_set_x( ui_Panel2, 0 ); -lv_obj_set_y( ui_Panel2, 180 ); -lv_obj_set_align( ui_Panel2, LV_ALIGN_TOP_MID ); -lv_obj_add_flag( ui_Panel2, LV_OBJ_FLAG_EVENT_BUBBLE ); /// Flags -lv_obj_clear_flag( ui_Panel2, LV_OBJ_FLAG_SCROLLABLE ); /// Flags -lv_obj_set_style_pad_left(ui_Panel2, 0, LV_PART_MAIN| LV_STATE_DEFAULT); -lv_obj_set_style_pad_right(ui_Panel2, 0, LV_PART_MAIN| LV_STATE_DEFAULT); -lv_obj_set_style_pad_top(ui_Panel2, 0, LV_PART_MAIN| LV_STATE_DEFAULT); -lv_obj_set_style_pad_bottom(ui_Panel2, 0, LV_PART_MAIN| LV_STATE_DEFAULT); - -ui_load_btn = lv_btn_create(ui_Panel2); -lv_obj_set_width( ui_load_btn, 50); -lv_obj_set_height( ui_load_btn, 40); -lv_obj_set_align( ui_load_btn, LV_ALIGN_LEFT_MID ); -lv_obj_add_flag( ui_load_btn, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags -lv_obj_clear_flag( ui_load_btn, LV_OBJ_FLAG_SCROLLABLE ); /// Flags - -ui_Label4 = lv_label_create(ui_load_btn); -lv_obj_set_width( ui_Label4, LV_SIZE_CONTENT); /// 1 -lv_obj_set_height( ui_Label4, LV_SIZE_CONTENT); /// 1 -lv_obj_set_align( ui_Label4, LV_ALIGN_CENTER ); -lv_label_set_text(ui_Label4,"Load"); - -ui_slot_image = lv_img_create(ui_Panel2); -lv_obj_set_width( ui_slot_image, 80); -lv_obj_set_height( ui_slot_image, 60); -lv_obj_set_align( ui_slot_image, LV_ALIGN_RIGHT_MID ); -lv_obj_add_flag( ui_slot_image, LV_OBJ_FLAG_ADV_HITTEST ); /// Flags -lv_obj_clear_flag( ui_slot_image, LV_OBJ_FLAG_SCROLLABLE ); /// Flags - -ui_Panel1 = lv_obj_create(ui_menu_panel); -lv_obj_set_height( ui_Panel1, 100); -lv_obj_set_width( ui_Panel1, lv_pct(100)); -lv_obj_set_x( ui_Panel1, 0 ); -lv_obj_set_y( ui_Panel1, 280 ); -lv_obj_set_align( ui_Panel1, LV_ALIGN_TOP_MID ); -lv_obj_clear_flag( ui_Panel1, LV_OBJ_FLAG_SCROLLABLE ); /// Flags -lv_obj_set_style_pad_left(ui_Panel1, 0, LV_PART_MAIN| LV_STATE_DEFAULT); -lv_obj_set_style_pad_right(ui_Panel1, 0, LV_PART_MAIN| LV_STATE_DEFAULT); -lv_obj_set_style_pad_top(ui_Panel1, 0, LV_PART_MAIN| LV_STATE_DEFAULT); -lv_obj_set_style_pad_bottom(ui_Panel1, 0, LV_PART_MAIN| LV_STATE_DEFAULT); - -ui_save_btn = lv_btn_create(ui_Panel1); -lv_obj_set_width( ui_save_btn, 50); -lv_obj_set_height( ui_save_btn, 40); -lv_obj_set_align( ui_save_btn, LV_ALIGN_LEFT_MID ); -lv_obj_add_flag( ui_save_btn, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags -lv_obj_clear_flag( ui_save_btn, LV_OBJ_FLAG_SCROLLABLE ); /// Flags - -ui_Label3 = lv_label_create(ui_save_btn); -lv_obj_set_width( ui_Label3, LV_SIZE_CONTENT); /// 1 -lv_obj_set_height( ui_Label3, LV_SIZE_CONTENT); /// 1 -lv_obj_set_align( ui_Label3, LV_ALIGN_CENTER ); -lv_label_set_text(ui_Label3,"Save"); - -ui_pause_image = lv_img_create(ui_Panel1); -lv_obj_set_width( ui_pause_image, 80); -lv_obj_set_height( ui_pause_image, 60); -lv_obj_set_align( ui_pause_image, LV_ALIGN_RIGHT_MID ); -lv_obj_add_flag( ui_pause_image, LV_OBJ_FLAG_ADV_HITTEST ); /// Flags -lv_obj_clear_flag( ui_pause_image, LV_OBJ_FLAG_SCROLLABLE ); /// Flags - -ui_Panel6 = lv_obj_create(ui_menu_panel); -lv_obj_set_height( ui_Panel6, 50); -lv_obj_set_width( ui_Panel6, lv_pct(100)); -lv_obj_set_x( ui_Panel6, 0 ); -lv_obj_set_y( ui_Panel6, 380 ); -lv_obj_set_align( ui_Panel6, LV_ALIGN_TOP_MID ); -lv_obj_clear_flag( ui_Panel6, LV_OBJ_FLAG_SCROLLABLE ); /// Flags - -ui_Label9 = lv_label_create(ui_Panel6); -lv_obj_set_width( ui_Label9, LV_SIZE_CONTENT); /// 1 -lv_obj_set_height( ui_Label9, LV_SIZE_CONTENT); /// 1 -lv_obj_set_align( ui_Label9, LV_ALIGN_LEFT_MID ); -lv_label_set_text(ui_Label9,"Video"); - -ui_Dropdown2 = lv_dropdown_create(ui_Panel6); -lv_dropdown_set_options( ui_Dropdown2, "Original\nFit\nFill" ); -lv_obj_set_width( ui_Dropdown2, 150); -lv_obj_set_height( ui_Dropdown2, LV_SIZE_CONTENT); /// 1 -lv_obj_set_align( ui_Dropdown2, LV_ALIGN_RIGHT_MID ); -lv_obj_add_flag( ui_Dropdown2, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags - -ui_reset_btn = lv_btn_create(ui_menu_panel); -lv_obj_set_width( ui_reset_btn, 100); -lv_obj_set_height( ui_reset_btn, 40); -lv_obj_set_x( ui_reset_btn, 0 ); -lv_obj_set_y( ui_reset_btn, 435 ); -lv_obj_set_align( ui_reset_btn, LV_ALIGN_TOP_MID ); -lv_obj_add_flag( ui_reset_btn, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags -lv_obj_clear_flag( ui_reset_btn, LV_OBJ_FLAG_SCROLLABLE ); /// Flags - -ui_Label5 = lv_label_create(ui_reset_btn); -lv_obj_set_width( ui_Label5, LV_SIZE_CONTENT); /// 1 -lv_obj_set_height( ui_Label5, LV_SIZE_CONTENT); /// 1 -lv_obj_set_align( ui_Label5, LV_ALIGN_CENTER ); -lv_label_set_text(ui_Label5,"Reset"); - -ui_quit_btn = lv_btn_create(ui_menu_panel); -lv_obj_set_width( ui_quit_btn, 100); -lv_obj_set_height( ui_quit_btn, 40); -lv_obj_set_x( ui_quit_btn, 0 ); -lv_obj_set_y( ui_quit_btn, 485 ); -lv_obj_set_align( ui_quit_btn, LV_ALIGN_TOP_MID ); -lv_obj_add_flag( ui_quit_btn, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags -lv_obj_clear_flag( ui_quit_btn, LV_OBJ_FLAG_SCROLLABLE ); /// Flags - -ui_Label7 = lv_label_create(ui_quit_btn); -lv_obj_set_width( ui_Label7, LV_SIZE_CONTENT); /// 1 -lv_obj_set_height( ui_Label7, LV_SIZE_CONTENT); /// 1 -lv_obj_set_align( ui_Label7, LV_ALIGN_CENTER ); -lv_label_set_text(ui_Label7,"Quit"); - -} void menu_ui_init( void ) { diff --git a/components/menu/generated/ui.h b/components/menu/generated/ui.h index 016814a5..0f74c97f 100644 --- a/components/menu/generated/ui.h +++ b/components/menu/generated/ui.h @@ -1,5 +1,5 @@ // This file was generated by SquareLine Studio -// SquareLine Studio version: SquareLine Studio 1.2.3 +// SquareLine Studio version: SquareLine Studio 1.3.3 // LVGL version: 8.2.0 // Project name: menu @@ -12,10 +12,14 @@ extern "C" { #include "lvgl.h" +#include "ui_helpers.h" #include "ui_events.h" +// SCREEN: ui_Screen1 +void ui_Screen1_screen_init(void); extern lv_obj_t *ui_Screen1; extern lv_obj_t *ui_menu_panel; extern lv_obj_t *ui_menu_title; +extern lv_obj_t *ui_fps_label; extern lv_obj_t *ui_resume_btn; extern lv_obj_t *ui_Label6; extern lv_obj_t *ui_Panel3; @@ -26,6 +30,12 @@ extern lv_obj_t *ui_Label11; extern lv_obj_t *ui_Bar2; extern lv_obj_t *ui_volume_inc_btn; extern lv_obj_t *ui_Label8; +extern lv_obj_t *ui_Panel5; +extern lv_obj_t *ui_brightness_dec_btn; +extern lv_obj_t *ui_Label13; +extern lv_obj_t *ui_brightness_bar; +extern lv_obj_t *ui_brightness_inc_btn; +extern lv_obj_t *ui_Label14; extern lv_obj_t *ui_Panel4; extern lv_obj_t *ui_btn_slot_dec; extern lv_obj_t *ui_Label2; @@ -52,8 +62,6 @@ extern lv_obj_t *ui____initial_actions0; - - void menu_ui_init(void); #ifdef __cplusplus diff --git a/components/menu/generated/ui_events.h b/components/menu/generated/ui_events.h index 1b087cff..806d1142 100644 --- a/components/menu/generated/ui_events.h +++ b/components/menu/generated/ui_events.h @@ -1,5 +1,5 @@ // This file was generated by SquareLine Studio -// SquareLine Studio version: SquareLine Studio 1.2.3 +// SquareLine Studio version: SquareLine Studio 1.3.3 // LVGL version: 8.2.0 // Project name: menu @@ -10,7 +10,6 @@ extern "C" { #endif - #ifdef __cplusplus } /*extern "C"*/ #endif diff --git a/components/menu/generated/ui_helpers.c b/components/menu/generated/ui_helpers.c index 7bc30be9..5881dffe 100644 --- a/components/menu/generated/ui_helpers.c +++ b/components/menu/generated/ui_helpers.c @@ -1,5 +1,5 @@ // This file was generated by SquareLine Studio -// SquareLine Studio version: SquareLine Studio 1.2.3 +// SquareLine Studio version: SquareLine Studio 1.3.3 // LVGL version: 8.2.0 // Project name: menu @@ -19,7 +19,6 @@ void _ui_basic_set_property( lv_obj_t *target, int id, int val) if (id == _UI_BASIC_PROPERTY_HEIGHT) lv_obj_set_height(target, val); } - void _ui_dropdown_set_property( lv_obj_t *target, int id, int val) { if (id == _UI_DROPDOWN_PROPERTY_SELECTED) lv_dropdown_set_selected(target, val); @@ -30,12 +29,11 @@ void _ui_image_set_property( lv_obj_t *target, int id, uint8_t *val) if (id == _UI_IMAGE_PROPERTY_IMAGE) lv_img_set_src(target, val); } -void _ui_label_set_property( lv_obj_t *target, int id, char *val) +void _ui_label_set_property( lv_obj_t *target, int id, const char *val) { if (id == _UI_LABEL_PROPERTY_TEXT) lv_label_set_text(target, val); } - void _ui_roller_set_property( lv_obj_t *target, int id, int val) { if (id == _UI_ROLLER_PROPERTY_SELECTED_WITH_ANIM) lv_roller_set_selected(target, val, LV_ANIM_ON); @@ -48,10 +46,20 @@ void _ui_slider_set_property( lv_obj_t *target, int id, int val) if (id == _UI_SLIDER_PROPERTY_VALUE) lv_slider_set_value(target, val, LV_ANIM_OFF); } +void _ui_screen_change( lv_obj_t ** target, lv_scr_load_anim_t fademode, int spd, int delay, void (*target_init)(void)) +{ + if(*target == NULL) + target_init(); + lv_scr_load_anim(*target, fademode, spd, delay, false); +} -void _ui_screen_change( lv_obj_t *target, lv_scr_load_anim_t fademode, int spd, int delay) +void _ui_screen_delete( lv_obj_t ** target ) { - lv_scr_load_anim(target, fademode, spd, delay, false); + if(*target == NULL) + { + lv_obj_del(*target); + target = NULL; + } } void _ui_arc_increment( lv_obj_t *target, int val) @@ -100,6 +108,13 @@ void _ui_state_modify( lv_obj_t *target, int32_t state, int value) else lv_obj_clear_state(target,state); } +void scr_unloaded_delete_cb(lv_event_t * e) +{ + lv_obj_t ** var = lv_event_get_user_data(e); + lv_obj_del(*var); + (*var) = NULL; +} + void _ui_opacity_set( lv_obj_t *target, int val) { lv_obj_set_style_opa(target, val, 0); @@ -210,23 +225,22 @@ int32_t _ui_anim_callback_get_image_frame(lv_anim_t* a) return usr->val; } -void _ui_arc_set_text_value( lv_obj_t *trg, lv_obj_t *src, char *prefix, char *postfix) +void _ui_arc_set_text_value( lv_obj_t *trg, lv_obj_t *src, const char *prefix, const char *postfix) { char buf[_UI_TEMPORARY_STRING_BUFFER_SIZE]; lv_snprintf(buf, sizeof(buf), "%s%d%s", prefix, (int)lv_arc_get_value(src), postfix); lv_label_set_text(trg, buf); } -void _ui_slider_set_text_value( lv_obj_t *trg, lv_obj_t *src, char *prefix, char *postfix) +void _ui_slider_set_text_value( lv_obj_t *trg, lv_obj_t *src, const char *prefix, const char *postfix) { char buf[_UI_TEMPORARY_STRING_BUFFER_SIZE]; lv_snprintf(buf, sizeof(buf), "%s%d%s", prefix, (int)lv_slider_get_value(src), postfix); lv_label_set_text(trg, buf); } -void _ui_checked_set_text_value( lv_obj_t *trg, lv_obj_t *src, char *txt_on, char *txt_off) +void _ui_checked_set_text_value( lv_obj_t *trg, lv_obj_t *src, const char *txt_on, const char *txt_off) { if (lv_obj_has_state(src,LV_STATE_CHECKED)) lv_label_set_text(trg,txt_on); else lv_label_set_text(trg,txt_off); } - diff --git a/components/menu/generated/ui_helpers.h b/components/menu/generated/ui_helpers.h index 1fee6cf9..d0d6965b 100644 --- a/components/menu/generated/ui_helpers.h +++ b/components/menu/generated/ui_helpers.h @@ -1,5 +1,5 @@ // This file was generated by SquareLine Studio -// SquareLine Studio version: SquareLine Studio 1.2.3 +// SquareLine Studio version: SquareLine Studio 1.3.3 // LVGL version: 8.2.0 // Project name: menu @@ -30,7 +30,7 @@ void _ui_dropdown_set_property( lv_obj_t *target, int id, int val); void _ui_image_set_property( lv_obj_t *target, int id, uint8_t *val); #define _UI_LABEL_PROPERTY_TEXT 0 -void _ui_label_set_property( lv_obj_t *target, int id, char *val); +void _ui_label_set_property( lv_obj_t *target, int id, const char *val); #define _UI_ROLLER_PROPERTY_SELECTED 0 #define _UI_ROLLER_PROPERTY_SELECTED_WITH_ANIM 1 @@ -40,7 +40,9 @@ void _ui_roller_set_property( lv_obj_t *target, int id, int val); #define _UI_SLIDER_PROPERTY_VALUE_WITH_ANIM 1 void _ui_slider_set_property( lv_obj_t *target, int id, int val); -void _ui_screen_change( lv_obj_t *target, lv_scr_load_anim_t fademode, int spd, int delay); +void _ui_screen_change( lv_obj_t ** target, lv_scr_load_anim_t fademode, int spd, int delay, void (*target_init)(void)); + +void _ui_screen_delete( lv_obj_t ** target ); void _ui_arc_increment( lv_obj_t *target, int val); @@ -60,6 +62,8 @@ void _ui_flag_modify( lv_obj_t *target, int32_t flag, int value); #define _UI_MODIFY_STATE_TOGGLE 2 void _ui_state_modify( lv_obj_t *target, int32_t state, int value); +void scr_unloaded_delete_cb(lv_event_t * e); + void _ui_opacity_set( lv_obj_t *target, int val); /** Describes an animation*/ @@ -103,12 +107,11 @@ int32_t _ui_anim_callback_get_image_angle(lv_anim_t* a); int32_t _ui_anim_callback_get_image_frame(lv_anim_t* a); -void _ui_arc_set_text_value( lv_obj_t *trg, lv_obj_t *src, char *prefix, char *postfix); - -void _ui_slider_set_text_value( lv_obj_t *trg, lv_obj_t *src, char *prefix, char *postfix); +void _ui_arc_set_text_value( lv_obj_t *trg, lv_obj_t *src, const char *prefix, const char *postfix); -void _ui_checked_set_text_value( lv_obj_t *trg, lv_obj_t *src, char *txt_on, char *txt_off); +void _ui_slider_set_text_value( lv_obj_t *trg, lv_obj_t *src, const char *prefix, const char *postfix); +void _ui_checked_set_text_value( lv_obj_t *trg, lv_obj_t *src, const char *txt_on, const char *txt_off); #ifdef __cplusplus } /*extern "C"*/ diff --git a/components/menu/include/menu.hpp b/components/menu/include/menu.hpp index edf205f9..0314856b 100644 --- a/components/menu/include/menu.hpp +++ b/components/menu/include/menu.hpp @@ -12,6 +12,8 @@ #include "input.h" #include "hal_events.hpp" #include "i2s_audio.h" +#include "spi_lcd.h" +#include "statistics.hpp" #include "video_setting.hpp" class Menu { @@ -53,9 +55,9 @@ class Menu { } ~Menu() { + espp::EventManager::get().remove_subscriber(mute_button_topic, "gui"); task_->stop(); deinit_ui(); - espp::EventManager::get().remove_subscriber(mute_button_topic, "gui"); } size_t get_selected_slot() const { @@ -91,7 +93,7 @@ class Menu { void set_audio_level(int new_audio_level); - int get_audio_level(); + void set_brightness(int new_brightness); void set_video_setting(VideoSetting setting); @@ -104,6 +106,7 @@ class Menu { update_shared_state(); update_slot_display(); update_pause_image(); + update_fps_label(get_fps()); paused_ = false; lv_group_focus_freeze(group_, false); } @@ -115,10 +118,12 @@ class Menu { void update_slot_label(); void update_slot_image(); void update_pause_image(); + void update_fps_label(float fps); void update_shared_state() { set_mute(is_muted()); set_audio_level(get_audio_volume()); + set_brightness(get_display_brightness() * 100.0f); set_video_setting(::get_video_setting()); } diff --git a/components/menu/squareline/menu.sll b/components/menu/squareline/menu.sll index 6a1c6234..1c72d8c8 100644 --- a/components/menu/squareline/menu.sll +++ b/components/menu/squareline/menu.sll @@ -1 +1 @@ -{"name":"menu.spj","depth":2,"width":320,"height":240,"rotation":0,"offset_x":0,"offset_y":0,"shape":"RECTANGLE","description":"The menu that the user can open while playing a rom.","board":"ESP-BOX","board_version":"1.0.0","editor_version":"1.2.3","image":"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","force_export_images":false,"pointfilter":false,"theme_simplified":false,"theme_dark":true,"theme_color1":5,"theme_color2":0,"exportFolderPath":"/Users/bob/esp-cpp/esp-box-emu/components/menu/generated","projectExportFolderPath":"/Users/bob/esp-cpp/esp-box-emu/components/menu/squareline","backup_cnt":11,"autosave_cnt":0,"lvgl_version":"8.2.0","callfuncsexport":"C_FILE","lvgl_include_path":""} \ No newline at end of file +{"name":"menu.spj","depth":2,"width":320,"height":240,"rotation":0,"offset_x":0,"offset_y":0,"shape":"RECTANGLE","multilang":"","description":"The menu that the user can open while playing a rom.","board":"ESP-BOX","board_version":"1.0.0","editor_version":"1.3.3","image":"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","force_export_images":false,"flat_export":false,"pointfilter":false,"theme_simplified":false,"theme_dark":true,"theme_color1":5,"theme_color2":0,"exportFolderPath":"/Users/bob/esp-cpp/esp-box-emu/components/menu/generated","projectExportFolderPath":"/Users/bob/esp-cpp/esp-box-emu/components/menu/squareline","backup_cnt":14,"autosave_cnt":0,"lvgl_version":"8.2.0","callfuncsexport":"C_FILE","lvgl_include_path":""} \ No newline at end of file diff --git a/components/menu/squareline/menu.spj b/components/menu/squareline/menu.spj index 4f41cad6..31fa9fd9 100644 --- a/components/menu/squareline/menu.spj +++ b/components/menu/squareline/menu.spj @@ -68,7 +68,7 @@ { "nid": -1107605690, "strtype": "OBJECT/Align", - "strval": "TOP_MID", + "strval": "TOP_RIGHT", "InheritedType": 3 }, { @@ -125,6 +125,12 @@ "strval": "False", "InheritedType": 2 }, + { + "nid": 1853085241, + "strtype": "LABEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, { "nid": 1650040554, "strtype": "LABEL/Flex_in_new_track", @@ -179,6 +185,12 @@ "strval": "True", "InheritedType": 2 }, + { + "nid": -1846518823, + "strtype": "LABEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, { "nid": 1512601134, "strtype": "OBJECT/Scroll_one", @@ -285,6 +297,293 @@ ], "saved_objtypeKey": "LABEL" }, + { + "guid": "GUID70158934-695564S02338", + "deepid": 1957475889, + "locked": false, + "properties": [ + { + "nid": -1166652878, + "strtype": "OBJECT/Name", + "strval": "fps label", + "InheritedType": 10 + }, + { + "nid": 1370582808, + "strtype": "OBJECT/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": 1715417568, + "strtype": "OBJECT/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": 1678192609, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": -302960836, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 0, + 20 + ], + "InheritedType": 7 + }, + { + "nid": -476209158, + "flags": 51, + "strtype": "OBJECT/Size", + "intarray": [ + 1, + 1 + ], + "InheritedType": 7 + }, + { + "nid": 1705810842, + "strtype": "OBJECT/Align", + "strval": "TOP_RIGHT", + "InheritedType": 3 + }, + { + "nid": -244575646, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": -1194910369, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 289616210, + "strtype": "OBJECT/Clickable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -869923908, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1283692919, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1072261047, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -909323414, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 22802125, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -697247431, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1248708321, + "strtype": "OBJECT/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -910036050, + "strtype": "OBJECT/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1432453754, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 938978519, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -355635291, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -129673461, + "strtype": "OBJECT/Scrollable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -790854687, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1047598165, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 601214739, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 2087281528, + "strtype": "OBJECT/Scroll_chain", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1717927670, + "strtype": "OBJECT/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -618853356, + "strtype": "OBJECT/Scroll_one", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1417668429, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": 1529760935, + "strtype": "OBJECT/Scroll_direction", + "strval": "ALL", + "InheritedType": 3 + }, + { + "nid": -95425452, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": 766973305, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -101651748, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1010129915, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1515368308, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -600876535, + "strtype": "OBJECT/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1488508569, + "strtype": "OBJECT/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 703618986, + "strtype": "OBJECT/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 701366231, + "strtype": "OBJECT/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1357987727, + "strtype": "LABEL/Label", + "InheritedType": 1 + }, + { + "nid": 1833573345, + "strtype": "LABEL/Long_mode", + "strval": "WRAP", + "InheritedType": 3 + }, + { + "nid": 849587031, + "strtype": "LABEL/Text", + "strval": "200.5 FPS", + "InheritedType": 10 + }, + { + "part": "lv.PART.MAIN", + "childs": [], + "nid": -102906741, + "strtype": "LABEL/Style_main", + "strval": "lv.PART.MAIN, Text, Rectangle, Pad", + "InheritedType": 11 + }, + { + "nid": 111037878, + "strtype": "LABEL/Recolor", + "strval": "False", + "InheritedType": 2 + } + ], + "saved_objtypeKey": "LABEL", + "tree_closed": true + }, { "guid": "GUID88885274-130823S40299", "deepid": 479922634, @@ -403,6 +702,12 @@ "strval": "False", "InheritedType": 2 }, + { + "nid": 1691008643, + "strtype": "LABEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, { "nid": 830726017, "strtype": "OBJECT/Flex_in_new_track", @@ -457,6 +762,12 @@ "strval": "True", "InheritedType": 2 }, + { + "nid": 173124415, + "strtype": "LABEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, { "nid": -783554170, "strtype": "OBJECT/Scroll_one", @@ -601,7 +912,7 @@ "strtype": "OBJECT/Position", "intarray": [ 0, - 35 + 0 ], "InheritedType": 7 }, @@ -618,7 +929,7 @@ { "nid": -262640015, "strtype": "OBJECT/Align", - "strval": "TOP_MID", + "strval": "TOP_LEFT", "InheritedType": 3 }, { @@ -676,13 +987,19 @@ "InheritedType": 2 }, { - "nid": 94193184, - "strtype": "OBJECT/Flex_in_new_track", + "nid": -197652152, + "strtype": "BUTTON/Overflow_visible", "strval": "False", "InheritedType": 2 }, { - "nid": -1260700582, + "nid": 94193184, + "strtype": "OBJECT/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1260700582, "strtype": "OBJECT/Event_bubble", "strval": "False", "InheritedType": 2 @@ -729,6 +1046,12 @@ "strval": "True", "InheritedType": 2 }, + { + "nid": -1200047563, + "strtype": "BUTTON/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, { "nid": -1448183351, "strtype": "OBJECT/Scroll_one", @@ -935,6 +1258,12 @@ "strval": "False", "InheritedType": 2 }, + { + "nid": 500786230, + "strtype": "LABEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, { "nid": 2041294127, "strtype": "OBJECT/Flex_in_new_track", @@ -989,6 +1318,12 @@ "strval": "True", "InheritedType": 2 }, + { + "nid": -513548419, + "strtype": "LABEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, { "nid": 2122589818, "strtype": "OBJECT/Scroll_one", @@ -1207,6 +1542,12 @@ "strval": "False", "InheritedType": 2 }, + { + "nid": -487950282, + "strtype": "BUTTON/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, { "nid": 2003247016, "strtype": "OBJECT/Flex_in_new_track", @@ -1261,6 +1602,12 @@ "strval": "True", "InheritedType": 2 }, + { + "nid": 901836709, + "strtype": "BUTTON/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, { "nid": 1752619059, "strtype": "OBJECT/Scroll_one", @@ -1345,22 +1692,1678 @@ "saved_objtypeKey": "BUTTON" }, { - "guid": "GUID7050513-134689S891299", + "guid": "GUID7050513-134689S891299", + "deepid": -2073948964, + "children": [ + { + "guid": "GUID4478623-139086S779299", + "deepid": 699198064, + "locked": false, + "properties": [ + { + "nid": -1888505009, + "strtype": "OBJECT/Name", + "strval": "Label11", + "InheritedType": 10 + }, + { + "nid": -1237064329, + "strtype": "OBJECT/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": 1147111819, + "strtype": "OBJECT/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": 864467684, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": 168274207, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 0, + 0 + ], + "InheritedType": 7 + }, + { + "nid": 598472335, + "flags": 51, + "strtype": "OBJECT/Size", + "intarray": [ + 1, + 1 + ], + "InheritedType": 7 + }, + { + "nid": -1701345511, + "strtype": "OBJECT/Align", + "strval": "CENTER", + "InheritedType": 3 + }, + { + "nid": -133168589, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": 2059286674, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 720049573, + "strtype": "OBJECT/Clickable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 819324107, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -373744, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1107440447, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1018240859, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1455908073, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -604912349, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1669761883, + "strtype": "LABEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -953184762, + "strtype": "OBJECT/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 142621398, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 247215279, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -720529281, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 546736853, + "strtype": "OBJECT/Scrollable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -341482726, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1773818816, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1816500137, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1247860246, + "strtype": "OBJECT/Scroll_chain", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 298770901, + "strtype": "LABEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1492449250, + "strtype": "OBJECT/Scroll_one", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -546990699, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": -1407816072, + "strtype": "OBJECT/Scroll_direction", + "strval": "ALL", + "InheritedType": 3 + }, + { + "nid": -1999232657, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": 802947271, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 920532091, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 647357010, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1449908122, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1337143129, + "strtype": "OBJECT/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -839232500, + "strtype": "OBJECT/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1730597070, + "strtype": "OBJECT/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1437703321, + "strtype": "OBJECT/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1101140345, + "strtype": "LABEL/Label", + "InheritedType": 1 + }, + { + "nid": 455937775, + "strtype": "LABEL/Long_mode", + "strval": "WRAP", + "InheritedType": 3 + }, + { + "nid": 78390435, + "strtype": "LABEL/Text", + "strval": "LV_SYMBOL_VOLUME_MID", + "InheritedType": 10 + }, + { + "part": "lv.PART.MAIN", + "childs": [], + "nid": -181118045, + "strtype": "LABEL/Style_main", + "strval": "lv.PART.MAIN, Text, Rectangle, Pad", + "InheritedType": 11 + }, + { + "nid": 746754206, + "strtype": "LABEL/Recolor", + "strval": "False", + "InheritedType": 2 + } + ], + "saved_objtypeKey": "LABEL" + } + ], + "locked": false, + "properties": [ + { + "nid": -1732168164, + "strtype": "OBJECT/Name", + "strval": "volume dec btn", + "InheritedType": 10 + }, + { + "nid": 299640232, + "strtype": "OBJECT/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": 990983983, + "strtype": "OBJECT/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": 177050740, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": -988881668, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 35, + 0 + ], + "InheritedType": 7 + }, + { + "nid": 1781665891, + "flags": 17, + "strtype": "OBJECT/Size", + "intarray": [ + 30, + 30 + ], + "InheritedType": 7 + }, + { + "nid": -535309023, + "strtype": "OBJECT/Align", + "strval": "LEFT_MID", + "InheritedType": 3 + }, + { + "nid": -742920457, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": -1055094551, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 840524021, + "strtype": "OBJECT/Clickable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -2083847781, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1983686893, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1948194400, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 315489126, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 167033587, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1472465498, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1086684145, + "strtype": "BUTTON/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1831169412, + "strtype": "OBJECT/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 419773364, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 417946543, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -484555778, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -359767932, + "strtype": "OBJECT/Scrollable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -725561379, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 171183498, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1513226003, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1600654678, + "strtype": "OBJECT/Scroll_chain", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -715943087, + "strtype": "BUTTON/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1891620048, + "strtype": "OBJECT/Scroll_one", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -84124277, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": 2008488457, + "strtype": "OBJECT/Scroll_direction", + "strval": "ALL", + "InheritedType": 3 + }, + { + "nid": 2092426059, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": 563433045, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 535821263, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -40954611, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1799860880, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 252096033, + "strtype": "OBJECT/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 717101233, + "strtype": "OBJECT/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1508839347, + "strtype": "OBJECT/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 299798225, + "strtype": "OBJECT/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "part": "lv.PART.MAIN", + "childs": [], + "nid": 788256277, + "strtype": "BUTTON/Style_main", + "strval": "lv.PART.MAIN, Rectangle, Pad, Text ", + "InheritedType": 11 + } + ], + "saved_objtypeKey": "BUTTON" + }, + { + "guid": "GUID81355858-134040S208299", + "deepid": 375875006, + "locked": false, + "properties": [ + { + "nid": -1645810627, + "strtype": "OBJECT/Name", + "strval": "Bar2", + "InheritedType": 10 + }, + { + "nid": -1556747599, + "strtype": "OBJECT/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": -1535153213, + "strtype": "OBJECT/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": 901188133, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": -67512305, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + -50, + 0 + ], + "InheritedType": 7 + }, + { + "nid": -884264170, + "flags": 17, + "strtype": "OBJECT/Size", + "intarray": [ + 150, + 10 + ], + "InheritedType": 7 + }, + { + "nid": 212839881, + "strtype": "OBJECT/Align", + "strval": "RIGHT_MID", + "InheritedType": 3 + }, + { + "nid": 183748637, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": 1023224544, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 810944928, + "strtype": "OBJECT/Clickable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1541007046, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -926367976, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 281384218, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 513927528, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1621247174, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -2026609854, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1956383140, + "strtype": "BAR/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1036881274, + "strtype": "OBJECT/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -2028019477, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -761093918, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1032918319, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -175236971, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -149776182, + "strtype": "BAR/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 594914091, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": 374069549, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -201118220, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 948231493, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -120293555, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1457932850, + "strtype": "OBJECT/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 45449272, + "strtype": "OBJECT/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 32456423, + "strtype": "OBJECT/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -2049846118, + "strtype": "OBJECT/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1850611047, + "strtype": "BAR/Bar", + "InheritedType": 1 + }, + { + "nid": 1189833652, + "strtype": "BAR/Range", + "intarray": [ + 0, + 100 + ], + "InheritedType": 7 + }, + { + "nid": -1728056213, + "strtype": "BAR/Value", + "integer": 25, + "InheritedType": 6 + }, + { + "part": "lv.PART.MAIN", + "childs": [], + "nid": 2103774511, + "strtype": "BAR/Style_main", + "strval": "lv.PART.MAIN, Rectangle, Pad, Anim1", + "InheritedType": 11 + }, + { + "part": "lv.PART.INDICATOR", + "childs": [], + "nid": -441354831, + "strtype": "BAR/Style_indicator", + "strval": "lv.PART.INDICATOR, Rectangle", + "InheritedType": 11 + }, + { + "nid": 1049614181, + "strtype": "BAR/Mode", + "strval": "NORMAL", + "InheritedType": 3 + }, + { + "nid": 2022888677, + "strtype": "BAR/Value_start", + "InheritedType": 6 + } + ], + "saved_objtypeKey": "BAR" + }, + { + "guid": "GUID65628620-135099S10299", + "deepid": 1225835062, + "children": [ + { + "guid": "GUID58270544-139500S202299", + "deepid": -1561809669, + "locked": false, + "properties": [ + { + "nid": 927158065, + "strtype": "OBJECT/Name", + "strval": "Label8", + "InheritedType": 10 + }, + { + "nid": 459836000, + "strtype": "OBJECT/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": -1354252479, + "strtype": "OBJECT/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": -1943126612, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": 1087061818, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 0, + 0 + ], + "InheritedType": 7 + }, + { + "nid": 900975819, + "flags": 51, + "strtype": "OBJECT/Size", + "intarray": [ + 1, + 1 + ], + "InheritedType": 7 + }, + { + "nid": 36935426, + "strtype": "OBJECT/Align", + "strval": "CENTER", + "InheritedType": 3 + }, + { + "nid": 1582989857, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": 1922117356, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -325899534, + "strtype": "OBJECT/Clickable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -120163198, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1338536994, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -281496500, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1864519423, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -897418722, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1255439781, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -2079801302, + "strtype": "LABEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1191853263, + "strtype": "OBJECT/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1824478595, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -2142612522, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1269266212, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1293258544, + "strtype": "OBJECT/Scrollable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1426528410, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -2115861097, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1643323921, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 2100898914, + "strtype": "OBJECT/Scroll_chain", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -111573381, + "strtype": "LABEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1635850945, + "strtype": "OBJECT/Scroll_one", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1857110622, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": 809663134, + "strtype": "OBJECT/Scroll_direction", + "strval": "ALL", + "InheritedType": 3 + }, + { + "nid": 1533087491, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": -948898370, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 691726443, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -358118556, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 374966570, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1485314161, + "strtype": "OBJECT/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 58474545, + "strtype": "OBJECT/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1724542843, + "strtype": "OBJECT/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -74982269, + "strtype": "OBJECT/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -2075058219, + "strtype": "LABEL/Label", + "InheritedType": 1 + }, + { + "nid": 666171643, + "strtype": "LABEL/Long_mode", + "strval": "WRAP", + "InheritedType": 3 + }, + { + "nid": -151981974, + "strtype": "LABEL/Text", + "strval": "LV_SYMBOL_VOLUME_MAX", + "InheritedType": 10 + }, + { + "part": "lv.PART.MAIN", + "childs": [], + "nid": 1903773183, + "strtype": "LABEL/Style_main", + "strval": "lv.PART.MAIN, Text, Rectangle, Pad", + "InheritedType": 11 + }, + { + "nid": 238882901, + "strtype": "LABEL/Recolor", + "strval": "False", + "InheritedType": 2 + } + ], + "saved_objtypeKey": "LABEL" + } + ], + "locked": false, + "properties": [ + { + "nid": -980265541, + "strtype": "OBJECT/Name", + "strval": "volume inc btn", + "InheritedType": 10 + }, + { + "nid": 126728937, + "strtype": "OBJECT/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": -1997275036, + "strtype": "OBJECT/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": -1324795251, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": -635430922, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 0, + 0 + ], + "InheritedType": 7 + }, + { + "nid": -1454446224, + "flags": 17, + "strtype": "OBJECT/Size", + "intarray": [ + 30, + 30 + ], + "InheritedType": 7 + }, + { + "nid": 149591139, + "strtype": "OBJECT/Align", + "strval": "RIGHT_MID", + "InheritedType": 3 + }, + { + "nid": -471086467, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": 1601615942, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 557100117, + "strtype": "OBJECT/Clickable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -958738535, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1965407799, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1878424152, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 253228330, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1023533314, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1264097759, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1500783578, + "strtype": "BUTTON/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 942154535, + "strtype": "OBJECT/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -953324922, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1766308302, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1421426157, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -565026292, + "strtype": "OBJECT/Scrollable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -13688090, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -647575169, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 1829117657, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1996828995, + "strtype": "OBJECT/Scroll_chain", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -519247780, + "strtype": "BUTTON/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1656540353, + "strtype": "OBJECT/Scroll_one", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1008545670, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": 492000527, + "strtype": "OBJECT/Scroll_direction", + "strval": "ALL", + "InheritedType": 3 + }, + { + "nid": 1430108121, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": -1601862148, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 872999560, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -978794353, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1727527879, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -405802686, + "strtype": "OBJECT/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -578212366, + "strtype": "OBJECT/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 761285539, + "strtype": "OBJECT/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -2050004668, + "strtype": "OBJECT/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "part": "lv.PART.MAIN", + "childs": [], + "nid": 1729975837, + "strtype": "BUTTON/Style_main", + "strval": "lv.PART.MAIN, Rectangle, Pad, Text ", + "InheritedType": 11 + } + ], + "saved_objtypeKey": "BUTTON" + } + ], + "locked": false, + "properties": [ + { + "nid": -1935501909, + "strtype": "OBJECT/Name", + "strval": "Panel3", + "InheritedType": 10 + }, + { + "nid": -555685535, + "strtype": "OBJECT/Layout", + "InheritedType": 1 + }, + { + "Flow": 0, + "Wrap": false, + "Reversed": false, + "MainAlignment": 0, + "CrossAlignment": 0, + "TrackAlignment": 0, + "LayoutType": 0, + "nid": -1474629275, + "strtype": "OBJECT/Layout_type", + "strval": "No_layout", + "InheritedType": 13 + }, + { + "nid": 1010952861, + "strtype": "OBJECT/Transform", + "InheritedType": 1 + }, + { + "nid": -164437180, + "flags": 17, + "strtype": "OBJECT/Position", + "intarray": [ + 0, + 50 + ], + "InheritedType": 7 + }, + { + "nid": 125975943, + "flags": 18, + "strtype": "OBJECT/Size", + "intarray": [ + 100, + 50 + ], + "InheritedType": 7 + }, + { + "nid": 1607358348, + "strtype": "OBJECT/Align", + "strval": "TOP_MID", + "InheritedType": 3 + }, + { + "nid": 765479077, + "flags": 1048576, + "strtype": "OBJECT/Flags", + "InheritedType": 1 + }, + { + "nid": -1388562560, + "strtype": "OBJECT/Hidden", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1046249536, + "strtype": "OBJECT/Clickable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -584224912, + "strtype": "OBJECT/Checkable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -172879404, + "strtype": "OBJECT/Press_lock", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 237997394, + "strtype": "OBJECT/Click_focusable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1001860694, + "strtype": "OBJECT/Adv_hittest", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -108755640, + "strtype": "OBJECT/Ignore_layout", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1977944801, + "strtype": "OBJECT/Floating", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1549396780, + "strtype": "PANEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 323129948, + "strtype": "OBJECT/Flex_in_new_track", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 924771643, + "strtype": "OBJECT/Event_bubble", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 609857522, + "strtype": "OBJECT/Gesture_bubble", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 995812907, + "strtype": "OBJECT/Snappable", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 926547690, + "strtype": "OBJECT/Scrollable", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1090012780, + "strtype": "OBJECT/Scroll_elastic", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 425422311, + "strtype": "OBJECT/Scroll_momentum", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": -1685852431, + "strtype": "OBJECT/Scroll_on_focus", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1778935738, + "strtype": "OBJECT/Scroll_chain", + "strval": "True", + "InheritedType": 2 + }, + { + "nid": 934328359, + "strtype": "PANEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -708964845, + "strtype": "OBJECT/Scroll_one", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 302254654, + "strtype": "OBJECT/Scrollbar_mode", + "strval": "AUTO", + "InheritedType": 3 + }, + { + "nid": -484953791, + "strtype": "OBJECT/Scroll_direction", + "strval": "ALL", + "InheritedType": 3 + }, + { + "nid": 806820214, + "flags": 1048576, + "strtype": "OBJECT/States", + "InheritedType": 1 + }, + { + "nid": -943677037, + "strtype": "OBJECT/Checked", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 988558104, + "strtype": "OBJECT/Disabled", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 812323821, + "strtype": "OBJECT/Focused", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -200914435, + "strtype": "OBJECT/Pressed", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 875242211, + "strtype": "OBJECT/User_1", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1189644299, + "strtype": "OBJECT/User_2", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1877276442, + "strtype": "OBJECT/User_3", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -964637946, + "strtype": "OBJECT/User_4", + "strval": "False", + "InheritedType": 2 + }, + { + "part": "lv.PART.MAIN", + "childs": [ + { + "nid": -1204029681, + "strtype": "_style/StyleState", + "strval": "DEFAULT", + "childs": [ + { + "nid": 1054687074, + "strtype": "_style/Padding", + "intarray": [ + 0, + 0, + 0, + 0 + ], + "InheritedType": 7 + } + ], + "InheritedType": 1 + } + ], + "nid": 1660966457, + "strtype": "PANEL/Style_main", + "strval": "lv.PART.MAIN, Rectangle, Pad, Text", + "InheritedType": 11 + }, + { + "part": "lv.PART.SCROLLBAR", + "childs": [], + "nid": 1791932306, + "strtype": "PANEL/Style_scrollbar", + "strval": "lv.PART.SCROLLBAR, Rectangle, Pad", + "InheritedType": 11 + } + ], + "saved_objtypeKey": "PANEL", + "tree_closed": true + }, + { + "guid": "GUID70769516-1061413S6932337", + "deepid": -702306247, + "children": [ + { + "guid": "GUID20338779-1059452S6912337", "deepid": -2073948964, "children": [ { - "guid": "GUID4478623-139086S779299", + "guid": "GUID61545889-1059451S6912337", "deepid": 699198064, "locked": false, "properties": [ { - "nid": -1888505009, + "nid": -139673871, "strtype": "OBJECT/Name", - "strval": "Label11", + "strval": "Label13", "InheritedType": 10 }, { - "nid": -1237064329, + "nid": 890902525, "strtype": "OBJECT/Layout", "InheritedType": 1 }, @@ -1372,18 +3375,18 @@ "CrossAlignment": 0, "TrackAlignment": 0, "LayoutType": 0, - "nid": 1147111819, + "nid": 1540784628, "strtype": "OBJECT/Layout_type", "strval": "No_layout", "InheritedType": 13 }, { - "nid": 864467684, + "nid": 452550572, "strtype": "OBJECT/Transform", "InheritedType": 1 }, { - "nid": 168274207, + "nid": -794775215, "flags": 17, "strtype": "OBJECT/Position", "intarray": [ @@ -1393,7 +3396,7 @@ "InheritedType": 7 }, { - "nid": 598472335, + "nid": -994024125, "flags": 51, "strtype": "OBJECT/Size", "intarray": [ @@ -1403,218 +3406,230 @@ "InheritedType": 7 }, { - "nid": -1701345511, + "nid": 2122434610, "strtype": "OBJECT/Align", "strval": "CENTER", "InheritedType": 3 }, { - "nid": -133168589, + "nid": -1454135721, "flags": 1048576, "strtype": "OBJECT/Flags", "InheritedType": 1 }, { - "nid": 2059286674, + "nid": 1256219631, "strtype": "OBJECT/Hidden", "strval": "False", "InheritedType": 2 }, { - "nid": 720049573, + "nid": 1735831416, "strtype": "OBJECT/Clickable", "strval": "False", "InheritedType": 2 }, { - "nid": 819324107, + "nid": -101940420, "strtype": "OBJECT/Checkable", "strval": "False", "InheritedType": 2 }, { - "nid": -373744, + "nid": 848224823, "strtype": "OBJECT/Press_lock", "strval": "True", "InheritedType": 2 }, { - "nid": 1107440447, + "nid": 436604675, "strtype": "OBJECT/Click_focusable", "strval": "True", "InheritedType": 2 }, { - "nid": -1018240859, + "nid": 1387472448, "strtype": "OBJECT/Adv_hittest", "strval": "False", "InheritedType": 2 }, { - "nid": 1455908073, + "nid": 1531575388, "strtype": "OBJECT/Ignore_layout", "strval": "False", "InheritedType": 2 }, { - "nid": -604912349, + "nid": -1883979304, "strtype": "OBJECT/Floating", "strval": "False", "InheritedType": 2 }, { - "nid": -953184762, + "nid": 150827428, + "strtype": "LABEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1962496958, "strtype": "OBJECT/Flex_in_new_track", "strval": "False", "InheritedType": 2 }, { - "nid": 142621398, + "nid": 805600624, "strtype": "OBJECT/Event_bubble", "strval": "False", "InheritedType": 2 }, { - "nid": 247215279, + "nid": -958448962, "strtype": "OBJECT/Gesture_bubble", "strval": "True", "InheritedType": 2 }, { - "nid": -720529281, + "nid": -1333275754, "strtype": "OBJECT/Snappable", "strval": "True", "InheritedType": 2 }, { - "nid": 546736853, + "nid": -408073985, "strtype": "OBJECT/Scrollable", "strval": "True", "InheritedType": 2 }, { - "nid": -341482726, + "nid": -1157634306, "strtype": "OBJECT/Scroll_elastic", "strval": "True", "InheritedType": 2 }, { - "nid": 1773818816, + "nid": -1702821839, "strtype": "OBJECT/Scroll_momentum", "strval": "True", "InheritedType": 2 }, { - "nid": 1816500137, + "nid": 1791158896, "strtype": "OBJECT/Scroll_on_focus", "strval": "False", "InheritedType": 2 }, { - "nid": -1247860246, + "nid": 751440509, "strtype": "OBJECT/Scroll_chain", "strval": "True", "InheritedType": 2 }, { - "nid": 1492449250, + "nid": 1840401202, + "strtype": "LABEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 843198382, "strtype": "OBJECT/Scroll_one", "strval": "False", "InheritedType": 2 }, { - "nid": -546990699, + "nid": -131932660, "strtype": "OBJECT/Scrollbar_mode", "strval": "AUTO", "InheritedType": 3 }, { - "nid": -1407816072, + "nid": -1646869041, "strtype": "OBJECT/Scroll_direction", "strval": "ALL", "InheritedType": 3 }, { - "nid": -1999232657, + "nid": 838051813, "flags": 1048576, "strtype": "OBJECT/States", "InheritedType": 1 }, { - "nid": 802947271, + "nid": -1158539049, "strtype": "OBJECT/Checked", "strval": "False", "InheritedType": 2 }, { - "nid": 920532091, + "nid": 896790837, "strtype": "OBJECT/Disabled", "strval": "False", "InheritedType": 2 }, { - "nid": 647357010, + "nid": 1160076015, "strtype": "OBJECT/Focused", "strval": "False", "InheritedType": 2 }, { - "nid": -1449908122, + "nid": 1302749242, "strtype": "OBJECT/Pressed", "strval": "False", "InheritedType": 2 }, { - "nid": -1337143129, + "nid": 1725387024, "strtype": "OBJECT/User_1", "strval": "False", "InheritedType": 2 }, { - "nid": -839232500, + "nid": 1345738800, "strtype": "OBJECT/User_2", "strval": "False", "InheritedType": 2 }, { - "nid": 1730597070, + "nid": 1687427427, "strtype": "OBJECT/User_3", "strval": "False", "InheritedType": 2 }, { - "nid": -1437703321, + "nid": 915692429, "strtype": "OBJECT/User_4", "strval": "False", "InheritedType": 2 }, { - "nid": -1101140345, + "nid": 1608468780, "strtype": "LABEL/Label", "InheritedType": 1 }, { - "nid": 455937775, + "nid": 1347655162, "strtype": "LABEL/Long_mode", "strval": "WRAP", "InheritedType": 3 }, { - "nid": 78390435, + "nid": -1496553339, "strtype": "LABEL/Text", - "strval": "LV_SYMBOL_VOLUME_MID", + "strval": "LV_SYMBOL_MINUS", "InheritedType": 10 }, { "part": "lv.PART.MAIN", "childs": [], - "nid": -181118045, + "nid": -718082336, "strtype": "LABEL/Style_main", "strval": "lv.PART.MAIN, Text, Rectangle, Pad", "InheritedType": 11 }, { - "nid": 746754206, + "nid": 1010699160, "strtype": "LABEL/Recolor", "strval": "False", "InheritedType": 2 @@ -1626,13 +3641,13 @@ "locked": false, "properties": [ { - "nid": -1732168164, + "nid": 845009242, "strtype": "OBJECT/Name", - "strval": "volume dec btn", + "strval": "brightness dec btn", "InheritedType": 10 }, { - "nid": 299640232, + "nid": 361482226, "strtype": "OBJECT/Layout", "InheritedType": 1 }, @@ -1644,28 +3659,28 @@ "CrossAlignment": 0, "TrackAlignment": 0, "LayoutType": 0, - "nid": 990983983, + "nid": -741880761, "strtype": "OBJECT/Layout_type", "strval": "No_layout", "InheritedType": 13 }, { - "nid": 177050740, + "nid": -1816331370, "strtype": "OBJECT/Transform", "InheritedType": 1 }, { - "nid": -988881668, + "nid": 1838471478, "flags": 17, "strtype": "OBJECT/Position", "intarray": [ - 35, + 0, 0 ], "InheritedType": 7 }, { - "nid": 1781665891, + "nid": -339357986, "flags": 17, "strtype": "OBJECT/Size", "intarray": [ @@ -1675,187 +3690,199 @@ "InheritedType": 7 }, { - "nid": -535309023, + "nid": -479259713, "strtype": "OBJECT/Align", "strval": "LEFT_MID", "InheritedType": 3 }, { - "nid": -742920457, + "nid": -2035762211, "flags": 1048576, "strtype": "OBJECT/Flags", "InheritedType": 1 }, { - "nid": -1055094551, + "nid": -371658873, "strtype": "OBJECT/Hidden", "strval": "False", "InheritedType": 2 }, { - "nid": 840524021, + "nid": -61227619, "strtype": "OBJECT/Clickable", "strval": "True", "InheritedType": 2 }, { - "nid": -2083847781, + "nid": 1536120968, "strtype": "OBJECT/Checkable", "strval": "False", "InheritedType": 2 }, { - "nid": 1983686893, + "nid": 1481793374, "strtype": "OBJECT/Press_lock", "strval": "True", "InheritedType": 2 }, { - "nid": 1948194400, + "nid": -1120991211, "strtype": "OBJECT/Click_focusable", "strval": "True", "InheritedType": 2 }, { - "nid": 315489126, + "nid": 885360654, "strtype": "OBJECT/Adv_hittest", "strval": "False", "InheritedType": 2 }, { - "nid": 167033587, + "nid": 1595429925, "strtype": "OBJECT/Ignore_layout", "strval": "False", "InheritedType": 2 }, { - "nid": 1472465498, + "nid": 222968561, "strtype": "OBJECT/Floating", "strval": "False", "InheritedType": 2 }, { - "nid": -1831169412, + "nid": 2032020272, + "strtype": "BUTTON/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 2097628033, "strtype": "OBJECT/Flex_in_new_track", "strval": "False", "InheritedType": 2 }, { - "nid": 419773364, + "nid": -1386355237, "strtype": "OBJECT/Event_bubble", "strval": "False", "InheritedType": 2 }, { - "nid": 417946543, + "nid": -302480828, "strtype": "OBJECT/Gesture_bubble", "strval": "True", "InheritedType": 2 }, { - "nid": -484555778, + "nid": -319770178, "strtype": "OBJECT/Snappable", "strval": "True", "InheritedType": 2 }, { - "nid": -359767932, + "nid": -1963498096, "strtype": "OBJECT/Scrollable", "strval": "False", "InheritedType": 2 }, { - "nid": -725561379, + "nid": 961648362, "strtype": "OBJECT/Scroll_elastic", "strval": "True", "InheritedType": 2 }, { - "nid": 171183498, + "nid": -1550863525, "strtype": "OBJECT/Scroll_momentum", "strval": "True", "InheritedType": 2 }, { - "nid": 1513226003, + "nid": 1182494355, "strtype": "OBJECT/Scroll_on_focus", "strval": "True", "InheritedType": 2 }, { - "nid": 1600654678, + "nid": -2112413763, "strtype": "OBJECT/Scroll_chain", "strval": "True", "InheritedType": 2 }, { - "nid": -1891620048, + "nid": -102457722, + "strtype": "BUTTON/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -147462929, "strtype": "OBJECT/Scroll_one", "strval": "False", "InheritedType": 2 }, { - "nid": -84124277, + "nid": 784813022, "strtype": "OBJECT/Scrollbar_mode", "strval": "AUTO", "InheritedType": 3 }, { - "nid": 2008488457, + "nid": -359137452, "strtype": "OBJECT/Scroll_direction", "strval": "ALL", "InheritedType": 3 }, { - "nid": 2092426059, + "nid": -1742156002, "flags": 1048576, "strtype": "OBJECT/States", "InheritedType": 1 }, { - "nid": 563433045, + "nid": -765671353, "strtype": "OBJECT/Checked", "strval": "False", "InheritedType": 2 }, { - "nid": 535821263, + "nid": 1918469924, "strtype": "OBJECT/Disabled", "strval": "False", "InheritedType": 2 }, { - "nid": -40954611, + "nid": -253519406, "strtype": "OBJECT/Focused", "strval": "False", "InheritedType": 2 }, { - "nid": -1799860880, + "nid": -654222739, "strtype": "OBJECT/Pressed", "strval": "False", "InheritedType": 2 }, { - "nid": 252096033, + "nid": -1311211138, "strtype": "OBJECT/User_1", "strval": "False", "InheritedType": 2 }, { - "nid": 717101233, + "nid": -590500422, "strtype": "OBJECT/User_2", "strval": "False", "InheritedType": 2 }, { - "nid": 1508839347, + "nid": -1152402529, "strtype": "OBJECT/User_3", "strval": "False", "InheritedType": 2 }, { - "nid": 299798225, + "nid": -1552353560, "strtype": "OBJECT/User_4", "strval": "False", "InheritedType": 2 @@ -1863,7 +3890,7 @@ { "part": "lv.PART.MAIN", "childs": [], - "nid": 788256277, + "nid": 1787178845, "strtype": "BUTTON/Style_main", "strval": "lv.PART.MAIN, Rectangle, Pad, Text ", "InheritedType": 11 @@ -1872,18 +3899,18 @@ "saved_objtypeKey": "BUTTON" }, { - "guid": "GUID81355858-134040S208299", + "guid": "GUID1638195-1060318S6922337", "deepid": 375875006, "locked": false, "properties": [ { - "nid": -1645810627, + "nid": -1865407396, "strtype": "OBJECT/Name", - "strval": "Bar2", + "strval": "brightness bar", "InheritedType": 10 }, { - "nid": -1556747599, + "nid": -568630627, "strtype": "OBJECT/Layout", "InheritedType": 1 }, @@ -1895,187 +3922,199 @@ "CrossAlignment": 0, "TrackAlignment": 0, "LayoutType": 0, - "nid": -1535153213, + "nid": -760944918, "strtype": "OBJECT/Layout_type", "strval": "No_layout", "InheritedType": 13 }, { - "nid": 901188133, + "nid": 1845703059, "strtype": "OBJECT/Transform", "InheritedType": 1 }, { - "nid": -67512305, + "nid": 809804469, "flags": 17, "strtype": "OBJECT/Position", "intarray": [ - -50, + 0, 0 ], "InheritedType": 7 }, { - "nid": -884264170, + "nid": -1128747598, "flags": 17, "strtype": "OBJECT/Size", "intarray": [ - 150, + 185, 10 ], "InheritedType": 7 }, { - "nid": 212839881, + "nid": 1708505474, "strtype": "OBJECT/Align", - "strval": "RIGHT_MID", + "strval": "CENTER", "InheritedType": 3 }, { - "nid": 183748637, + "nid": 776608599, "flags": 1048576, "strtype": "OBJECT/Flags", "InheritedType": 1 }, { - "nid": 1023224544, + "nid": -625129498, "strtype": "OBJECT/Hidden", "strval": "False", "InheritedType": 2 }, { - "nid": 810944928, + "nid": 1358108188, "strtype": "OBJECT/Clickable", "strval": "False", "InheritedType": 2 }, { - "nid": 1541007046, + "nid": 1638994237, "strtype": "OBJECT/Checkable", "strval": "False", "InheritedType": 2 }, { - "nid": -926367976, + "nid": 525644866, "strtype": "OBJECT/Press_lock", "strval": "True", "InheritedType": 2 }, { - "nid": 281384218, + "nid": 1424309881, "strtype": "OBJECT/Click_focusable", "strval": "True", "InheritedType": 2 }, { - "nid": 513927528, + "nid": 769057102, "strtype": "OBJECT/Adv_hittest", "strval": "False", "InheritedType": 2 }, { - "nid": -1621247174, + "nid": -1998585890, "strtype": "OBJECT/Ignore_layout", "strval": "False", "InheritedType": 2 }, { - "nid": -2026609854, + "nid": -1295862593, "strtype": "OBJECT/Floating", "strval": "False", "InheritedType": 2 }, { - "nid": -1036881274, + "nid": -173960452, + "strtype": "BAR/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1006433044, "strtype": "OBJECT/Flex_in_new_track", "strval": "False", "InheritedType": 2 }, { - "nid": -2028019477, + "nid": -395329073, "strtype": "OBJECT/Event_bubble", "strval": "False", "InheritedType": 2 }, { - "nid": -761093918, + "nid": 1929048335, "strtype": "OBJECT/Gesture_bubble", "strval": "True", "InheritedType": 2 }, { - "nid": -1032918319, + "nid": 1778050433, "strtype": "OBJECT/Snappable", "strval": "True", "InheritedType": 2 }, { - "nid": -175236971, + "nid": -878651690, "strtype": "OBJECT/Scroll_on_focus", "strval": "False", "InheritedType": 2 }, { - "nid": 594914091, + "nid": 524400999, + "strtype": "BAR/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 2031310141, "flags": 1048576, "strtype": "OBJECT/States", "InheritedType": 1 }, { - "nid": 374069549, + "nid": -1044090153, "strtype": "OBJECT/Checked", "strval": "False", "InheritedType": 2 }, { - "nid": -201118220, + "nid": 408361355, "strtype": "OBJECT/Disabled", "strval": "False", "InheritedType": 2 }, { - "nid": 948231493, + "nid": 573018315, "strtype": "OBJECT/Focused", "strval": "False", "InheritedType": 2 }, { - "nid": -120293555, + "nid": -196893152, "strtype": "OBJECT/Pressed", "strval": "False", "InheritedType": 2 }, { - "nid": -1457932850, + "nid": 2117999585, "strtype": "OBJECT/User_1", "strval": "False", "InheritedType": 2 }, { - "nid": 45449272, + "nid": -1449946872, "strtype": "OBJECT/User_2", "strval": "False", "InheritedType": 2 }, { - "nid": 32456423, + "nid": 1201604865, "strtype": "OBJECT/User_3", "strval": "False", "InheritedType": 2 }, { - "nid": -2049846118, + "nid": -1278291839, "strtype": "OBJECT/User_4", "strval": "False", "InheritedType": 2 }, { - "nid": -1850611047, + "nid": 765738392, "strtype": "BAR/Bar", "InheritedType": 1 }, { - "nid": 1189833652, + "nid": 340140886, "strtype": "BAR/Range", "intarray": [ 0, @@ -2084,7 +4123,7 @@ "InheritedType": 7 }, { - "nid": -1728056213, + "nid": 1565805075, "strtype": "BAR/Value", "integer": 25, "InheritedType": 6 @@ -2092,7 +4131,7 @@ { "part": "lv.PART.MAIN", "childs": [], - "nid": 2103774511, + "nid": -1819009037, "strtype": "BAR/Style_main", "strval": "lv.PART.MAIN, Rectangle, Pad, Anim1", "InheritedType": 11 @@ -2100,42 +4139,43 @@ { "part": "lv.PART.INDICATOR", "childs": [], - "nid": -441354831, + "nid": 2019989432, "strtype": "BAR/Style_indicator", "strval": "lv.PART.INDICATOR, Rectangle", "InheritedType": 11 }, { - "nid": 1049614181, + "nid": -1953051402, "strtype": "BAR/Mode", "strval": "NORMAL", "InheritedType": 3 }, { - "nid": 2022888677, + "nid": -1430096910, "strtype": "BAR/Value_start", "InheritedType": 6 } ], - "saved_objtypeKey": "BAR" + "saved_objtypeKey": "BAR", + "tree_closed": true }, { - "guid": "GUID65628620-135099S10299", + "guid": "GUID58016409-1061412S6932337", "deepid": 1225835062, "children": [ { - "guid": "GUID58270544-139500S202299", + "guid": "GUID43685296-1061411S6932337", "deepid": -1561809669, "locked": false, "properties": [ { - "nid": 927158065, + "nid": 963832569, "strtype": "OBJECT/Name", - "strval": "Label8", + "strval": "Label14", "InheritedType": 10 }, { - "nid": 459836000, + "nid": -2043481198, "strtype": "OBJECT/Layout", "InheritedType": 1 }, @@ -2147,18 +4187,18 @@ "CrossAlignment": 0, "TrackAlignment": 0, "LayoutType": 0, - "nid": -1354252479, + "nid": -1299701026, "strtype": "OBJECT/Layout_type", "strval": "No_layout", "InheritedType": 13 }, { - "nid": -1943126612, + "nid": -681090518, "strtype": "OBJECT/Transform", "InheritedType": 1 }, { - "nid": 1087061818, + "nid": 1716720691, "flags": 17, "strtype": "OBJECT/Position", "intarray": [ @@ -2168,7 +4208,7 @@ "InheritedType": 7 }, { - "nid": 900975819, + "nid": -2109255302, "flags": 51, "strtype": "OBJECT/Size", "intarray": [ @@ -2178,218 +4218,230 @@ "InheritedType": 7 }, { - "nid": 36935426, + "nid": 1019431744, "strtype": "OBJECT/Align", "strval": "CENTER", "InheritedType": 3 }, { - "nid": 1582989857, + "nid": -1703332747, "flags": 1048576, "strtype": "OBJECT/Flags", "InheritedType": 1 }, { - "nid": 1922117356, + "nid": -1870218013, "strtype": "OBJECT/Hidden", "strval": "False", "InheritedType": 2 }, { - "nid": -325899534, + "nid": -942430497, "strtype": "OBJECT/Clickable", "strval": "False", "InheritedType": 2 }, { - "nid": -120163198, + "nid": 1123599151, "strtype": "OBJECT/Checkable", "strval": "False", "InheritedType": 2 }, { - "nid": -1338536994, + "nid": -365181494, "strtype": "OBJECT/Press_lock", "strval": "True", "InheritedType": 2 }, { - "nid": -281496500, + "nid": 1675303931, "strtype": "OBJECT/Click_focusable", "strval": "True", "InheritedType": 2 }, { - "nid": 1864519423, + "nid": -1018599852, "strtype": "OBJECT/Adv_hittest", "strval": "False", "InheritedType": 2 }, { - "nid": -897418722, + "nid": 1312120984, "strtype": "OBJECT/Ignore_layout", "strval": "False", "InheritedType": 2 }, { - "nid": 1255439781, + "nid": -430711636, "strtype": "OBJECT/Floating", "strval": "False", "InheritedType": 2 }, { - "nid": 1191853263, + "nid": -534575520, + "strtype": "LABEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 1736453231, "strtype": "OBJECT/Flex_in_new_track", "strval": "False", "InheritedType": 2 }, { - "nid": -1824478595, + "nid": 920064246, "strtype": "OBJECT/Event_bubble", "strval": "False", "InheritedType": 2 }, { - "nid": -2142612522, + "nid": -846452431, "strtype": "OBJECT/Gesture_bubble", "strval": "True", "InheritedType": 2 }, { - "nid": -1269266212, + "nid": -1565289084, "strtype": "OBJECT/Snappable", "strval": "True", "InheritedType": 2 }, { - "nid": -1293258544, + "nid": 21558434, "strtype": "OBJECT/Scrollable", "strval": "True", "InheritedType": 2 }, { - "nid": -1426528410, + "nid": -1033547540, "strtype": "OBJECT/Scroll_elastic", "strval": "True", "InheritedType": 2 }, { - "nid": -2115861097, + "nid": -146752547, "strtype": "OBJECT/Scroll_momentum", "strval": "True", "InheritedType": 2 }, { - "nid": -1643323921, + "nid": 621926794, "strtype": "OBJECT/Scroll_on_focus", "strval": "False", "InheritedType": 2 }, { - "nid": 2100898914, + "nid": -344923704, "strtype": "OBJECT/Scroll_chain", "strval": "True", "InheritedType": 2 }, { - "nid": 1635850945, + "nid": -497406225, + "strtype": "LABEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -386721210, "strtype": "OBJECT/Scroll_one", "strval": "False", "InheritedType": 2 }, { - "nid": -1857110622, + "nid": -771724928, "strtype": "OBJECT/Scrollbar_mode", "strval": "AUTO", "InheritedType": 3 }, { - "nid": 809663134, + "nid": 870508917, "strtype": "OBJECT/Scroll_direction", "strval": "ALL", "InheritedType": 3 }, { - "nid": 1533087491, + "nid": -12364135, "flags": 1048576, "strtype": "OBJECT/States", "InheritedType": 1 }, { - "nid": -948898370, + "nid": -6347718, "strtype": "OBJECT/Checked", "strval": "False", "InheritedType": 2 }, { - "nid": 691726443, + "nid": -195553098, "strtype": "OBJECT/Disabled", "strval": "False", "InheritedType": 2 }, { - "nid": -358118556, + "nid": 1951681394, "strtype": "OBJECT/Focused", "strval": "False", "InheritedType": 2 }, { - "nid": 374966570, + "nid": -1552904150, "strtype": "OBJECT/Pressed", "strval": "False", "InheritedType": 2 }, { - "nid": -1485314161, + "nid": -121657465, "strtype": "OBJECT/User_1", "strval": "False", "InheritedType": 2 }, { - "nid": 58474545, + "nid": 522989082, "strtype": "OBJECT/User_2", "strval": "False", "InheritedType": 2 }, { - "nid": -1724542843, + "nid": 181813756, "strtype": "OBJECT/User_3", "strval": "False", "InheritedType": 2 }, { - "nid": -74982269, + "nid": -519842837, "strtype": "OBJECT/User_4", "strval": "False", "InheritedType": 2 }, { - "nid": -2075058219, + "nid": 350742223, "strtype": "LABEL/Label", "InheritedType": 1 }, { - "nid": 666171643, + "nid": -481872143, "strtype": "LABEL/Long_mode", "strval": "WRAP", "InheritedType": 3 }, { - "nid": -151981974, + "nid": -945513719, "strtype": "LABEL/Text", - "strval": "LV_SYMBOL_VOLUME_MAX", + "strval": "LV_SYMBOL_PLUS", "InheritedType": 10 }, { "part": "lv.PART.MAIN", "childs": [], - "nid": 1903773183, + "nid": -1930688536, "strtype": "LABEL/Style_main", "strval": "lv.PART.MAIN, Text, Rectangle, Pad", "InheritedType": 11 }, { - "nid": 238882901, + "nid": 2013309176, "strtype": "LABEL/Recolor", "strval": "False", "InheritedType": 2 @@ -2401,13 +4453,13 @@ "locked": false, "properties": [ { - "nid": -980265541, + "nid": 190794465, "strtype": "OBJECT/Name", - "strval": "volume inc btn", + "strval": "brightness inc btn", "InheritedType": 10 }, { - "nid": 126728937, + "nid": 1759033743, "strtype": "OBJECT/Layout", "InheritedType": 1 }, @@ -2419,18 +4471,18 @@ "CrossAlignment": 0, "TrackAlignment": 0, "LayoutType": 0, - "nid": -1997275036, + "nid": 1167241603, "strtype": "OBJECT/Layout_type", "strval": "No_layout", "InheritedType": 13 }, { - "nid": -1324795251, + "nid": -2046408657, "strtype": "OBJECT/Transform", "InheritedType": 1 }, { - "nid": -635430922, + "nid": -1870821862, "flags": 17, "strtype": "OBJECT/Position", "intarray": [ @@ -2440,7 +4492,7 @@ "InheritedType": 7 }, { - "nid": -1454446224, + "nid": 423781276, "flags": 17, "strtype": "OBJECT/Size", "intarray": [ @@ -2450,187 +4502,199 @@ "InheritedType": 7 }, { - "nid": 149591139, + "nid": 1922942857, "strtype": "OBJECT/Align", "strval": "RIGHT_MID", "InheritedType": 3 }, { - "nid": -471086467, + "nid": -1458122291, "flags": 1048576, "strtype": "OBJECT/Flags", "InheritedType": 1 }, { - "nid": 1601615942, + "nid": -55223284, "strtype": "OBJECT/Hidden", "strval": "False", "InheritedType": 2 }, { - "nid": 557100117, + "nid": 1421016266, "strtype": "OBJECT/Clickable", "strval": "True", "InheritedType": 2 }, { - "nid": -958738535, + "nid": 1558813694, "strtype": "OBJECT/Checkable", "strval": "False", "InheritedType": 2 }, { - "nid": 1965407799, + "nid": -1049104029, "strtype": "OBJECT/Press_lock", "strval": "True", "InheritedType": 2 }, { - "nid": -1878424152, + "nid": -179932267, "strtype": "OBJECT/Click_focusable", "strval": "True", "InheritedType": 2 }, { - "nid": 253228330, + "nid": 1047286691, "strtype": "OBJECT/Adv_hittest", "strval": "False", "InheritedType": 2 }, { - "nid": -1023533314, + "nid": -1537400190, "strtype": "OBJECT/Ignore_layout", "strval": "False", "InheritedType": 2 }, { - "nid": 1264097759, + "nid": 2124189924, "strtype": "OBJECT/Floating", "strval": "False", "InheritedType": 2 }, { - "nid": 942154535, + "nid": 1578081196, + "strtype": "BUTTON/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 39793947, "strtype": "OBJECT/Flex_in_new_track", "strval": "False", "InheritedType": 2 }, { - "nid": -953324922, + "nid": 784569369, "strtype": "OBJECT/Event_bubble", "strval": "False", "InheritedType": 2 }, { - "nid": -1766308302, + "nid": 1750252918, "strtype": "OBJECT/Gesture_bubble", "strval": "True", "InheritedType": 2 }, { - "nid": -1421426157, + "nid": 1398482981, "strtype": "OBJECT/Snappable", "strval": "True", "InheritedType": 2 }, { - "nid": -565026292, + "nid": 854380756, "strtype": "OBJECT/Scrollable", "strval": "False", "InheritedType": 2 }, { - "nid": -13688090, + "nid": 1994779646, "strtype": "OBJECT/Scroll_elastic", "strval": "True", "InheritedType": 2 }, { - "nid": -647575169, + "nid": -1322947009, "strtype": "OBJECT/Scroll_momentum", "strval": "True", "InheritedType": 2 }, { - "nid": 1829117657, + "nid": 1237073357, "strtype": "OBJECT/Scroll_on_focus", "strval": "True", "InheritedType": 2 }, { - "nid": -1996828995, + "nid": 501760634, "strtype": "OBJECT/Scroll_chain", "strval": "True", "InheritedType": 2 }, { - "nid": -1656540353, + "nid": 998669973, + "strtype": "BUTTON/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1298853406, "strtype": "OBJECT/Scroll_one", "strval": "False", "InheritedType": 2 }, { - "nid": 1008545670, + "nid": -504427610, "strtype": "OBJECT/Scrollbar_mode", "strval": "AUTO", "InheritedType": 3 }, { - "nid": 492000527, + "nid": -1765253489, "strtype": "OBJECT/Scroll_direction", "strval": "ALL", "InheritedType": 3 }, { - "nid": 1430108121, + "nid": 1967039308, "flags": 1048576, "strtype": "OBJECT/States", "InheritedType": 1 }, { - "nid": -1601862148, + "nid": 1383220779, "strtype": "OBJECT/Checked", "strval": "False", "InheritedType": 2 }, { - "nid": 872999560, + "nid": -1205589891, "strtype": "OBJECT/Disabled", "strval": "False", "InheritedType": 2 }, { - "nid": -978794353, + "nid": -1069185760, "strtype": "OBJECT/Focused", "strval": "False", "InheritedType": 2 }, { - "nid": -1727527879, + "nid": 953190101, "strtype": "OBJECT/Pressed", "strval": "False", "InheritedType": 2 }, { - "nid": -405802686, + "nid": 427132326, "strtype": "OBJECT/User_1", "strval": "False", "InheritedType": 2 }, { - "nid": -578212366, + "nid": 543837035, "strtype": "OBJECT/User_2", "strval": "False", "InheritedType": 2 }, { - "nid": 761285539, + "nid": -1089010865, "strtype": "OBJECT/User_3", "strval": "False", "InheritedType": 2 }, { - "nid": -2050004668, + "nid": 657273501, "strtype": "OBJECT/User_4", "strval": "False", "InheritedType": 2 @@ -2638,7 +4702,7 @@ { "part": "lv.PART.MAIN", "childs": [], - "nid": 1729975837, + "nid": 613796221, "strtype": "BUTTON/Style_main", "strval": "lv.PART.MAIN, Rectangle, Pad, Text ", "InheritedType": 11 @@ -2650,13 +4714,13 @@ "locked": false, "properties": [ { - "nid": -1935501909, + "nid": 1324516997, "strtype": "OBJECT/Name", - "strval": "Panel3", + "strval": "Panel5", "InheritedType": 10 }, { - "nid": -555685535, + "nid": -2080826063, "strtype": "OBJECT/Layout", "InheritedType": 1 }, @@ -2668,28 +4732,28 @@ "CrossAlignment": 0, "TrackAlignment": 0, "LayoutType": 0, - "nid": -1474629275, + "nid": 1334850927, "strtype": "OBJECT/Layout_type", "strval": "No_layout", "InheritedType": 13 }, { - "nid": 1010952861, + "nid": -1880316202, "strtype": "OBJECT/Transform", "InheritedType": 1 }, { - "nid": -164437180, + "nid": 1655692557, "flags": 17, "strtype": "OBJECT/Position", "intarray": [ 0, - 80 + 100 ], "InheritedType": 7 }, { - "nid": 125975943, + "nid": -1944163623, "flags": 18, "strtype": "OBJECT/Size", "intarray": [ @@ -2699,187 +4763,199 @@ "InheritedType": 7 }, { - "nid": 1607358348, + "nid": -2073049503, "strtype": "OBJECT/Align", "strval": "TOP_MID", "InheritedType": 3 }, { - "nid": 765479077, + "nid": -270029061, "flags": 1048576, "strtype": "OBJECT/Flags", "InheritedType": 1 }, { - "nid": -1388562560, + "nid": 1692859966, "strtype": "OBJECT/Hidden", "strval": "False", "InheritedType": 2 }, { - "nid": 1046249536, + "nid": -218045356, "strtype": "OBJECT/Clickable", "strval": "True", "InheritedType": 2 }, { - "nid": -584224912, + "nid": -1764952653, "strtype": "OBJECT/Checkable", "strval": "False", "InheritedType": 2 }, { - "nid": -172879404, + "nid": 202509917, "strtype": "OBJECT/Press_lock", "strval": "True", "InheritedType": 2 }, { - "nid": 237997394, + "nid": -1934981385, "strtype": "OBJECT/Click_focusable", "strval": "True", "InheritedType": 2 }, { - "nid": -1001860694, + "nid": 1054716669, "strtype": "OBJECT/Adv_hittest", "strval": "False", "InheritedType": 2 }, { - "nid": -108755640, + "nid": 423340592, "strtype": "OBJECT/Ignore_layout", "strval": "False", "InheritedType": 2 }, { - "nid": 1977944801, + "nid": 1355187638, "strtype": "OBJECT/Floating", "strval": "False", "InheritedType": 2 }, { - "nid": 323129948, + "nid": -187503409, + "strtype": "PANEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": -1059484329, "strtype": "OBJECT/Flex_in_new_track", "strval": "False", "InheritedType": 2 }, { - "nid": 924771643, + "nid": -680587437, "strtype": "OBJECT/Event_bubble", "strval": "False", "InheritedType": 2 }, { - "nid": 609857522, + "nid": 213533635, "strtype": "OBJECT/Gesture_bubble", "strval": "True", "InheritedType": 2 }, { - "nid": 995812907, + "nid": 2000548041, "strtype": "OBJECT/Snappable", "strval": "True", "InheritedType": 2 }, { - "nid": 926547690, + "nid": -305158406, "strtype": "OBJECT/Scrollable", "strval": "False", "InheritedType": 2 }, { - "nid": -1090012780, + "nid": -1036384445, "strtype": "OBJECT/Scroll_elastic", "strval": "True", "InheritedType": 2 }, { - "nid": 425422311, + "nid": 830322543, "strtype": "OBJECT/Scroll_momentum", "strval": "True", "InheritedType": 2 }, { - "nid": -1685852431, + "nid": -2098872971, "strtype": "OBJECT/Scroll_on_focus", "strval": "False", "InheritedType": 2 }, { - "nid": 1778935738, + "nid": 1589367876, "strtype": "OBJECT/Scroll_chain", "strval": "True", "InheritedType": 2 }, { - "nid": -708964845, + "nid": 1638435085, + "strtype": "PANEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, + { + "nid": 137636138, "strtype": "OBJECT/Scroll_one", "strval": "False", "InheritedType": 2 }, { - "nid": 302254654, + "nid": -705707327, "strtype": "OBJECT/Scrollbar_mode", "strval": "AUTO", "InheritedType": 3 }, { - "nid": -484953791, + "nid": -1152890844, "strtype": "OBJECT/Scroll_direction", "strval": "ALL", "InheritedType": 3 }, { - "nid": 806820214, + "nid": 1565190365, "flags": 1048576, "strtype": "OBJECT/States", "InheritedType": 1 }, { - "nid": -943677037, + "nid": 1243007347, "strtype": "OBJECT/Checked", "strval": "False", "InheritedType": 2 }, { - "nid": 988558104, + "nid": 1556270998, "strtype": "OBJECT/Disabled", "strval": "False", "InheritedType": 2 }, { - "nid": 812323821, + "nid": 633351788, "strtype": "OBJECT/Focused", "strval": "False", "InheritedType": 2 }, { - "nid": -200914435, + "nid": -1570968744, "strtype": "OBJECT/Pressed", "strval": "False", "InheritedType": 2 }, { - "nid": 875242211, + "nid": 40974966, "strtype": "OBJECT/User_1", "strval": "False", "InheritedType": 2 }, { - "nid": 1189644299, + "nid": 782866458, "strtype": "OBJECT/User_2", "strval": "False", "InheritedType": 2 }, { - "nid": 1877276442, + "nid": -226585972, "strtype": "OBJECT/User_3", "strval": "False", "InheritedType": 2 }, { - "nid": -964637946, + "nid": 1682450109, "strtype": "OBJECT/User_4", "strval": "False", "InheritedType": 2 @@ -2888,12 +4964,12 @@ "part": "lv.PART.MAIN", "childs": [ { - "nid": -1204029681, + "nid": -34283456, "strtype": "_style/StyleState", "strval": "DEFAULT", "childs": [ { - "nid": 1054687074, + "nid": 1408514834, "strtype": "_style/Padding", "intarray": [ 0, @@ -2907,7 +4983,7 @@ "InheritedType": 1 } ], - "nid": 1660966457, + "nid": 1331280920, "strtype": "PANEL/Style_main", "strval": "lv.PART.MAIN, Rectangle, Pad, Text", "InheritedType": 11 @@ -2915,13 +4991,14 @@ { "part": "lv.PART.SCROLLBAR", "childs": [], - "nid": 1791932306, + "nid": -272994611, "strtype": "PANEL/Style_scrollbar", "strval": "lv.PART.SCROLLBAR, Rectangle, Pad", "InheritedType": 11 } ], - "saved_objtypeKey": "PANEL" + "saved_objtypeKey": "PANEL", + "tree_closed": true }, { "guid": "GUID14849953-130034S306299", @@ -3045,6 +5122,12 @@ "strval": "False", "InheritedType": 2 }, + { + "nid": -1250969272, + "strtype": "LABEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, { "nid": -1106816858, "strtype": "OBJECT/Flex_in_new_track", @@ -3099,6 +5182,12 @@ "strval": "True", "InheritedType": 2 }, + { + "nid": -1246076774, + "strtype": "LABEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, { "nid": -239928474, "strtype": "OBJECT/Scroll_one", @@ -3318,6 +5407,12 @@ "strval": "False", "InheritedType": 2 }, + { + "nid": 755695584, + "strtype": "BUTTON/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, { "nid": -1033372217, "strtype": "OBJECT/Flex_in_new_track", @@ -3372,6 +5467,12 @@ "strval": "True", "InheritedType": 2 }, + { + "nid": 1415921720, + "strtype": "BUTTON/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, { "nid": 1448831858, "strtype": "OBJECT/Scroll_one", @@ -3570,6 +5671,12 @@ "strval": "False", "InheritedType": 2 }, + { + "nid": -1000867845, + "strtype": "LABEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, { "nid": -369385396, "strtype": "OBJECT/Flex_in_new_track", @@ -3624,6 +5731,12 @@ "strval": "True", "InheritedType": 2 }, + { + "nid": 1907350250, + "strtype": "LABEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, { "nid": -963126060, "strtype": "OBJECT/Scroll_one", @@ -3848,6 +5961,12 @@ "strval": "False", "InheritedType": 2 }, + { + "nid": 800148082, + "strtype": "LABEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, { "nid": -2115254503, "strtype": "OBJECT/Flex_in_new_track", @@ -3902,6 +6021,12 @@ "strval": "True", "InheritedType": 2 }, + { + "nid": 1321259546, + "strtype": "LABEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, { "nid": 909119536, "strtype": "OBJECT/Scroll_one", @@ -4121,6 +6246,12 @@ "strval": "False", "InheritedType": 2 }, + { + "nid": -461007106, + "strtype": "BUTTON/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, { "nid": 865627150, "strtype": "OBJECT/Flex_in_new_track", @@ -4175,6 +6306,12 @@ "strval": "True", "InheritedType": 2 }, + { + "nid": -429878921, + "strtype": "BUTTON/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, { "nid": 1256068173, "strtype": "OBJECT/Scroll_one", @@ -4297,7 +6434,7 @@ "strtype": "OBJECT/Position", "intarray": [ 0, - 130 + 150 ], "InheritedType": 7 }, @@ -4371,6 +6508,12 @@ "strval": "False", "InheritedType": 2 }, + { + "nid": -1397273011, + "strtype": "PANEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, { "nid": 664219397, "strtype": "OBJECT/Flex_in_new_track", @@ -4425,6 +6568,12 @@ "strval": "True", "InheritedType": 2 }, + { + "nid": -2010989789, + "strtype": "PANEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, { "nid": -704365564, "strtype": "OBJECT/Scroll_one", @@ -4534,7 +6683,8 @@ "InheritedType": 11 } ], - "saved_objtypeKey": "PANEL" + "saved_objtypeKey": "PANEL", + "tree_closed": true }, { "guid": "GUID27307571-128456S842299", @@ -4658,6 +6808,12 @@ "strval": "False", "InheritedType": 2 }, + { + "nid": -1888419835, + "strtype": "LABEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, { "nid": 1215646869, "strtype": "OBJECT/Flex_in_new_track", @@ -4712,6 +6868,12 @@ "strval": "True", "InheritedType": 2 }, + { + "nid": -1486458358, + "strtype": "LABEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, { "nid": 1944532903, "strtype": "OBJECT/Scroll_one", @@ -4930,6 +7092,12 @@ "strval": "False", "InheritedType": 2 }, + { + "nid": -497116927, + "strtype": "BUTTON/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, { "nid": -260908847, "strtype": "OBJECT/Flex_in_new_track", @@ -4984,6 +7152,12 @@ "strval": "True", "InheritedType": 2 }, + { + "nid": 1151627022, + "strtype": "BUTTON/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, { "nid": -1177868887, "strtype": "OBJECT/Scroll_one", @@ -5181,6 +7355,12 @@ "strval": "False", "InheritedType": 2 }, + { + "nid": 69702498, + "strtype": "IMAGE/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, { "nid": -947386439, "strtype": "OBJECT/Flex_in_new_track", @@ -5235,6 +7415,12 @@ "strval": "True", "InheritedType": 2 }, + { + "nid": 1690034049, + "strtype": "IMAGE/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, { "nid": 385431926, "strtype": "OBJECT/Scroll_one", @@ -5387,7 +7573,7 @@ "strtype": "OBJECT/Position", "intarray": [ 0, - 180 + 200 ], "InheritedType": 7 }, @@ -5461,6 +7647,12 @@ "strval": "False", "InheritedType": 2 }, + { + "nid": 178056196, + "strtype": "PANEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, { "nid": -1005344478, "strtype": "OBJECT/Flex_in_new_track", @@ -5515,6 +7707,12 @@ "strval": "True", "InheritedType": 2 }, + { + "nid": 793538999, + "strtype": "PANEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, { "nid": -1709286551, "strtype": "OBJECT/Scroll_one", @@ -5624,7 +7822,8 @@ "InheritedType": 11 } ], - "saved_objtypeKey": "PANEL" + "saved_objtypeKey": "PANEL", + "tree_closed": true }, { "guid": "GUID34105632-129245S529299", @@ -5748,6 +7947,12 @@ "strval": "False", "InheritedType": 2 }, + { + "nid": 1001914046, + "strtype": "LABEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, { "nid": 263689383, "strtype": "OBJECT/Flex_in_new_track", @@ -5802,6 +8007,12 @@ "strval": "True", "InheritedType": 2 }, + { + "nid": 91380467, + "strtype": "LABEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, { "nid": 400777389, "strtype": "OBJECT/Scroll_one", @@ -6020,6 +8231,12 @@ "strval": "False", "InheritedType": 2 }, + { + "nid": -2080691328, + "strtype": "BUTTON/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, { "nid": 488992088, "strtype": "OBJECT/Flex_in_new_track", @@ -6074,6 +8291,12 @@ "strval": "True", "InheritedType": 2 }, + { + "nid": 1472312893, + "strtype": "BUTTON/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, { "nid": 1363305812, "strtype": "OBJECT/Scroll_one", @@ -6271,6 +8494,12 @@ "strval": "False", "InheritedType": 2 }, + { + "nid": -894160896, + "strtype": "IMAGE/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, { "nid": 1298870175, "strtype": "OBJECT/Flex_in_new_track", @@ -6325,6 +8554,12 @@ "strval": "True", "InheritedType": 2 }, + { + "nid": -797152915, + "strtype": "IMAGE/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, { "nid": -2065037924, "strtype": "OBJECT/Scroll_one", @@ -6477,7 +8712,7 @@ "strtype": "OBJECT/Position", "intarray": [ 0, - 280 + 300 ], "InheritedType": 7 }, @@ -6551,6 +8786,12 @@ "strval": "False", "InheritedType": 2 }, + { + "nid": 1196179481, + "strtype": "PANEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, { "nid": -1787790616, "strtype": "OBJECT/Flex_in_new_track", @@ -6605,6 +8846,12 @@ "strval": "True", "InheritedType": 2 }, + { + "nid": 686973858, + "strtype": "PANEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, { "nid": 1476336814, "strtype": "OBJECT/Scroll_one", @@ -6714,7 +8961,8 @@ "InheritedType": 11 } ], - "saved_objtypeKey": "PANEL" + "saved_objtypeKey": "PANEL", + "tree_closed": true }, { "guid": "GUID53639927-135919S184299", @@ -6834,6 +9082,12 @@ "strval": "False", "InheritedType": 2 }, + { + "nid": 1875937765, + "strtype": "LABEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, { "nid": 1529096836, "strtype": "OBJECT/Flex_in_new_track", @@ -6888,6 +9142,12 @@ "strval": "True", "InheritedType": 2 }, + { + "nid": -2108423919, + "strtype": "LABEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, { "nid": 972589137, "strtype": "OBJECT/Scroll_one", @@ -7109,6 +9369,12 @@ "strval": "False", "InheritedType": 2 }, + { + "nid": -1025870531, + "strtype": "DROPDOWN/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, { "nid": 1205717321, "strtype": "OBJECT/Flex_in_new_track", @@ -7163,6 +9429,12 @@ "strval": "True", "InheritedType": 2 }, + { + "nid": 678828790, + "strtype": "DROPDOWN/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, { "nid": 571218055, "strtype": "OBJECT/Scroll_one", @@ -7345,7 +9617,7 @@ "strtype": "OBJECT/Position", "intarray": [ 0, - 380 + 400 ], "InheritedType": 7 }, @@ -7419,6 +9691,12 @@ "strval": "False", "InheritedType": 2 }, + { + "nid": 567264916, + "strtype": "PANEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, { "nid": -890719697, "strtype": "OBJECT/Flex_in_new_track", @@ -7473,6 +9751,12 @@ "strval": "True", "InheritedType": 2 }, + { + "nid": -284714253, + "strtype": "PANEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, { "nid": -752171892, "strtype": "OBJECT/Scroll_one", @@ -7562,7 +9846,8 @@ "InheritedType": 11 } ], - "saved_objtypeKey": "PANEL" + "saved_objtypeKey": "PANEL", + "tree_closed": true }, { "guid": "GUID92498944-132448S454299", @@ -7682,6 +9967,12 @@ "strval": "False", "InheritedType": 2 }, + { + "nid": -919010928, + "strtype": "LABEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, { "nid": 1742967484, "strtype": "OBJECT/Flex_in_new_track", @@ -7736,6 +10027,12 @@ "strval": "True", "InheritedType": 2 }, + { + "nid": -347287988, + "strtype": "LABEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, { "nid": 741563537, "strtype": "OBJECT/Scroll_one", @@ -7880,7 +10177,7 @@ "strtype": "OBJECT/Position", "intarray": [ 0, - 435 + 455 ], "InheritedType": 7 }, @@ -7897,7 +10194,7 @@ { "nid": 1278386887, "strtype": "OBJECT/Align", - "strval": "TOP_MID", + "strval": "TOP_LEFT", "InheritedType": 3 }, { @@ -7954,6 +10251,12 @@ "strval": "False", "InheritedType": 2 }, + { + "nid": -698101889, + "strtype": "BUTTON/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, { "nid": 565104370, "strtype": "OBJECT/Flex_in_new_track", @@ -8008,6 +10311,12 @@ "strval": "True", "InheritedType": 2 }, + { + "nid": 1607591610, + "strtype": "BUTTON/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, { "nid": -2073144545, "strtype": "OBJECT/Scroll_one", @@ -8210,6 +10519,12 @@ "strval": "False", "InheritedType": 2 }, + { + "nid": -996078024, + "strtype": "LABEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, { "nid": 1235739100, "strtype": "OBJECT/Flex_in_new_track", @@ -8264,6 +10579,12 @@ "strval": "True", "InheritedType": 2 }, + { + "nid": -2070473385, + "strtype": "LABEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, { "nid": -147026014, "strtype": "OBJECT/Scroll_one", @@ -8408,7 +10729,7 @@ "strtype": "OBJECT/Position", "intarray": [ 0, - 485 + 455 ], "InheritedType": 7 }, @@ -8425,7 +10746,7 @@ { "nid": 1266737301, "strtype": "OBJECT/Align", - "strval": "TOP_MID", + "strval": "TOP_RIGHT", "InheritedType": 3 }, { @@ -8482,6 +10803,12 @@ "strval": "False", "InheritedType": 2 }, + { + "nid": -101247838, + "strtype": "BUTTON/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, { "nid": 260934745, "strtype": "OBJECT/Flex_in_new_track", @@ -8536,6 +10863,12 @@ "strval": "True", "InheritedType": 2 }, + { + "nid": -1771204959, + "strtype": "BUTTON/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, { "nid": 1346759211, "strtype": "OBJECT/Scroll_one", @@ -8731,6 +11064,12 @@ "strval": "False", "InheritedType": 2 }, + { + "nid": 1426709430, + "strtype": "PANEL/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, { "nid": -1171824480, "strtype": "PANEL/Flex_in_new_track", @@ -8785,6 +11124,12 @@ "strval": "True", "InheritedType": 2 }, + { + "nid": 1710821222, + "strtype": "PANEL/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, { "nid": -164225548, "strtype": "OBJECT/Scroll_one", @@ -8861,7 +11206,7 @@ "childs": [], "nid": 452821406, "strtype": "PANEL/Style_main", - "strval": "lv.PART.MAIN, Rectangle, Pad, BGimg, Text", + "strval": "lv.PART.MAIN, Rectangle, Pad, Text", "InheritedType": 11 }, { @@ -8950,6 +11295,12 @@ "strval": "False", "InheritedType": 2 }, + { + "nid": -1796734851, + "strtype": "SCREEN/Overflow_visible", + "strval": "False", + "InheritedType": 2 + }, { "nid": -556465343, "strtype": "SCREEN/Flex_in_new_track", @@ -8974,6 +11325,12 @@ "strval": "True", "InheritedType": 2 }, + { + "nid": -1300784222, + "strtype": "SCREEN/Scroll_with_arrow", + "strval": "False", + "InheritedType": 2 + }, { "nid": -1490906168, "strtype": "OBJECT/Scroll_one", @@ -9040,6 +11397,17 @@ "strval": "False", "InheritedType": 2 }, + { + "nid": -714673576, + "strtype": "SCREEN/Screen", + "InheritedType": 1 + }, + { + "nid": 494104586, + "strtype": "SCREEN/Temporary", + "strval": "False", + "InheritedType": 2 + }, { "part": "lv.PART.MAIN", "childs": [ @@ -9163,7 +11531,7 @@ ], "nid": -723309363, "strtype": "SCREEN/Style_main", - "strval": "lv.PART.MAIN, Rectangle, Text", + "strval": "lv.PART.MAIN, Rectangle, Pad, Text", "InheritedType": 11 }, { @@ -9173,6 +11541,12 @@ "strtype": "SCREEN/Style_scrollbar", "strval": "lv.PART.SCROLLBAR, Rectangle, Pad", "InheritedType": 11 + }, + { + "nid": -865144146, + "strtype": "SCREEN/Don't export screen", + "strval": "False", + "InheritedType": 2 } ], "saved_objtypeKey": "SCREEN" @@ -9199,12 +11573,14 @@ "offset_x": 0, "offset_y": 0, "shape": "RECTANGLE", + "multilang": null, "description": "The menu that the user can open while playing a rom.", "board": "ESP-BOX", "board_version": "1.0.0", - "editor_version": "1.2.3", + "editor_version": "1.3.3", "image": "", "force_export_images": false, + "flat_export": false, "pointfilter": false, "theme_simplified": false, "theme_dark": true, @@ -9212,7 +11588,7 @@ "theme_color2": 0, "exportFolderPath": "/Users/bob/esp-cpp/esp-box-emu/components/menu/generated", "projectExportFolderPath": "/Users/bob/esp-cpp/esp-box-emu/components/menu/squareline", - "backup_cnt": 10, + "backup_cnt": 13, "autosave_cnt": 0, "lvgl_version": "8.2.0", "callfuncsexport": "C_FILE", diff --git a/components/menu/src/menu.cpp b/components/menu/src/menu.cpp index b06bff6b..a5e850f8 100644 --- a/components/menu/src/menu.cpp +++ b/components/menu/src/menu.cpp @@ -38,6 +38,10 @@ void Menu::init_ui() { lv_obj_add_event_cb(ui_volume_dec_btn, &Menu::event_callback, LV_EVENT_PRESSED, static_cast(this)); lv_obj_add_event_cb(ui_volume_mute_btn, &Menu::event_callback, LV_EVENT_PRESSED, static_cast(this)); + // brightness settings + lv_obj_add_event_cb(ui_brightness_inc_btn, &Menu::event_callback, LV_EVENT_PRESSED, static_cast(this)); + lv_obj_add_event_cb(ui_brightness_dec_btn, &Menu::event_callback, LV_EVENT_PRESSED, static_cast(this)); + // // now do all the same buttons but with the LV_EVENT_KEY event lv_obj_add_event_cb(ui_resume_btn, &Menu::event_callback, LV_EVENT_KEY, static_cast(this)); lv_obj_add_event_cb(ui_reset_btn, &Menu::event_callback, LV_EVENT_KEY, static_cast(this)); @@ -49,6 +53,8 @@ void Menu::init_ui() { lv_obj_add_event_cb(ui_volume_inc_btn, &Menu::event_callback, LV_EVENT_KEY, static_cast(this)); lv_obj_add_event_cb(ui_volume_dec_btn, &Menu::event_callback, LV_EVENT_KEY, static_cast(this)); lv_obj_add_event_cb(ui_volume_mute_btn, &Menu::event_callback, LV_EVENT_KEY, static_cast(this)); + lv_obj_add_event_cb(ui_brightness_inc_btn, &Menu::event_callback, LV_EVENT_KEY, static_cast(this)); + lv_obj_add_event_cb(ui_brightness_dec_btn, &Menu::event_callback, LV_EVENT_KEY, static_cast(this)); lv_obj_add_event_cb(ui_Dropdown2, &Menu::event_callback, LV_EVENT_KEY, static_cast(this)); @@ -60,6 +66,8 @@ void Menu::init_ui() { lv_group_add_obj(group_, ui_volume_mute_btn); lv_group_add_obj(group_, ui_volume_dec_btn); lv_group_add_obj(group_, ui_volume_inc_btn); + lv_group_add_obj(group_, ui_brightness_dec_btn); + lv_group_add_obj(group_, ui_brightness_inc_btn); lv_group_add_obj(group_, ui_btn_slot_dec); lv_group_add_obj(group_, ui_btn_slot_inc); lv_group_add_obj(group_, ui_load_btn); @@ -77,6 +85,8 @@ void Menu::init_ui() { lv_obj_add_style(ui_volume_mute_btn, &button_style_, LV_STATE_FOCUSED); lv_obj_add_style(ui_volume_dec_btn, &button_style_, LV_STATE_FOCUSED); lv_obj_add_style(ui_volume_inc_btn, &button_style_, LV_STATE_FOCUSED); + lv_obj_add_style(ui_brightness_dec_btn, &button_style_, LV_STATE_FOCUSED); + lv_obj_add_style(ui_brightness_inc_btn, &button_style_, LV_STATE_FOCUSED); lv_obj_add_style(ui_btn_slot_dec, &button_style_, LV_STATE_FOCUSED); lv_obj_add_style(ui_btn_slot_inc, &button_style_, LV_STATE_FOCUSED); lv_obj_add_style(ui_load_btn, &button_style_, LV_STATE_FOCUSED); @@ -88,6 +98,8 @@ void Menu::init_ui() { // now focus the resume button lv_group_focus_obj(ui_resume_btn); lv_group_focus_freeze(group_, false); + + update_fps_label(get_fps()); } void Menu::deinit_ui() { @@ -197,6 +209,12 @@ void Menu::update_pause_image() { lv_obj_set_size(ui_pause_image, width * scale, height * scale); } +void Menu::update_fps_label(float fps) { + auto label = fmt::format("{:0.1f} FPS", fps); + std::lock_guard lk(mutex_); + lv_label_set_text(ui_fps_label, label.c_str()); +} + void Menu::set_mute(bool muted) { set_muted(muted); if (muted) { @@ -212,6 +230,12 @@ void Menu::set_audio_level(int new_audio_level) { set_audio_volume(new_audio_level); } +void Menu::set_brightness(int new_brightness) { + new_brightness = std::clamp(new_brightness, 10, 100); + lv_bar_set_value(ui_brightness_bar, new_brightness, LV_ANIM_ON); + set_display_brightness((float)new_brightness / 100.0f); +} + void Menu::set_video_setting(VideoSetting setting) { ::set_video_setting(setting); lv_dropdown_set_selected(ui_Dropdown2, (int)setting); @@ -294,6 +318,17 @@ void Menu::on_pressed(lv_event_t *e) { toggle_mute(); return; } + // brightness controls + bool is_brightness_up_button = (target == ui_brightness_inc_btn); + if (is_brightness_up_button) { + set_brightness(get_display_brightness() * 100.0f + 10); + return; + } + bool is_brightness_down_button = (target == ui_brightness_dec_btn); + if (is_brightness_down_button) { + set_brightness(get_display_brightness() * 100.0f - 10); + return; + } } void Menu::on_key(lv_event_t *e) { diff --git a/components/nes/src/nes.cpp b/components/nes/src/nes.cpp index ae28d8fa..91bae685 100644 --- a/components/nes/src/nes.cpp +++ b/components/nes/src/nes.cpp @@ -14,6 +14,7 @@ static nes_t* console_nes; #include "format.hpp" #include "spi_lcd.h" #include "st7789.hpp" +#include "statistics.hpp" static std::atomic scaled = false; static std::atomic filled = true; @@ -41,8 +42,6 @@ void reset_nes() { } static uint8_t first_frame = 0; -static uint32_t frame_counter = 0; -static float totalElapsedSeconds = 0; void init_nes(const std::string& rom_filename, uint8_t *romdata, size_t rom_data_size) { static bool initialized = false; if (!initialized) { @@ -61,8 +60,7 @@ void init_nes(const std::string& rom_filename, uint8_t *romdata, size_t rom_data vid_setmode(NES_SCREEN_WIDTH, NES_VISIBLE_HEIGHT); nes_prep_emulation(nullptr, console_nes); first_frame = 1; - frame_counter = 0; - totalElapsedSeconds = 0; + reset_frame_time(); } static bool load_save = false; @@ -71,18 +69,13 @@ void run_nes_rom() { if (load_save) { nes_prep_emulation((char *)save_path_to_load.data(), console_nes); load_save = false; - frame_counter = 0; } auto start = std::chrono::high_resolution_clock::now(); nes_emulateframe(first_frame); first_frame = 0; - ++frame_counter; auto end = std::chrono::high_resolution_clock::now(); auto elapsed = std::chrono::duration(end-start).count(); - totalElapsedSeconds += elapsed; - if ((frame_counter % 60) == 0) { - fmt::print("nes: FPS {}\n", (float) frame_counter / totalElapsedSeconds); - } + update_frame_time(elapsed); // frame rate should be 60 FPS, so 1/60th second is what we want to sleep for static constexpr auto delay = std::chrono::duration(1.0f/60.0f); std::this_thread::sleep_until(start + delay); diff --git a/main/cart.hpp b/main/cart.hpp index 2244ce3b..62b4c055 100644 --- a/main/cart.hpp +++ b/main/cart.hpp @@ -174,7 +174,7 @@ class Cart { // pause the game and show the menu bool show_menu = _btn_state || (state.start && state.select); if (show_menu) { - logger_.warn("Menu pressed!"); + logger_.info("Menu pressed!"); pre_menu(); // take a screenshot before we show the menu screenshot(get_paused_image_path()); diff --git a/sdkconfig.defaults b/sdkconfig.defaults index d0bb69e2..a1368d8c 100644 --- a/sdkconfig.defaults +++ b/sdkconfig.defaults @@ -27,9 +27,9 @@ CONFIG_SPIRAM_USE_MALLOC=y CONFIG_SPIRAM_MODE_OCT=y CONFIG_SPIRAM_SPEED_80M=y # anything larger than this is attempted to allocate within SPIRAM first -# CONFIG_SPIRAM_MALLOC_ALWAYSINTERNAL=0 +CONFIG_SPIRAM_MALLOC_ALWAYSINTERNAL=0 # specifcally reserved internally for DMA -# CONFIG_SPIRAM_MALLOC_RESERVE_INTERNAL=262144 +CONFIG_SPIRAM_MALLOC_RESERVE_INTERNAL=128000 # CONFIG_SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY=y #