Home
last modified time | relevance | path

Searched refs:section (Results 1 – 25 of 48) sorted by relevance

12

/lvgl-latest/examples/widgets/menu/
Dlv_example_menu_5.c36 lv_obj_t * section; in lv_example_menu_5() local
42 section = lv_menu_section_create(sub_mechanics_page); in lv_example_menu_5()
43 create_slider(section, LV_SYMBOL_SETTINGS, "Velocity", 0, 150, 120); in lv_example_menu_5()
44 create_slider(section, LV_SYMBOL_SETTINGS, "Acceleration", 0, 150, 50); in lv_example_menu_5()
45 create_slider(section, LV_SYMBOL_SETTINGS, "Weight limit", 0, 150, 80); in lv_example_menu_5()
50 section = lv_menu_section_create(sub_sound_page); in lv_example_menu_5()
51 create_switch(section, LV_SYMBOL_AUDIO, "Sound", false); in lv_example_menu_5()
56 section = lv_menu_section_create(sub_display_page); in lv_example_menu_5()
57 create_slider(section, LV_SYMBOL_SETTINGS, "Brightness", 0, 150, 100); in lv_example_menu_5()
61 section = lv_menu_section_create(sub_software_info_page); in lv_example_menu_5()
[all …]
/lvgl-latest/tests/src/test_cases/widgets/
Dtest_scale.c118 lv_scale_section_t * section = lv_scale_add_section(scale); in test_scale_render_example_2() local
120 lv_scale_section_set_range(section, 75, 100); in test_scale_render_example_2()
121 lv_scale_section_set_style(section, LV_PART_INDICATOR, &section_label_style); in test_scale_render_example_2()
122 lv_scale_section_set_style(section, LV_PART_ITEMS, &section_minor_tick_style); in test_scale_render_example_2()
123 lv_scale_section_set_style(section, LV_PART_MAIN, &section_main_line_style); in test_scale_render_example_2()
236 lv_scale_section_t * section = lv_scale_add_section(scale); in test_scale_render_example_4() local
237 lv_scale_section_set_range(section, 75, 100); in test_scale_render_example_4()
238 lv_scale_section_set_style(section, LV_PART_INDICATOR, &section_label_style); in test_scale_render_example_4()
239 lv_scale_section_set_style(section, LV_PART_ITEMS, &section_minor_tick_style); in test_scale_render_example_4()
240 lv_scale_section_set_style(section, LV_PART_MAIN, &section_main_line_style); in test_scale_render_example_4()
[all …]
/lvgl-latest/src/widgets/scale/
Dlv_scale.c338 lv_scale_section_t * section = lv_ll_ins_head(&scale->section_ll); in lv_scale_add_section() local
339 LV_ASSERT_MALLOC(section); in lv_scale_add_section()
340 if(section == NULL) return NULL; in lv_scale_add_section()
343 lv_memzero(section, sizeof(lv_scale_section_t)); in lv_scale_add_section()
344 section->first_tick_idx_in_section = LV_SCALE_TICK_IDX_DEFAULT_ID; in lv_scale_add_section()
345 section->last_tick_idx_in_section = LV_SCALE_TICK_IDX_DEFAULT_ID; in lv_scale_add_section()
348 section->range_max = -1; in lv_scale_add_section()
350 return section; in lv_scale_add_section()
353 void lv_scale_section_set_range(lv_scale_section_t * section, int32_t min, int32_t max) in lv_scale_section_set_range() argument
355 if(NULL == section) return; in lv_scale_section_set_range()
[all …]
Dlv_scale.h212 void lv_scale_section_set_range(lv_scale_section_t * section, int32_t min, int32_t max);
220 void lv_scale_section_set_style(lv_scale_section_t * section, lv_part_t part, lv_style_t * section_…
/lvgl-latest/src/others/xml/
Dlv_xml_parser.c55 state->section = LV_XML_PARSER_SECTION_API; in lv_xml_parser_start_section()
59 state->section = LV_XML_PARSER_SECTION_CONSTS; in lv_xml_parser_start_section()
63 state->section = LV_XML_PARSER_SECTION_STYLES; in lv_xml_parser_start_section()
67 state->section = LV_XML_PARSER_SECTION_VIEW; in lv_xml_parser_start_section()
80 state->section = LV_XML_PARSER_SECTION_NONE; in lv_xml_parser_end_section()
Dlv_xml_component.c242 lv_xml_parser_section_t old_section = state->section; in start_metadata_handler()
263 if(old_section != state->section) return; /*Ignore the section opening, e.g. <styles>*/ in start_metadata_handler()
266 switch(state->section) { in start_metadata_handler()
Dlv_xml_parser.h46 lv_xml_parser_section_t section; member
/lvgl-latest/examples/widgets/scale/
Dlv_example_scale_4.c76 lv_scale_section_t * section = lv_scale_add_section(scale); in lv_example_scale_4() local
77 lv_scale_section_set_range(section, 75, 100); in lv_example_scale_4()
78 lv_scale_section_set_style(section, LV_PART_INDICATOR, &section_label_style); in lv_example_scale_4()
79 lv_scale_section_set_style(section, LV_PART_ITEMS, &section_minor_tick_style); in lv_example_scale_4()
80 lv_scale_section_set_style(section, LV_PART_MAIN, &section_main_line_style); in lv_example_scale_4()
Dlv_example_scale_2.c76 lv_scale_section_t * section = lv_scale_add_section(scale); in lv_example_scale_2() local
77 lv_scale_section_set_range(section, 75, 100); in lv_example_scale_2()
78 lv_scale_section_set_style(section, LV_PART_INDICATOR, &section_label_style); in lv_example_scale_2()
79 lv_scale_section_set_style(section, LV_PART_ITEMS, &section_minor_tick_style); in lv_example_scale_2()
80 lv_scale_section_set_style(section, LV_PART_MAIN, &section_main_line_style); in lv_example_scale_2()
Dlv_example_scale_5.c72 lv_scale_section_t * section = lv_scale_add_section(scale); in lv_example_scale_5() local
73 lv_scale_section_set_range(section, 25, 30); in lv_example_scale_5()
74 lv_scale_section_set_style(section, LV_PART_INDICATOR, &section_label_style); in lv_example_scale_5()
75 lv_scale_section_set_style(section, LV_PART_ITEMS, &section_minor_tick_style); in lv_example_scale_5()
Dindex.rst7 An vertical scale with section and custom styling
19 A round scale with section and custom styling
25 A scale with section and custom styling
/lvgl-latest/docs/_static/js/
Dcustom.js30 const section = document.querySelector('.wy-nav-content-wrap');
35 section.insertBefore(newDiv, section.firstChild);
/lvgl-latest/docs/details/widgets/
Dscale.rst178 Next, set the range using :cpp:expr:`lv_scale_section_set_range(section, min, max)`
184 :cpp:expr:`lv_scale_section_set_range(section, 0, -1)`.)
193 for each "section" you want to appear different than the parent Scale. Add style
197 :cpp:expr:`lv_scale_section_set_style(section, PART, style_pointer)`, where:
216 lv_scale_section_set_style(section, LV_PART_ITEMS, &tick_style);
217 lv_scale_section_set_style(section, LV_PART_INDICATOR, &tick_style);
227 lv_scale_section_set_style(section, LV_PART_INDICATOR, &tick_style_1);
228 lv_scale_section_set_style(section, LV_PART_INDICATOR, &tick_style_2);
Dmenu.rst92 Create a Menu container, section, separator
99 - :cpp:expr:`lv_menu_section_create(parent_page)` creates a new empty section.
Dcanvas.rst45 list in the :ref:`Color formats <overview_image_color_formats>` section.
/lvgl-latest/docs/intro/add-lvgl-to-your-project/
Dbuilding_lvgl.rst21 For integration with CMake take a look this section of the
Dtimer_handler.rst59 See :ref:`timer` section to learn more about timers.
/lvgl-latest/docs/details/integration/os/yocto/
Dindex.rst16 This section objective is to ease to process of understanding the basic
Dcore_components.rst8 form the OpenEmbedded-Core (OE-Core). This section overviews these components
37 This section briefly introduces BitBake. If you want more information on
60 bitbake-user-manual-execution.html#preferences>`_" section of the BitBake User
148 layers.html#understanding-and-creating-layers>`_" section of the
/lvgl-latest/demos/widgets/
Dlv_demo_widgets.c830 lv_scale_section_t * section; in analytics_create() local
831 section = lv_scale_add_section(scale3); in analytics_create()
832 lv_scale_section_set_range(section, 0, 20); in analytics_create()
833 lv_scale_section_set_style(section, LV_PART_MAIN, &scale3_section1_main_style); in analytics_create()
834 lv_scale_section_set_style(section, LV_PART_INDICATOR, &scale3_section1_indicator_style); in analytics_create()
835 lv_scale_section_set_style(section, LV_PART_ITEMS, &scale3_section1_tick_style); in analytics_create()
836 section = lv_scale_add_section(scale3); in analytics_create()
837 lv_scale_section_set_range(section, 20, 40); in analytics_create()
838 lv_scale_section_set_style(section, LV_PART_MAIN, &scale3_section2_main_style); in analytics_create()
839 lv_scale_section_set_style(section, LV_PART_INDICATOR, &scale3_section2_indicator_style); in analytics_create()
[all …]
/lvgl-latest/docs/
DREADME.md127 ##### When "link text" should be a title or section heading from the target document:
133section heading just below the **link target**. For this reason, when using this syntax, `{LINK N…
152 …tml#sections) are created by underlining (and optionally overlining) the section title with a punc…
187 For improved readability in the .RST file, place at least 2 blank lines above section headings.
/lvgl-latest/env_support/cmsis-pack/
DREADME.md98 8. Remove following macro definitions in the `3rd party libraries` section:
200 14. Add the following macro definition to **COLOR SETTINGS** section:
/lvgl-latest/docs/details/integration/os/buildroot/
Dlvgl_app.rst4 This section provides information about the steps to follow to get a custom
25 In the ``Search Results`` window, the ``Depends on`` section lists the required
/lvgl-latest/docs/intro/
Dintroduction.rst172 Before posting a question, please read this FAQ section since you might find the answer to your iss…
203 See the :ref:`display` section to learn more.
232 "*display flush callback*" as per :ref:`flush_callback` section.
302 progress. There are several ways to do this. See the :ref:`threading` section to
/lvgl-latest/src/drivers/display/renesas_glcdc/
Dlv_renesas_glcdc.c71section(".framebuffer"), aligned(64), used));

12