Home
last modified time | relevance | path

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

/lvgl-latest/examples/others/snapshot/
Dlv_example_snapshot_1.c37 lv_obj_t * container = lv_obj_create(root); in lv_example_snapshot_1() local
39 lv_obj_center(container); in lv_example_snapshot_1()
40 lv_obj_set_size(container, 180, 180); in lv_example_snapshot_1()
41 lv_obj_set_flex_flow(container, LV_FLEX_FLOW_ROW_WRAP); in lv_example_snapshot_1()
42 …lv_obj_set_flex_align(container, LV_FLEX_ALIGN_SPACE_EVENLY, LV_FLEX_ALIGN_CENTER, LV_FLEX_ALIGN_C… in lv_example_snapshot_1()
43 lv_obj_set_style_radius(container, 50, 0); in lv_example_snapshot_1()
47 img = lv_image_create(container); in lv_example_snapshot_1()
/lvgl-latest/src/others/fragment/
Dlv_fragment_manager.c51 lv_obj_t * const * container);
110 …anager_add(lv_fragment_manager_t * manager, lv_fragment_t * fragment, lv_obj_t * const * container) in lv_fragment_manager_add() argument
112 lv_fragment_managed_states_t * states = fragment_attach(manager, fragment, container); in lv_fragment_manager_add()
153 …nager_push(lv_fragment_manager_t * manager, lv_fragment_t * fragment, lv_obj_t * const * container) in lv_fragment_manager_push() argument
159 lv_fragment_managed_states_t * states = fragment_attach(manager, fragment, container); in lv_fragment_manager_push()
177 lv_obj_t * const * container) in lv_fragment_manager_replace() argument
179 lv_fragment_t * top = lv_fragment_manager_find_by_container(manager, *container); in lv_fragment_manager_replace()
183 lv_fragment_manager_add(manager, fragment, container); in lv_fragment_manager_replace()
214 … lv_fragment_manager_find_by_container(lv_fragment_manager_t * manager, const lv_obj_t * container) in lv_fragment_manager_find_by_container() argument
219 if(*states->container == container) return states->instance; in lv_fragment_manager_find_by_container()
[all …]
Dlv_fragment.h84 lv_obj_t * (*create_obj_cb)(lv_fragment_t * self, lv_obj_t * container);
158 …nager_add(lv_fragment_manager_t * manager, lv_fragment_t * fragment, lv_obj_t * const * container);
173 …ager_push(lv_fragment_manager_t * manager, lv_fragment_t * fragment, lv_obj_t * const * container);
189 lv_obj_t * const * container);
220 …lv_fragment_manager_find_by_container(lv_fragment_manager_t * manager, const lv_obj_t * container);
272 lv_obj_t * lv_fragment_create_obj(lv_fragment_t * fragment, lv_obj_t * container);
Dlv_fragment.c69 return fragment->managed->container; in lv_fragment_get_container()
79 lv_obj_t * lv_fragment_create_obj(lv_fragment_t * fragment, lv_obj_t * container) in lv_fragment_create_obj() argument
86 lv_obj_t * obj = cls->create_obj_cb(fragment, container); in lv_fragment_create_obj()
142 lv_fragment_create_obj(fragment, *fragment->managed->container); in lv_fragment_recreate_obj()
Dlv_fragment_private.h44 lv_obj_t * const * container; member
/lvgl-latest/examples/others/fragment/
Dlv_example_fragment_2.c34 static lv_obj_t * container = NULL; variable
44 container = lv_obj_create(root); in lv_example_fragment_2()
45 lv_obj_remove_style_all(container); in lv_example_fragment_2()
46 lv_obj_set_grid_cell(container, LV_GRID_ALIGN_STRETCH, 0, 2, LV_GRID_ALIGN_STRETCH, 0, 1); in lv_example_fragment_2()
64 lv_fragment_manager_push(manager, fragment, &container); in lv_example_fragment_2()
104 lv_fragment_manager_push(manager, fragment, &container); in sample_push_click()
/lvgl-latest/docs/details/widgets/
Dmenu.rst22 - Main container: :cpp:type:`lv_menu_main_cont`
27 - Sidebar container: :cpp:type:`lv_menu_sidebar_cont`
92 Create a Menu container, section, separator
98 - :cpp:expr:`lv_menu_cont_create(parent_page)` creates a new empty container.
112 that is currently displayed in the main container.
114 Page that is currently displayed in the sidebar container.
Dwin.rst44 - Background (a :ref:`base_widget`, the main window container), is set up to be a
45 Flex-Flow container that flows its contained Widgets vertically
48 - Header (like a title bar) is initially empty, and is a Flex-Flow container set up
55 *not itself* a Flex-Flow container, but you can make it so if you wish. See
92 :cpp:expr:`lv_win_get_content(win)` returns a pointer to the content container
Dtabview.rst14 - Main container: :ref:`base_widget`
87 - :cpp:expr:`lv_tabview_get_content(tabview)` returns a pointer to the container for
89 - :cpp:expr:`lv_tabview_get_tab_bar(tabview)` returns a pointer to the container for
Dtileview.rst11 The Tile View is a container Widget whose elements (called *tiles*) can
26 The Tile View is built from a :ref:`base_widget` container and
Dmsgbox.rst58 function adds a footer (container) if one was not already present, and it returns a
Dchart.rst315 To zoom the chart all you need to do is wrap it in a parent container and set the
317 to be scrollable in its parent --- the parent container provides the scrollable "view
/lvgl-latest/docs/details/integration/os/
Dtorizon_os.rst56 To build a Torizon container Docker ARM emulation needs to be enabled
106 # Directory of the application inside container
139 # path inside the container
142 # Command executed during runtime when the container starts
170 Deploying the container image to the device
176 …x.com/torizon/application-development/working-with-containers/deploying-container-images-to-torizo…
178 For this guide, we are going to setup a Docker registry container on the development host
186 The ``-d`` flag runs the container in detached mode. The ``-p`` argument specifies the port mapping.
187 The registry container will listen on port ``TCP/5000`` and will map to the same port externally.
195 By default a local container registry uses clear text HTTP so the Docker instance
[all …]
/lvgl-latest/docs/details/base-widget/layouts/
Dgrid.rst20 To make a Widget a Grid container call :cpp:expr:`lv_obj_set_layout(widget, LV_LAYOUT_GRID)`.
32 to fill the remaining space in the parent Widget (container), in proportion with
45 As with Flex containers, the parent Widget must be a Grid container for these
47 Grid container if it is not already.
114 between edge items and the container's edge. Does not apply to ``track_cross_place``.
116 evenly distributed in the track with first and last items next to container's edges.
132 track size from the parent Grid container.
177 properties can be set on the Grid container style:
193 If the base direction of the container is set to :cpp:enumerator:`LV_BASE_DIR_RTL`,
Dflex.rst19 To make a Widget a Flex container call
51 The parent Widget must be a Flex container for these styles to take effect.
52 The functions below cause the parent Widget to become a Flex container if it is
86 which makes the parent Widget model the Flex-container behavior defined `here
111 between edge items and the container's edge. Does not apply to
166 following functions can be used to set the flex container padding style:
185 If the base direction of the container is set the
/lvgl-latest/docs/details/other-components/
Dgridnav.rst34 If the container is scrollable and the focused child is out of the view,
44 To add gridnav behavior to any Widget (e.g. one serving as a container for
46 :cpp:expr:`lv_gridnav_add(container, flags)`.
67 :cpp:expr:`lv_gridnav_remove(container)` Removes gridnav behavior from a Widget.
Dfragment.rst60 /* Create fragment instance, and Widgets will be added to container */
61 lv_fragment_manager_t *manager = lv_fragment_manager_create(container, NULL);
/lvgl-latest/.devcontainer/
Ddevcontainer.json13 // Add the IDs of extensions you want installed when the container is created.
/lvgl-latest/docs/_ext/
Dlv_example.py40 toggle = nodes.container('', literal_block=False, classes=['toggle'])
41 header = nodes.container('', literal_block=False, classes=['header'])
/lvgl-latest/docs/details/integration/chip/
Dalif.rst43 …g steps can **optionally** be done inside a Docker container. You can connect to the Docker contai…
44 as a VS Code remote dev container.
48container, include ``--device /dev/ttyACM0 --device /dev/ttyACM1`` to give the container access to…
51 …Install the "Dev Containers" VS Code extension. Select your container from the "Remote Explorer" o…
137 A ``settings.json`` will open. Note: if using a Docker container,
/lvgl-latest/docs/_static/css/
Dcustom.css89 .lv-example-container {
/lvgl-latest/docs/
Ddoc_builder.py1598 for container in (
1608 for n, o in container.items():
DCODING_STYLE.rst162 * @param obj pointer to flex container. It must have
/lvgl-latest/docs/details/base-widget/
Dobj.rst146 A parent Widget can be considered as the container of its children. Every Widget has
590 … A child's position has changed due to a layout recalculation (when container has flex or grid…
Dcoord.rst47 percent* so that if/when the size of the parent container (or