/lvgl-latest/demos/smartwatch/ |
D | lv_demo_smartwatch_settings.c | 78 lv_obj_t * panel = lv_obj_create(settings_list); in lv_demo_smartwatch_settings_add_slider() local 79 lv_obj_set_width(panel, lv_pct(85)); in lv_demo_smartwatch_settings_add_slider() 80 lv_obj_set_height(panel, 64); in lv_demo_smartwatch_settings_add_slider() 81 lv_obj_set_align(panel, LV_ALIGN_CENTER); in lv_demo_smartwatch_settings_add_slider() 82 lv_obj_remove_flag(panel, LV_OBJ_FLAG_SCROLLABLE); in lv_demo_smartwatch_settings_add_slider() 83 lv_obj_set_style_radius(panel, 0, LV_PART_MAIN | LV_STATE_DEFAULT); in lv_demo_smartwatch_settings_add_slider() 84 lv_obj_set_style_bg_color(panel, lv_color_hex(0x000000), LV_PART_MAIN | LV_STATE_DEFAULT); in lv_demo_smartwatch_settings_add_slider() 85 lv_obj_set_style_bg_opa(panel, 255, LV_PART_MAIN | LV_STATE_DEFAULT); in lv_demo_smartwatch_settings_add_slider() 86 lv_obj_set_style_border_color(panel, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT); in lv_demo_smartwatch_settings_add_slider() 87 lv_obj_set_style_border_opa(panel, 255, LV_PART_MAIN | LV_STATE_DEFAULT); in lv_demo_smartwatch_settings_add_slider() [all …]
|
D | lv_demo_smartwatch_list.c | 167 lv_obj_t * panel = lv_obj_create(app_list); in add_external_app() local 168 lv_obj_set_width(panel, lv_pct(90)); in add_external_app() 169 lv_obj_set_height(panel, 64); in add_external_app() 170 lv_obj_set_align(panel, LV_ALIGN_CENTER); in add_external_app() 171 lv_obj_remove_flag(panel, LV_OBJ_FLAG_SCROLLABLE); in add_external_app() 172 lv_obj_set_style_radius(panel, 0, LV_PART_MAIN | LV_STATE_DEFAULT); in add_external_app() 173 lv_obj_set_style_bg_color(panel, lv_color_hex(0x000000), LV_PART_MAIN | LV_STATE_DEFAULT); in add_external_app() 174 lv_obj_set_style_bg_opa(panel, 255, LV_PART_MAIN | LV_STATE_DEFAULT); in add_external_app() 175 lv_obj_set_style_border_color(panel, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT); in add_external_app() 176 lv_obj_set_style_border_opa(panel, 255, LV_PART_MAIN | LV_STATE_DEFAULT); in add_external_app() [all …]
|
D | lv_demo_smartwatch_weather.c | 130 lv_obj_t * panel = lv_obj_create(weather_forecast_daily); in lv_demo_smartwatch_weather_add_daily() local 131 lv_obj_set_width(panel, lv_pct(85)); in lv_demo_smartwatch_weather_add_daily() 132 lv_obj_set_height(panel, 40); in lv_demo_smartwatch_weather_add_daily() 133 lv_obj_set_align(panel, LV_ALIGN_CENTER); in lv_demo_smartwatch_weather_add_daily() 134 lv_obj_set_flex_flow(panel, LV_FLEX_FLOW_ROW); in lv_demo_smartwatch_weather_add_daily() 135 …lv_obj_set_flex_align(panel, LV_FLEX_ALIGN_SPACE_AROUND, LV_FLEX_ALIGN_CENTER, LV_FLEX_ALIGN_CENTE… in lv_demo_smartwatch_weather_add_daily() 136 lv_obj_remove_flag(panel, LV_OBJ_FLAG_SCROLLABLE); in lv_demo_smartwatch_weather_add_daily() 137 lv_obj_set_style_radius(panel, 0, LV_PART_MAIN | LV_STATE_DEFAULT); in lv_demo_smartwatch_weather_add_daily() 138 lv_obj_set_style_bg_color(panel, lv_color_hex(0x000000), LV_PART_MAIN | LV_STATE_DEFAULT); in lv_demo_smartwatch_weather_add_daily() 139 lv_obj_set_style_bg_opa(panel, 0, LV_PART_MAIN | LV_STATE_DEFAULT); in lv_demo_smartwatch_weather_add_daily() [all …]
|
/lvgl-latest/examples/scroll/ |
D | lv_example_scroll_1.c | 4 static lv_obj_t * panel; variable 19 lv_obj_get_scroll_x(panel), in scroll_update_cb() 20 lv_obj_get_scroll_y(panel), in scroll_update_cb() 21 lv_obj_get_scroll_top(panel), in scroll_update_cb() 22 lv_obj_get_scroll_bottom(panel), in scroll_update_cb() 23 lv_obj_get_scroll_left(panel), in scroll_update_cb() 24 lv_obj_get_scroll_right(panel) in scroll_update_cb() 33 saved_scroll_x = lv_obj_get_scroll_x(panel); in button_event_cb() 34 saved_scroll_y = lv_obj_get_scroll_y(panel); in button_event_cb() 37 lv_obj_scroll_to(panel, saved_scroll_x, saved_scroll_y, LV_ANIM_ON); in button_event_cb() [all …]
|
D | lv_example_scroll_2.c | 22 lv_obj_t * panel = lv_obj_create(lv_screen_active()); in lv_example_scroll_2() local 23 lv_obj_set_size(panel, 280, 120); in lv_example_scroll_2() 24 lv_obj_set_scroll_snap_x(panel, LV_SCROLL_SNAP_CENTER); in lv_example_scroll_2() 25 lv_obj_set_flex_flow(panel, LV_FLEX_FLOW_ROW); in lv_example_scroll_2() 26 lv_obj_align(panel, LV_ALIGN_CENTER, 0, 20); in lv_example_scroll_2() 30 lv_obj_t * btn = lv_button_create(panel); in lv_example_scroll_2() 44 lv_obj_update_snap(panel, LV_ANIM_ON); in lv_example_scroll_2() 50 lv_obj_add_event_cb(sw, sw_event_cb, LV_EVENT_ALL, panel); in lv_example_scroll_2()
|
/lvgl-latest/demos/scroll/ |
D | lv_demo_scroll.c | 40 lv_obj_t * panel = lv_obj_create(lv_screen_active()); in lv_demo_scroll() local 41 lv_obj_set_style_shadow_width(panel, 16, 0); in lv_demo_scroll() 42 lv_obj_set_style_shadow_offset_y(panel, 8, 0); in lv_demo_scroll() 43 lv_obj_set_style_shadow_offset_x(panel, 4, 0); in lv_demo_scroll() 44 lv_obj_set_style_shadow_opa(panel, LV_OPA_40, 0); in lv_demo_scroll() 46 lv_obj_set_size(panel, lv_pct(70), lv_pct(90)); in lv_demo_scroll() 47 lv_obj_center(panel); in lv_demo_scroll() 48 lv_obj_set_flex_flow(panel, LV_FLEX_FLOW_COLUMN); in lv_demo_scroll() 49 lv_obj_set_flex_align(panel, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_CENTER, LV_FLEX_ALIGN_CENTER); in lv_demo_scroll() 51 list = lv_list_create(panel); in lv_demo_scroll() [all …]
|
/lvgl-latest/examples/others/observer/ |
D | lv_example_observer_6.c | 109 lv_obj_t * panel = lv_obj_create(parent); in my_panel_create() local 110 lv_obj_remove_style_all(panel); in my_panel_create() 111 lv_obj_add_style(panel, &styles.style_main, 0); in my_panel_create() 112 lv_obj_add_style(panel, &styles.style_scrollbar, LV_PART_SCROLLBAR); in my_panel_create() 114 return panel; in my_panel_create()
|
/lvgl-latest/docs/details/integration/boards/ |
D | riverdi.rst | 32 - `RVT50HQSNWC00-B <https://riverdi.com/product/5-inch-lcd-display-capacitive-touch-panel-optical-b… 33 - `RVT50HQSNWC00 <https://riverdi.com/product/5-inch-lcd-display-capacitive-touch-panel-air-bonding… 34 - `RVT50HQSFWCA0 <https://riverdi.com/product/5-inch-lcd-display-capacitive-touch-panel-air-bonding… 35 - `RVT50HQSNWCA0 <https://riverdi.com/product/5-inch-lcd-display-capacitive-touch-panel-air-bonding…
|
/lvgl-latest/demos/benchmark/ |
D | lv_demo_benchmark.c | 818 lv_obj_t * panel = lv_obj_create(lv_screen_active()); in card_create() local 819 lv_obj_set_size(panel, 270, 120); in card_create() 820 lv_obj_set_style_pad_all(panel, 8, 0); in card_create() 823 lv_obj_t * child = lv_image_create(panel); in card_create() 827 child = lv_label_create(panel); in card_create() 832 child = lv_label_create(panel); in card_create() 837 child = lv_button_create(panel); in card_create() 843 return panel; in card_create()
|
/lvgl-latest/docs/details/other-components/ |
D | file_explorer.rst | 11 When enabled, there is also a "Quick-Access" panel on the left, which provides a 33 :ref:`lv_list` Widget for the "Quick-Access" panel when it is enabled. Thus, 36 non-zero value to use the "Quick-Access" panel. 130 The ``Quick-Access Panel`` behaves like a typical navigation panel and appears on the 133 This panel is optional. If you set :c:macro:`LV_FILE_EXPLORER_QUICK_ACCESS` to ``0``
|
/lvgl-latest/docs/details/integration/chip/ |
D | alif.rst | 52 side panel. 116 Install the following VS Code extensions from the "Extensions" side panel 180 it by either clicking the gear icon on the bottom bar or by navigating to the CMSIS panel 187 "First time pack installation". Click the play icon at the top of the CMSIS left side panel.
|
D | stm32.rst | 34 LCD panel), and initialise them in *main.c*. \* ``#include "lvgl.h"`` in 48 peripherals, and LCD panel, call :cpp:func:`lv_init` to initialise LVGL. 111 … callback function, ``my_flush_cb``, which will send the display buffer to your LCD panel. Below is
|
/lvgl-latest/docs/details/integration/driver/display/ |
D | renesas_glcdc.rst | 24 - Generates a dot clock to the panel. The clock source is selectable from internal or external (LCD…
|
D | lcd_stm32_guide.rst | 10 …ested on the STM32F746-based Nucleo-F746ZG board with an ST7789-based LCD panel connected via SPI.… 34 In this example we'll use the SPI1 peripheral to connect the microcontroller to the LCD panel. Besi… 96 #. Right click the project name and select "Properties". In the C/C++ Build/Settings panel select M…
|
D | gen_mipi.rst | 172 …is a flag array. This can be used to configure the orientation and RGB ordering of the panel if the 189 of the panel provides some example code with recommended register settings.
|
/lvgl-latest/docs/details/integration/driver/ |
D | windows.rst | 25 …igned for LVGL device-simulation scenario --- simulates LVGL rendering to a hardware display panel.
|
/lvgl-latest/docs/intro/add-lvgl-to-your-project/ |
D | configuration.rst | 21 the color depth used by your display panel. See comments in ``lv_conf.h`` for
|
D | connecting_lvgl.rst | 129 LVGL needs to be supplied with knowledge about each display panel you want it to use.
|
/lvgl-latest/docs/details/main-components/ |
D | draw.rst | 12 display panel as pixels. Sometimes it involves computing those colors before they
|
D | display.rst | 11 data type that represents a single display panel --- the hardware that displays 13 following for each display panel you want LVGL to use: 391 emitted to allow for hardware reconfiguration. If your display panel and/or its
|
/lvgl-latest/docs/intro/ |
D | basics.rst | 29 You create one :ref:`display` for each physical display panel, create
|
/lvgl-latest/docs/details/base-widget/ |
D | obj.rst | 406 of the display panel, and a menu is overlaid on a higher layer.
|
/lvgl-latest/docs/_static/css/ |
D | fontawesome.min.css | 5 …nowplow:before{content:"\f7d2"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f…
|
/lvgl-latest/docs/ |
D | Doxyfile | 1430 # value is set to YES, a side panel will be generated containing a tree-like
|