Home
last modified time | relevance | path

Searched full:main (Results 1 – 25 of 79) sorted by relevance

1234

/lvgl-latest/demos/widgets/
Dlv_demo_widgets.py145 h.add_style(lv.cont.PART.MAIN, style_box)
148 h.set_style_local_value_str(lv.cont.PART.MAIN, lv.STATE.DEFAULT, "Basics")
212 h.set_style_local_value_str(lv.cont.PART.MAIN, lv.STATE.DEFAULT, "Text input")
255 chart.set_style_local_value_str(lv.cont.PART.MAIN, lv.STATE.DEFAULT, "Line chart")
301 chart2.set_style_local_value_str(lv.cont.PART.MAIN, lv.STATE.DEFAULT, "Column chart")
347 lmeter.add_style(lv.linemeter.PART.MAIN, style_box)
348 lmeter.set_style_local_value_str(lv.linemeter.PART.MAIN, lv.STATE.DEFAULT, "Line meter")
352 … label.set_style_local_text_font(lv.label.PART.MAIN, lv.STATE.DEFAULT, lv.theme_get_font_title());
366 gauge.add_style(lv.gauge.PART.MAIN, style_box)
367 gauge.set_style_local_value_str(lv.gauge.PART.MAIN, lv.STATE.DEFAULT, "Gauge")
[all …]
/lvgl-latest/docs/widgets/extra/
Dmenu.md8 - Main container: lv_menu_main_cont
9 - Main header: lv_menu_main_header_cont
12 - Main page: lv_menu_page
43 ### Set a menu page in the main area
44 …age has been created, you can set it to the main area with `lv_menu_set_page(menu, page)`. NULL to…
50 For instance, you have created a btn obj in the main page. When you click the btn obj, you want it …
63 …v_menu_get_cur_main_page(menu)` returns a pointer to menu page that is currently displayed in main.
65 - `LV_EVENT_CLICKED` Sent when a back btn in a header from either main or sidebar is clicked. `LV_O…
Dled.md8 The LEDs have only one main part, called `LV_LED_PART_MAIN` and it uses all the typical background …
24 …- `LV_LED_DRAW_PART_RECTANGLE` The main rectangle. `LV_OBJ_DRAW_PART_RECTANGLE` is not sent by the…
/lvgl-latest/examples/anim/
Dlv_example_anim_3.py23 self.cont.set_style_pad_all(2, lv.PART.MAIN)
24 self.cont.set_style_pad_column(10, lv.PART.MAIN)
25 self.cont.set_style_pad_row(10, lv.PART.MAIN)
34 … end = self.cont.get_style_width(lv.PART.MAIN) - self.anim_obj.get_style_width(lv.PART.MAIN) - 10
46 self.anim_obj.set_style_bg_color(lv.palette_main(lv.PALETTE.RED), lv.PART.MAIN)
75 self.chart.set_style_pad_all(0, lv.PART.MAIN)
113 var.set_style_translate_x(v, lv.PART.MAIN)
/lvgl-latest/src/extra/widgets/menu/
Dlv_menu.h53 lv_obj_t * main; member
131 * Set menu page to display in main
133 * @param page pointer to the menu page to set (NULL to clear main and clear menu history)
170 * Get a pointer to menu page that is currently displayed in main
184 * Get a pointer to main header obj
186 * @return pointer to main header obj
191 * Get a pointer to main header back btn obj
193 * @return pointer to main header back btn obj
Dlv_menu.c216 /* Place page in main */ in lv_menu_set_page()
217 lv_obj_set_parent(page, menu->main); in lv_menu_set_page()
503 menu->main = main_cont; in lv_menu_constructor()
/lvgl-latest/tests/
DREADME.md16 1. Run all executable tests with `./tests/main.py test`.
17 2. Build all build-only tests with `./tests/main.py build`.
20 report `./tests/main.py --clean --report build test`.
22 For full information on running tests run: `./tests/main.py --help`.
34 - `report` - Coverage report. Generated if the `report` flag was passed to `./main.py`
/lvgl-latest/tests/src/test_cases/
Dtest_bar.c29 * Bar has two parts, main and indicator, coordinates of the latter are
32 * - Bar (main part) padding
85 * Bar has two parts, main and indicator, coordinates of the latter are
88 * - Bar (main part) padding
/lvgl-latest/tests/unity/
Dgenerate_test_runner.rb41 main_name: 'main', # set to :auto to automatically generate each time
365 output.puts("\n/*=======MAIN=====*/")
368 if main_name != 'main'
397 if main_name != 'main'
495 ' --main_name="" - redefine main func name to something else',
/lvgl-latest/docs/overview/
Ddrawing.md11 This approach has two main advantages compared to directly drawing to the display:
18 The main difference is that with LVGL you don't have to store two frame buffers (which usually requ…
109 ### Main drawing
126 Called when the main drawing is finished. You can draw anything here as well and it's also a good p…
Devent.md91 - `LV_EVENT_DRAW_MAIN_BEGIN` Starting the main drawing phase.
92 - `LV_EVENT_DRAW_MAIN` Perform the main drawing
93 - `LV_EVENT_DRAW_MAIN_END` Finishing the main drawing phase
Dobject.md182 …a [Base object](/widgets/obj) uses the main and scrollbar parts but a [Slider](/widgets/core/slide…
196 The main purpose of parts is to allow styling the "components" of the widgets.
Dcolor.md40 …aterial-colors) of colors. In this system all named colors have a nominal main color as well as fo…
64 To get the main color use `lv_color_t c = lv_palette_main(LV_PALETTE_...)`.
/lvgl-latest/.github/workflows/
Dccpp.yml29 run: python tests/main.py --build-option=${{ matrix.build_option }} build
45 run: python tests/main.py --report test
109 env PATH="/usr/lib/ccache:$PATH" ASAN_OPTIONS=detect_leaks=0 python3 tests/main.py test
/lvgl-latest/docs/layouts/
Dflex.md16 - main direction: row or column, the direction in which the items are placed
17 - cross direction: perpendicular to the main direction
44 - `main_place` determines how to distribute the items in their track on the main axis. E.g. flush t…
/lvgl-latest/src/widgets/
Dlv_slider.h59 LV_SLIDER_DRAW_PART_KNOB, /**< The main (right) knob's rectangle*/
126 * Get the value of the main knob of a slider
128 * @return the value of the main knob of the slider
/lvgl-latest/src/core/
Dlv_obj_style.h83 …lv_obj_remove_style(obj, NULL, LV_PART_MAIN | LV_STATE_ANY); //Remove all styles from the main part
248 … part the part whose opacity should be get. Non-MAIN parts will consider the `opa` of teh MAI…
Dlv_event.h57 LV_EVENT_DRAW_MAIN_BEGIN, /**< Starting the main drawing phase*/
58 LV_EVENT_DRAW_MAIN, /**< Perform the main drawing*/
59 LV_EVENT_DRAW_MAIN_END, /**< Finishing the main drawing phase*/
/lvgl-latest/examples/widgets/label/
Dlv_example_label_2.py15 # Create the main label
25 # Position the main label
Dlv_example_label_2.c19 /*Create the main label*/ in lv_example_label_2()
29 /*Position the main label*/ in lv_example_label_2()
/lvgl-latest/examples/widgets/roller/
Dlv_example_roller_3.py66 font = obj.get_style_text_font(lv.PART.MAIN)
67 line_space = obj.get_style_text_line_space(lv.PART.MAIN)
/lvgl-latest/demos/
DREADME.md45 //! main.c
96 …n and coding style guidelines, please refer to the file docs/CONTRIBUTING.md in the main LVGL repo:
/lvgl-latest/src/extra/layouts/flex/
Dlv_flex.h87 …* @param main_place where to place the items on main axis (in their track). Any value of `lv_flex_…
95 * Sets the width or height (on main axis) to grow the object in order fill the free space
/lvgl-latest/docs/get-started/platforms/
Drenesas.md2main/projects/hmi-board-lvgl) for the supported motherboard and you’ll be on your way to creating …
/lvgl-latest/docs/
DCHANGELOG.md521 - fix(draw): revert handling of style_opa on not MAIN parts [`51a7a61`](https://github.com/lvgl/lvg…
966 - feat(obj) send LV_EVENT_DRAW_PART_BEGIN/END for MAIN and SCROLLBAR parts [`b203167`](https://gith…
1082 - fix(cmake) require 'main' for Micropython [`2444`](https://github.com/lvgl/lvgl/pull/2444)
1084 - fix(build) remove main component dependency [`2420`](https://github.com/lvgl/lvgl/pull/2420)
1266 - fix(build) remove main component dependency (#2420) [`f2c2393`](https://github.com/lvgl/lvgl/comm…
1392 - docs add libs to the main index [`1a8fed5`](https://github.com/lvgl/lvgl/commit/1a8fed5df02545fe9…
1660 …tion example [here](https://github.com/lvgl/lv_sim_eclipse_sdl/blob/release/v8.0/main.c#L128-L141).
1858 The main new features of v7.4 are run-time font loading, style caching and arc knob with value sett…

1234