├── .gitattributes ├── CMakeLists.txt ├── LICENSE ├── README.md ├── driver ├── CMakeLists.txt ├── gt_driver.mk ├── gt_font_config.c ├── gt_font_config.h ├── gt_gui_driver.c ├── gt_gui_driver.h ├── gt_port_disp.c ├── gt_port_disp.h ├── gt_port_indev.c ├── gt_port_indev.h ├── gt_port_src.c ├── gt_port_src.h ├── gt_port_vf.c └── gt_port_vf.h ├── examples ├── ReadMe.md ├── gt_examples.h └── widgets │ ├── gt_example_anim1.c │ ├── gt_example_button.c │ ├── gt_example_checkbox.c │ ├── gt_example_img.c │ ├── gt_example_img_button.c │ ├── gt_example_input.c │ ├── gt_example_keyboard.c │ ├── gt_example_label.c │ ├── gt_example_line.c │ ├── gt_example_listview.c │ ├── gt_example_progress_bar.c │ └── gt_example_roller.c ├── gt.h ├── gui.mk ├── images ├── 图片按钮.gif ├── 多国语言.gif ├── 幻灯片.gif ├── 矢量字库.gif ├── 矢量字库示例.png ├── 组合.gif ├── 键盘.gif └── 高通GitHub运营版面logo.png ├── sources ├── Doxyfile ├── ReadMe.md ├── gif │ └── button.gif └── gt-gui.png ├── src ├── CMakeLists.txt ├── core │ ├── gt_core.mk │ ├── gt_disp.c │ ├── gt_disp.h │ ├── gt_draw.c │ ├── gt_draw.h │ ├── gt_event.c │ ├── gt_event.h │ ├── gt_fs.c │ ├── gt_fs.h │ ├── gt_graph_base.c │ ├── gt_graph_base.h │ ├── gt_handler.c │ ├── gt_handler.h │ ├── gt_img_decoder.c │ ├── gt_img_decoder.h │ ├── gt_indev.c │ ├── gt_indev.h │ ├── gt_layout.c │ ├── gt_layout.h │ ├── gt_mask.c │ ├── gt_mask.h │ ├── gt_mem.c │ ├── gt_mem.h │ ├── gt_obj_pos.c │ ├── gt_obj_pos.h │ ├── gt_obj_scroll.c │ ├── gt_obj_scroll.h │ ├── gt_refr.c │ ├── gt_refr.h │ ├── gt_scr_stack.c │ ├── gt_scr_stack.h │ ├── gt_style.c │ ├── gt_style.h │ ├── gt_timer.c │ └── gt_timer.h ├── extra │ ├── draw │ │ ├── gt_draw.mk │ │ ├── gt_draw_blend.c │ │ ├── gt_draw_blend.h │ │ ├── gt_draw_blend_with_argb888.c │ │ ├── gt_draw_blend_with_argb888.h │ │ ├── gt_draw_blend_with_rgb565.c │ │ ├── gt_draw_blend_with_rgb565.h │ │ ├── gt_draw_blend_with_rgb888.c │ │ └── gt_draw_blend_with_rgb888.h │ ├── gif │ │ ├── gifdec.c │ │ ├── gifdec.h │ │ └── gt_gif.mk │ ├── gt_extra.c │ ├── gt_extra.h │ ├── gt_extra.mk │ ├── jpeg │ │ ├── gt_jpeg.mk │ │ ├── gt_sjpg.c │ │ ├── gt_sjpg.h │ │ ├── tjpgd.c │ │ ├── tjpgd.h │ │ └── tjpgdcnf.h │ ├── md4c │ │ ├── entity.c │ │ ├── entity.h │ │ ├── gt_md4c.mk │ │ ├── md4c-html.c │ │ ├── md4c-html.h │ │ ├── md4c.c │ │ └── md4c.h │ ├── png │ │ ├── gt_png.c │ │ ├── gt_png.h │ │ ├── gt_png.mk │ │ ├── lodepng.c │ │ └── lodepng.h │ └── serial │ │ ├── gt_serial.mk │ │ ├── gt_serial_area_light.c │ │ ├── gt_serial_area_light.h │ │ ├── gt_serial_cfg.c │ │ ├── gt_serial_cfg.h │ │ ├── gt_serial_command.c │ │ ├── gt_serial_command.h │ │ ├── gt_serial_event.c │ │ ├── gt_serial_event.h │ │ ├── gt_serial_qrcode.c │ │ ├── gt_serial_qrcode.h │ │ ├── gt_serial_resource.c │ │ ├── gt_serial_resource.h │ │ ├── gt_serial_show.c │ │ ├── gt_serial_show.h │ │ ├── gt_serial_system.c │ │ ├── gt_serial_system.h │ │ ├── gt_serial_value_passing.c │ │ ├── gt_serial_value_passing.h │ │ ├── gt_serial_var.c │ │ ├── gt_serial_var.h │ │ ├── gt_serial_var_anim_icon.c │ │ ├── gt_serial_var_anim_icon.h │ │ ├── gt_serial_var_artistic.c │ │ ├── gt_serial_var_artistic.h │ │ ├── gt_serial_var_bit.c │ │ ├── gt_serial_var_bit.h │ │ ├── gt_serial_var_hex.c │ │ ├── gt_serial_var_hex.h │ │ ├── gt_serial_var_icon.c │ │ ├── gt_serial_var_icon.h │ │ ├── gt_serial_var_input.c │ │ ├── gt_serial_var_input.h │ │ ├── gt_serial_var_keypad.c │ │ ├── gt_serial_var_keypad.h │ │ ├── gt_serial_var_numb.c │ │ ├── gt_serial_var_numb.h │ │ ├── gt_serial_var_pic.c │ │ ├── gt_serial_var_pic.h │ │ ├── gt_serial_var_progress_bar.c │ │ ├── gt_serial_var_progress_bar.h │ │ ├── gt_serial_var_roller.c │ │ ├── gt_serial_var_roller.h │ │ ├── gt_serial_var_rtc.c │ │ ├── gt_serial_var_rtc.h │ │ ├── gt_serial_var_slider.c │ │ ├── gt_serial_var_slider.h │ │ ├── gt_serial_var_text.c │ │ └── gt_serial_var_text.h ├── font │ ├── gt_font.c │ ├── gt_font.h │ ├── gt_font.mk │ ├── gt_symbol.c │ └── gt_symbol.h ├── gt_api_mapper.h ├── gt_conf.h ├── hal │ ├── gt_hal.mk │ ├── gt_hal_disp.c │ ├── gt_hal_disp.h │ ├── gt_hal_file_header.c │ ├── gt_hal_file_header.h │ ├── gt_hal_fs.c │ ├── gt_hal_fs.h │ ├── gt_hal_indev.c │ ├── gt_hal_indev.h │ ├── gt_hal_src.c │ ├── gt_hal_src.h │ ├── gt_hal_tick.c │ ├── gt_hal_tick.h │ ├── gt_hal_vf.c │ └── gt_hal_vf.h ├── others │ ├── gt_anim.c │ ├── gt_anim.h │ ├── gt_area.c │ ├── gt_area.h │ ├── gt_assert.h │ ├── gt_color.c │ ├── gt_color.h │ ├── gt_crc.c │ ├── gt_crc.h │ ├── gt_defs.h │ ├── gt_gc.c │ ├── gt_gc.h │ ├── gt_list.h │ ├── gt_ll.c │ ├── gt_ll.h │ ├── gt_log.h │ ├── gt_math.c │ ├── gt_math.h │ ├── gt_others.mk │ ├── gt_tlsf.c │ ├── gt_tlsf.h │ ├── gt_txt.c │ ├── gt_txt.h │ └── gt_types.h ├── utils │ ├── gt_bin_convert.c │ ├── gt_bin_convert.h │ ├── gt_img_cache.c │ ├── gt_img_cache.h │ ├── gt_queue.c │ ├── gt_queue.h │ ├── gt_serial.c │ ├── gt_serial.h │ ├── gt_stack.c │ ├── gt_stack.h │ ├── gt_utils.mk │ ├── gt_vector.c │ └── gt_vector.h └── widgets │ ├── gt_arc.c │ ├── gt_arc.h │ ├── gt_barcode.c │ ├── gt_barcode.h │ ├── gt_btn.c │ ├── gt_btn.h │ ├── gt_btnmap.c │ ├── gt_btnmap.h │ ├── gt_chat.c │ ├── gt_chat.h │ ├── gt_checkbox.c │ ├── gt_checkbox.h │ ├── gt_clock.c │ ├── gt_clock.h │ ├── gt_conf_widgets.h │ ├── gt_dialog.c │ ├── gt_dialog.h │ ├── gt_gif.c │ ├── gt_gif.h │ ├── gt_graphs.c │ ├── gt_graphs.h │ ├── gt_group.c │ ├── gt_group.h │ ├── gt_img.c │ ├── gt_img.h │ ├── gt_imgbtn.c │ ├── gt_imgbtn.h │ ├── gt_input.c │ ├── gt_input.h │ ├── gt_input_number.c │ ├── gt_input_number.h │ ├── gt_keypad.c │ ├── gt_keypad.h │ ├── gt_label.c │ ├── gt_label.h │ ├── gt_line.c │ ├── gt_line.h │ ├── gt_listview.c │ ├── gt_listview.h │ ├── gt_markdown.c │ ├── gt_markdown.h │ ├── gt_media_player.c │ ├── gt_media_player.h │ ├── gt_obj.c │ ├── gt_obj.h │ ├── gt_obj_class.c │ ├── gt_obj_class.h │ ├── gt_option.c │ ├── gt_option.h │ ├── gt_player.c │ ├── gt_player.h │ ├── gt_progress_bar.c │ ├── gt_progress_bar.h │ ├── gt_qrcode.c │ ├── gt_qrcode.h │ ├── gt_radio.c │ ├── gt_radio.h │ ├── gt_rect.c │ ├── gt_rect.h │ ├── gt_roller.c │ ├── gt_roller.h │ ├── gt_select.c │ ├── gt_select.h │ ├── gt_slider.c │ ├── gt_slider.h │ ├── gt_status_bar.c │ ├── gt_status_bar.h │ ├── gt_switch.c │ ├── gt_switch.h │ ├── gt_table.c │ ├── gt_table.h │ ├── gt_template.c │ ├── gt_template.h │ ├── gt_textarea.c │ ├── gt_textarea.h │ ├── gt_view_pager.c │ ├── gt_view_pager.h │ ├── gt_widgets.mk │ ├── gt_wordart.c │ ├── gt_wordart.h │ └── serial │ ├── gt_bit_img.c │ ├── gt_bit_img.h │ └── gt_widgets_serial.mk └── test ├── gt_test.mk ├── gt_test_rand_widget.c └── gt_test_rand_widget.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/.gitattributes -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/README.md -------------------------------------------------------------------------------- /driver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/driver/CMakeLists.txt -------------------------------------------------------------------------------- /driver/gt_driver.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/driver/gt_driver.mk -------------------------------------------------------------------------------- /driver/gt_font_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/driver/gt_font_config.c -------------------------------------------------------------------------------- /driver/gt_font_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/driver/gt_font_config.h -------------------------------------------------------------------------------- /driver/gt_gui_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/driver/gt_gui_driver.c -------------------------------------------------------------------------------- /driver/gt_gui_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/driver/gt_gui_driver.h -------------------------------------------------------------------------------- /driver/gt_port_disp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/driver/gt_port_disp.c -------------------------------------------------------------------------------- /driver/gt_port_disp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/driver/gt_port_disp.h -------------------------------------------------------------------------------- /driver/gt_port_indev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/driver/gt_port_indev.c -------------------------------------------------------------------------------- /driver/gt_port_indev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/driver/gt_port_indev.h -------------------------------------------------------------------------------- /driver/gt_port_src.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/driver/gt_port_src.c -------------------------------------------------------------------------------- /driver/gt_port_src.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/driver/gt_port_src.h -------------------------------------------------------------------------------- /driver/gt_port_vf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/driver/gt_port_vf.c -------------------------------------------------------------------------------- /driver/gt_port_vf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/driver/gt_port_vf.h -------------------------------------------------------------------------------- /examples/ReadMe.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/gt_examples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/examples/gt_examples.h -------------------------------------------------------------------------------- /examples/widgets/gt_example_anim1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/examples/widgets/gt_example_anim1.c -------------------------------------------------------------------------------- /examples/widgets/gt_example_button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/examples/widgets/gt_example_button.c -------------------------------------------------------------------------------- /examples/widgets/gt_example_checkbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/examples/widgets/gt_example_checkbox.c -------------------------------------------------------------------------------- /examples/widgets/gt_example_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/examples/widgets/gt_example_img.c -------------------------------------------------------------------------------- /examples/widgets/gt_example_img_button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/examples/widgets/gt_example_img_button.c -------------------------------------------------------------------------------- /examples/widgets/gt_example_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/examples/widgets/gt_example_input.c -------------------------------------------------------------------------------- /examples/widgets/gt_example_keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/examples/widgets/gt_example_keyboard.c -------------------------------------------------------------------------------- /examples/widgets/gt_example_label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/examples/widgets/gt_example_label.c -------------------------------------------------------------------------------- /examples/widgets/gt_example_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/examples/widgets/gt_example_line.c -------------------------------------------------------------------------------- /examples/widgets/gt_example_listview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/examples/widgets/gt_example_listview.c -------------------------------------------------------------------------------- /examples/widgets/gt_example_progress_bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/examples/widgets/gt_example_progress_bar.c -------------------------------------------------------------------------------- /examples/widgets/gt_example_roller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/examples/widgets/gt_example_roller.c -------------------------------------------------------------------------------- /gt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/gt.h -------------------------------------------------------------------------------- /gui.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/gui.mk -------------------------------------------------------------------------------- /images/图片按钮.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/images/图片按钮.gif -------------------------------------------------------------------------------- /images/多国语言.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/images/多国语言.gif -------------------------------------------------------------------------------- /images/幻灯片.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/images/幻灯片.gif -------------------------------------------------------------------------------- /images/矢量字库.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/images/矢量字库.gif -------------------------------------------------------------------------------- /images/矢量字库示例.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/images/矢量字库示例.png -------------------------------------------------------------------------------- /images/组合.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/images/组合.gif -------------------------------------------------------------------------------- /images/键盘.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/images/键盘.gif -------------------------------------------------------------------------------- /images/高通GitHub运营版面logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/images/高通GitHub运营版面logo.png -------------------------------------------------------------------------------- /sources/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/sources/Doxyfile -------------------------------------------------------------------------------- /sources/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/sources/ReadMe.md -------------------------------------------------------------------------------- /sources/gif/button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/sources/gif/button.gif -------------------------------------------------------------------------------- /sources/gt-gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/sources/gt-gui.png -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/core/gt_core.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/core/gt_core.mk -------------------------------------------------------------------------------- /src/core/gt_disp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/core/gt_disp.c -------------------------------------------------------------------------------- /src/core/gt_disp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/core/gt_disp.h -------------------------------------------------------------------------------- /src/core/gt_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/core/gt_draw.c -------------------------------------------------------------------------------- /src/core/gt_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/core/gt_draw.h -------------------------------------------------------------------------------- /src/core/gt_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/core/gt_event.c -------------------------------------------------------------------------------- /src/core/gt_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/core/gt_event.h -------------------------------------------------------------------------------- /src/core/gt_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/core/gt_fs.c -------------------------------------------------------------------------------- /src/core/gt_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/core/gt_fs.h -------------------------------------------------------------------------------- /src/core/gt_graph_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/core/gt_graph_base.c -------------------------------------------------------------------------------- /src/core/gt_graph_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/core/gt_graph_base.h -------------------------------------------------------------------------------- /src/core/gt_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/core/gt_handler.c -------------------------------------------------------------------------------- /src/core/gt_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/core/gt_handler.h -------------------------------------------------------------------------------- /src/core/gt_img_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/core/gt_img_decoder.c -------------------------------------------------------------------------------- /src/core/gt_img_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/core/gt_img_decoder.h -------------------------------------------------------------------------------- /src/core/gt_indev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/core/gt_indev.c -------------------------------------------------------------------------------- /src/core/gt_indev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/core/gt_indev.h -------------------------------------------------------------------------------- /src/core/gt_layout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/core/gt_layout.c -------------------------------------------------------------------------------- /src/core/gt_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/core/gt_layout.h -------------------------------------------------------------------------------- /src/core/gt_mask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/core/gt_mask.c -------------------------------------------------------------------------------- /src/core/gt_mask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/core/gt_mask.h -------------------------------------------------------------------------------- /src/core/gt_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/core/gt_mem.c -------------------------------------------------------------------------------- /src/core/gt_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/core/gt_mem.h -------------------------------------------------------------------------------- /src/core/gt_obj_pos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/core/gt_obj_pos.c -------------------------------------------------------------------------------- /src/core/gt_obj_pos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/core/gt_obj_pos.h -------------------------------------------------------------------------------- /src/core/gt_obj_scroll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/core/gt_obj_scroll.c -------------------------------------------------------------------------------- /src/core/gt_obj_scroll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/core/gt_obj_scroll.h -------------------------------------------------------------------------------- /src/core/gt_refr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/core/gt_refr.c -------------------------------------------------------------------------------- /src/core/gt_refr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/core/gt_refr.h -------------------------------------------------------------------------------- /src/core/gt_scr_stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/core/gt_scr_stack.c -------------------------------------------------------------------------------- /src/core/gt_scr_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/core/gt_scr_stack.h -------------------------------------------------------------------------------- /src/core/gt_style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/core/gt_style.c -------------------------------------------------------------------------------- /src/core/gt_style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/core/gt_style.h -------------------------------------------------------------------------------- /src/core/gt_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/core/gt_timer.c -------------------------------------------------------------------------------- /src/core/gt_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/core/gt_timer.h -------------------------------------------------------------------------------- /src/extra/draw/gt_draw.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/draw/gt_draw.mk -------------------------------------------------------------------------------- /src/extra/draw/gt_draw_blend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/draw/gt_draw_blend.c -------------------------------------------------------------------------------- /src/extra/draw/gt_draw_blend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/draw/gt_draw_blend.h -------------------------------------------------------------------------------- /src/extra/draw/gt_draw_blend_with_argb888.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/draw/gt_draw_blend_with_argb888.c -------------------------------------------------------------------------------- /src/extra/draw/gt_draw_blend_with_argb888.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/draw/gt_draw_blend_with_argb888.h -------------------------------------------------------------------------------- /src/extra/draw/gt_draw_blend_with_rgb565.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/draw/gt_draw_blend_with_rgb565.c -------------------------------------------------------------------------------- /src/extra/draw/gt_draw_blend_with_rgb565.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/draw/gt_draw_blend_with_rgb565.h -------------------------------------------------------------------------------- /src/extra/draw/gt_draw_blend_with_rgb888.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/draw/gt_draw_blend_with_rgb888.c -------------------------------------------------------------------------------- /src/extra/draw/gt_draw_blend_with_rgb888.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/draw/gt_draw_blend_with_rgb888.h -------------------------------------------------------------------------------- /src/extra/gif/gifdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/gif/gifdec.c -------------------------------------------------------------------------------- /src/extra/gif/gifdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/gif/gifdec.h -------------------------------------------------------------------------------- /src/extra/gif/gt_gif.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/gif/gt_gif.mk -------------------------------------------------------------------------------- /src/extra/gt_extra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/gt_extra.c -------------------------------------------------------------------------------- /src/extra/gt_extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/gt_extra.h -------------------------------------------------------------------------------- /src/extra/gt_extra.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/gt_extra.mk -------------------------------------------------------------------------------- /src/extra/jpeg/gt_jpeg.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/jpeg/gt_jpeg.mk -------------------------------------------------------------------------------- /src/extra/jpeg/gt_sjpg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/jpeg/gt_sjpg.c -------------------------------------------------------------------------------- /src/extra/jpeg/gt_sjpg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/jpeg/gt_sjpg.h -------------------------------------------------------------------------------- /src/extra/jpeg/tjpgd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/jpeg/tjpgd.c -------------------------------------------------------------------------------- /src/extra/jpeg/tjpgd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/jpeg/tjpgd.h -------------------------------------------------------------------------------- /src/extra/jpeg/tjpgdcnf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/jpeg/tjpgdcnf.h -------------------------------------------------------------------------------- /src/extra/md4c/entity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/md4c/entity.c -------------------------------------------------------------------------------- /src/extra/md4c/entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/md4c/entity.h -------------------------------------------------------------------------------- /src/extra/md4c/gt_md4c.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/md4c/gt_md4c.mk -------------------------------------------------------------------------------- /src/extra/md4c/md4c-html.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/md4c/md4c-html.c -------------------------------------------------------------------------------- /src/extra/md4c/md4c-html.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/md4c/md4c-html.h -------------------------------------------------------------------------------- /src/extra/md4c/md4c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/md4c/md4c.c -------------------------------------------------------------------------------- /src/extra/md4c/md4c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/md4c/md4c.h -------------------------------------------------------------------------------- /src/extra/png/gt_png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/png/gt_png.c -------------------------------------------------------------------------------- /src/extra/png/gt_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/png/gt_png.h -------------------------------------------------------------------------------- /src/extra/png/gt_png.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/png/gt_png.mk -------------------------------------------------------------------------------- /src/extra/png/lodepng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/png/lodepng.c -------------------------------------------------------------------------------- /src/extra/png/lodepng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/png/lodepng.h -------------------------------------------------------------------------------- /src/extra/serial/gt_serial.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial.mk -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_area_light.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_area_light.c -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_area_light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_area_light.h -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_cfg.c -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_cfg.h -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_command.c -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_command.h -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_event.c -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_event.h -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_qrcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_qrcode.c -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_qrcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_qrcode.h -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_resource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_resource.c -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_resource.h -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_show.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_show.c -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_show.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_show.h -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_system.c -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_system.h -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_value_passing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_value_passing.c -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_value_passing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_value_passing.h -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_var.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_var.c -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_var.h -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_var_anim_icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_var_anim_icon.c -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_var_anim_icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_var_anim_icon.h -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_var_artistic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_var_artistic.c -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_var_artistic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_var_artistic.h -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_var_bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_var_bit.c -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_var_bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_var_bit.h -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_var_hex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_var_hex.c -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_var_hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_var_hex.h -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_var_icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_var_icon.c -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_var_icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_var_icon.h -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_var_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_var_input.c -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_var_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_var_input.h -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_var_keypad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_var_keypad.c -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_var_keypad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_var_keypad.h -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_var_numb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_var_numb.c -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_var_numb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_var_numb.h -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_var_pic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_var_pic.c -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_var_pic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_var_pic.h -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_var_progress_bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_var_progress_bar.c -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_var_progress_bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_var_progress_bar.h -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_var_roller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_var_roller.c -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_var_roller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_var_roller.h -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_var_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_var_rtc.c -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_var_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_var_rtc.h -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_var_slider.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_var_slider.c -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_var_slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_var_slider.h -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_var_text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_var_text.c -------------------------------------------------------------------------------- /src/extra/serial/gt_serial_var_text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/extra/serial/gt_serial_var_text.h -------------------------------------------------------------------------------- /src/font/gt_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/font/gt_font.c -------------------------------------------------------------------------------- /src/font/gt_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/font/gt_font.h -------------------------------------------------------------------------------- /src/font/gt_font.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/font/gt_font.mk -------------------------------------------------------------------------------- /src/font/gt_symbol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/font/gt_symbol.c -------------------------------------------------------------------------------- /src/font/gt_symbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/font/gt_symbol.h -------------------------------------------------------------------------------- /src/gt_api_mapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/gt_api_mapper.h -------------------------------------------------------------------------------- /src/gt_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/gt_conf.h -------------------------------------------------------------------------------- /src/hal/gt_hal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/hal/gt_hal.mk -------------------------------------------------------------------------------- /src/hal/gt_hal_disp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/hal/gt_hal_disp.c -------------------------------------------------------------------------------- /src/hal/gt_hal_disp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/hal/gt_hal_disp.h -------------------------------------------------------------------------------- /src/hal/gt_hal_file_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/hal/gt_hal_file_header.c -------------------------------------------------------------------------------- /src/hal/gt_hal_file_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/hal/gt_hal_file_header.h -------------------------------------------------------------------------------- /src/hal/gt_hal_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/hal/gt_hal_fs.c -------------------------------------------------------------------------------- /src/hal/gt_hal_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/hal/gt_hal_fs.h -------------------------------------------------------------------------------- /src/hal/gt_hal_indev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/hal/gt_hal_indev.c -------------------------------------------------------------------------------- /src/hal/gt_hal_indev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/hal/gt_hal_indev.h -------------------------------------------------------------------------------- /src/hal/gt_hal_src.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/hal/gt_hal_src.c -------------------------------------------------------------------------------- /src/hal/gt_hal_src.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/hal/gt_hal_src.h -------------------------------------------------------------------------------- /src/hal/gt_hal_tick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/hal/gt_hal_tick.c -------------------------------------------------------------------------------- /src/hal/gt_hal_tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/hal/gt_hal_tick.h -------------------------------------------------------------------------------- /src/hal/gt_hal_vf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/hal/gt_hal_vf.c -------------------------------------------------------------------------------- /src/hal/gt_hal_vf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/hal/gt_hal_vf.h -------------------------------------------------------------------------------- /src/others/gt_anim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/others/gt_anim.c -------------------------------------------------------------------------------- /src/others/gt_anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/others/gt_anim.h -------------------------------------------------------------------------------- /src/others/gt_area.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/others/gt_area.c -------------------------------------------------------------------------------- /src/others/gt_area.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/others/gt_area.h -------------------------------------------------------------------------------- /src/others/gt_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/others/gt_assert.h -------------------------------------------------------------------------------- /src/others/gt_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/others/gt_color.c -------------------------------------------------------------------------------- /src/others/gt_color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/others/gt_color.h -------------------------------------------------------------------------------- /src/others/gt_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/others/gt_crc.c -------------------------------------------------------------------------------- /src/others/gt_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/others/gt_crc.h -------------------------------------------------------------------------------- /src/others/gt_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/others/gt_defs.h -------------------------------------------------------------------------------- /src/others/gt_gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/others/gt_gc.c -------------------------------------------------------------------------------- /src/others/gt_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/others/gt_gc.h -------------------------------------------------------------------------------- /src/others/gt_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/others/gt_list.h -------------------------------------------------------------------------------- /src/others/gt_ll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/others/gt_ll.c -------------------------------------------------------------------------------- /src/others/gt_ll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/others/gt_ll.h -------------------------------------------------------------------------------- /src/others/gt_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/others/gt_log.h -------------------------------------------------------------------------------- /src/others/gt_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/others/gt_math.c -------------------------------------------------------------------------------- /src/others/gt_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/others/gt_math.h -------------------------------------------------------------------------------- /src/others/gt_others.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/others/gt_others.mk -------------------------------------------------------------------------------- /src/others/gt_tlsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/others/gt_tlsf.c -------------------------------------------------------------------------------- /src/others/gt_tlsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/others/gt_tlsf.h -------------------------------------------------------------------------------- /src/others/gt_txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/others/gt_txt.c -------------------------------------------------------------------------------- /src/others/gt_txt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/others/gt_txt.h -------------------------------------------------------------------------------- /src/others/gt_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/others/gt_types.h -------------------------------------------------------------------------------- /src/utils/gt_bin_convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/utils/gt_bin_convert.c -------------------------------------------------------------------------------- /src/utils/gt_bin_convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/utils/gt_bin_convert.h -------------------------------------------------------------------------------- /src/utils/gt_img_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/utils/gt_img_cache.c -------------------------------------------------------------------------------- /src/utils/gt_img_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/utils/gt_img_cache.h -------------------------------------------------------------------------------- /src/utils/gt_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/utils/gt_queue.c -------------------------------------------------------------------------------- /src/utils/gt_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/utils/gt_queue.h -------------------------------------------------------------------------------- /src/utils/gt_serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/utils/gt_serial.c -------------------------------------------------------------------------------- /src/utils/gt_serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/utils/gt_serial.h -------------------------------------------------------------------------------- /src/utils/gt_stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/utils/gt_stack.c -------------------------------------------------------------------------------- /src/utils/gt_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/utils/gt_stack.h -------------------------------------------------------------------------------- /src/utils/gt_utils.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/utils/gt_utils.mk -------------------------------------------------------------------------------- /src/utils/gt_vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/utils/gt_vector.c -------------------------------------------------------------------------------- /src/utils/gt_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/utils/gt_vector.h -------------------------------------------------------------------------------- /src/widgets/gt_arc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_arc.c -------------------------------------------------------------------------------- /src/widgets/gt_arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_arc.h -------------------------------------------------------------------------------- /src/widgets/gt_barcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_barcode.c -------------------------------------------------------------------------------- /src/widgets/gt_barcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_barcode.h -------------------------------------------------------------------------------- /src/widgets/gt_btn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_btn.c -------------------------------------------------------------------------------- /src/widgets/gt_btn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_btn.h -------------------------------------------------------------------------------- /src/widgets/gt_btnmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_btnmap.c -------------------------------------------------------------------------------- /src/widgets/gt_btnmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_btnmap.h -------------------------------------------------------------------------------- /src/widgets/gt_chat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_chat.c -------------------------------------------------------------------------------- /src/widgets/gt_chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_chat.h -------------------------------------------------------------------------------- /src/widgets/gt_checkbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_checkbox.c -------------------------------------------------------------------------------- /src/widgets/gt_checkbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_checkbox.h -------------------------------------------------------------------------------- /src/widgets/gt_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_clock.c -------------------------------------------------------------------------------- /src/widgets/gt_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_clock.h -------------------------------------------------------------------------------- /src/widgets/gt_conf_widgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_conf_widgets.h -------------------------------------------------------------------------------- /src/widgets/gt_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_dialog.c -------------------------------------------------------------------------------- /src/widgets/gt_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_dialog.h -------------------------------------------------------------------------------- /src/widgets/gt_gif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_gif.c -------------------------------------------------------------------------------- /src/widgets/gt_gif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_gif.h -------------------------------------------------------------------------------- /src/widgets/gt_graphs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_graphs.c -------------------------------------------------------------------------------- /src/widgets/gt_graphs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_graphs.h -------------------------------------------------------------------------------- /src/widgets/gt_group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_group.c -------------------------------------------------------------------------------- /src/widgets/gt_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_group.h -------------------------------------------------------------------------------- /src/widgets/gt_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_img.c -------------------------------------------------------------------------------- /src/widgets/gt_img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_img.h -------------------------------------------------------------------------------- /src/widgets/gt_imgbtn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_imgbtn.c -------------------------------------------------------------------------------- /src/widgets/gt_imgbtn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_imgbtn.h -------------------------------------------------------------------------------- /src/widgets/gt_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_input.c -------------------------------------------------------------------------------- /src/widgets/gt_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_input.h -------------------------------------------------------------------------------- /src/widgets/gt_input_number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_input_number.c -------------------------------------------------------------------------------- /src/widgets/gt_input_number.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_input_number.h -------------------------------------------------------------------------------- /src/widgets/gt_keypad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_keypad.c -------------------------------------------------------------------------------- /src/widgets/gt_keypad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_keypad.h -------------------------------------------------------------------------------- /src/widgets/gt_label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_label.c -------------------------------------------------------------------------------- /src/widgets/gt_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_label.h -------------------------------------------------------------------------------- /src/widgets/gt_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_line.c -------------------------------------------------------------------------------- /src/widgets/gt_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_line.h -------------------------------------------------------------------------------- /src/widgets/gt_listview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_listview.c -------------------------------------------------------------------------------- /src/widgets/gt_listview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_listview.h -------------------------------------------------------------------------------- /src/widgets/gt_markdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_markdown.c -------------------------------------------------------------------------------- /src/widgets/gt_markdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_markdown.h -------------------------------------------------------------------------------- /src/widgets/gt_media_player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_media_player.c -------------------------------------------------------------------------------- /src/widgets/gt_media_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_media_player.h -------------------------------------------------------------------------------- /src/widgets/gt_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_obj.c -------------------------------------------------------------------------------- /src/widgets/gt_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_obj.h -------------------------------------------------------------------------------- /src/widgets/gt_obj_class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_obj_class.c -------------------------------------------------------------------------------- /src/widgets/gt_obj_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_obj_class.h -------------------------------------------------------------------------------- /src/widgets/gt_option.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_option.c -------------------------------------------------------------------------------- /src/widgets/gt_option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_option.h -------------------------------------------------------------------------------- /src/widgets/gt_player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_player.c -------------------------------------------------------------------------------- /src/widgets/gt_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_player.h -------------------------------------------------------------------------------- /src/widgets/gt_progress_bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_progress_bar.c -------------------------------------------------------------------------------- /src/widgets/gt_progress_bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_progress_bar.h -------------------------------------------------------------------------------- /src/widgets/gt_qrcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_qrcode.c -------------------------------------------------------------------------------- /src/widgets/gt_qrcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_qrcode.h -------------------------------------------------------------------------------- /src/widgets/gt_radio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_radio.c -------------------------------------------------------------------------------- /src/widgets/gt_radio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_radio.h -------------------------------------------------------------------------------- /src/widgets/gt_rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_rect.c -------------------------------------------------------------------------------- /src/widgets/gt_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_rect.h -------------------------------------------------------------------------------- /src/widgets/gt_roller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_roller.c -------------------------------------------------------------------------------- /src/widgets/gt_roller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_roller.h -------------------------------------------------------------------------------- /src/widgets/gt_select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_select.c -------------------------------------------------------------------------------- /src/widgets/gt_select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_select.h -------------------------------------------------------------------------------- /src/widgets/gt_slider.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_slider.c -------------------------------------------------------------------------------- /src/widgets/gt_slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_slider.h -------------------------------------------------------------------------------- /src/widgets/gt_status_bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_status_bar.c -------------------------------------------------------------------------------- /src/widgets/gt_status_bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_status_bar.h -------------------------------------------------------------------------------- /src/widgets/gt_switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_switch.c -------------------------------------------------------------------------------- /src/widgets/gt_switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_switch.h -------------------------------------------------------------------------------- /src/widgets/gt_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_table.c -------------------------------------------------------------------------------- /src/widgets/gt_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_table.h -------------------------------------------------------------------------------- /src/widgets/gt_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_template.c -------------------------------------------------------------------------------- /src/widgets/gt_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_template.h -------------------------------------------------------------------------------- /src/widgets/gt_textarea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_textarea.c -------------------------------------------------------------------------------- /src/widgets/gt_textarea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_textarea.h -------------------------------------------------------------------------------- /src/widgets/gt_view_pager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_view_pager.c -------------------------------------------------------------------------------- /src/widgets/gt_view_pager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_view_pager.h -------------------------------------------------------------------------------- /src/widgets/gt_widgets.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_widgets.mk -------------------------------------------------------------------------------- /src/widgets/gt_wordart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_wordart.c -------------------------------------------------------------------------------- /src/widgets/gt_wordart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/gt_wordart.h -------------------------------------------------------------------------------- /src/widgets/serial/gt_bit_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/serial/gt_bit_img.c -------------------------------------------------------------------------------- /src/widgets/serial/gt_bit_img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/serial/gt_bit_img.h -------------------------------------------------------------------------------- /src/widgets/serial/gt_widgets_serial.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/src/widgets/serial/gt_widgets_serial.mk -------------------------------------------------------------------------------- /test/gt_test.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/test/gt_test.mk -------------------------------------------------------------------------------- /test/gt_test_rand_widget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/test/gt_test_rand_widget.c -------------------------------------------------------------------------------- /test/gt_test_rand_widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaotongfont/GT-HMI-Engine/HEAD/test/gt_test_rand_widget.h --------------------------------------------------------------------------------