Home
last modified time | relevance | path

Searched full:settings (Results 1 – 25 of 67) sorted by relevance

123

/lvgl-latest/demos/high_res/
Dlv_demo_high_res_top_margin.c121 lv_obj_t * settings = create_settings(lv_layer_sys(), c); in lv_demo_high_res_top_margin_create() local
122 lv_obj_bind_flag_if_eq(settings, &c->top_margin_setting_subject, LV_OBJ_FLAG_HIDDEN, 0); in lv_demo_high_res_top_margin_create()
123 lv_obj_add_event_cb(settings_icon, delete_modal_cb, LV_EVENT_DELETE, settings); in lv_demo_high_res_top_margin_create()
128 lv_obj_align_to(settings, settings_icon, LV_ALIGN_OUT_BOTTOM_RIGHT, 0, 0); in lv_demo_high_res_top_margin_create()
218 lv_obj_t * settings = lv_obj_create(parent); in create_wifi() local
219 lv_obj_remove_style_all(settings); in create_wifi()
220 lv_obj_add_flag(settings, LV_OBJ_FLAG_FLOATING); in create_wifi()
221 lv_obj_set_style_bg_opa(settings, LV_OPA_COVER, 0); in create_wifi()
222 lv_obj_set_style_radius(settings, c->sz->gap[3], 0); in create_wifi()
223 lv_obj_set_size(settings, c->sz->settings_panel_width, LV_SIZE_CONTENT); in create_wifi()
[all …]
/lvgl-latest/src/libs/lodepng/
Dlodepng.h46 the custom_zlib field of the compress and decompress settings*/
318 /*Settings for zlib decompression*/
344 const void * custom_context; /*optional custom settings for custom functions*/
348 void lodepng_decompress_settings_init(LodePNGDecompressSettings * settings);
353 Settings for zlib compression. Tweaking these settings tweaks the balance
358 /*LZ77 related settings*/
377 const void * custom_context; /*optional custom settings for custom functions*/
381 void lodepng_compress_settings_init(LodePNGCompressSettings * settings);
405 When decoding, with the default settings you can ignore this palette, since
733 Settings for the decoder. This contains settings for the PNG and the Zlib
[all …]
Dlodepng.c1427 const LodePNGDecompressSettings * settings) in inflateNoCompression() argument
1444 if(!settings->ignore_nlen && LEN + NLEN != 65535) { in inflateNoCompression()
1466 const LodePNGDecompressSettings * settings) in lodepng_inflatev() argument
1482 else if(BTYPE == 0) error = inflateNoCompression(out, &reader, settings); /*no compression*/ in lodepng_inflatev()
1483 …else error = inflateHuffmanBlock(out, &reader, BTYPE, settings->max_output_size); /*compression, B… in lodepng_inflatev()
1484 … if(!error && settings->max_output_size && out->size > settings->max_output_size) error = 109; in lodepng_inflatev()
1493 const LodePNGDecompressSettings * settings) in lodepng_inflate() argument
1496 unsigned error = lodepng_inflatev(&v, in, insize, settings); in lodepng_inflate()
1503 const LodePNGDecompressSettings * settings) in inflatev() argument
1505 if(settings->custom_inflate) { in inflatev()
[all …]
/lvgl-latest/demos/smartwatch/
Dlv_demo_smartwatch.h183 * Set the callback function for settings actions
248 * Add a slider to the main settings list
262 * Add a toggle switch to the main settings list
272 * Add a dropdowwn to the main settings list
283 * Add a label to the main settings list
298 * Set the default brightness for the smartwatch demo settings
304 * Set the default timeout for the smartwatch demo settings
310 * Set the default rotation for the smartwatch demo settings
316 * Set the default circular scroll for the smartwatch demo settings
322 * Set the default alert state for the smartwatch demo settings
[all …]
Dlv_demo_smartwatch_settings.h33 * Create the settings page. Called only once.
38 * Load the settings screen
46 * Add a slider to the main settings list
60 * Add a toggle switch to the main settings list
70 * Add a dropdowwn to the main settings list
81 * Add a label to the main settings list
90 * Set the callback function for settings actions
Dlv_demo_smartwatch_settings.c3 * Settings screen layout & functions. Contains basic settings for smartwatch.
370 LV_LOG_WARN("Settings actions event triggered, settings screen %s, Manually triggered %s", in settings_action_event_cb()
376 LV_LOG_WARN("Settings actions event triggered but the current screen is no longer active"); in settings_action_event_cb()
409 /* handle actions for the inbuilt settings */ in settings_action_event_cb()
/lvgl-latest/docs/details/integration/driver/display/
Dlcd_stm32_guide.rst62 #. In the Advanced Settings tab enable USE_NEWLIB_REENTRANT. We are finished here.
66 #. In the Configuration subwindow switch to Parameter Settings.
70 #. In DMA Settings add a new Request for SPI1_TX (when using SPI1).
72 #. In NVIC Settings enable SPI1 global interrupt.
73 #. In GPIO Settings set SPI1_SCK to Pull-down and Very High output speed and set the User Label to …
79 #. Open the Project Manager tab, and select Advanced Settings. On the right hand side there is a Re…
96 #. Right click the project name and select "Properties". In the C/C++ Build/Settings panel select M…
251 …tween the required memory size and performance, but you are free to experiment with other settings.
Dgen_mipi.rst173 default settings do not work for you. In particular, the generic MIPI driver accepts the following …
189 of the panel provides some example code with recommended register settings.
/lvgl-latest/docs/details/integration/chip/
Dalif.rst136 "Preferences: Open User Settings (JSON)" from the choices.
137 A ``settings.json`` will open. Note: if using a Docker container,
139 ``.vscode/settings.json``.
144 If your ``settings.json`` looks like this initially...
/lvgl-latest/
DKconfig15 menu "Color Settings"
43 menu "Memory Settings"
112 menu "HAL Settings"
767 menu "Compiler Settings"
961 menu "Text Settings"
2015 bool "Scroll settings test for LVGL"
Dlv_conf_template.h26 COLOR SETTINGS
33 STDLIB WRAPPER SETTINGS
87 HAL SETTINGS
494 * COMPILER SETTINGS
607 * TEXT SETTINGS
1284 /** Demonstrate scroll settings */
/lvgl-latest/env_support/cmsis-pack/
Dlv_conf_cmsis.h20 COLOR SETTINGS
30 STDLIB WRAPPER SETTINGS
84 HAL SETTINGS
473 * COMPILER SETTINGS
586 * TEXT SETTINGS
DREADME.md154 11. Add the following code to `HAL SETTINGS`:
200 14. Add the following macro definition to **COLOR SETTINGS** section:
/lvgl-latest/docs/details/base-widget/
Dcoord.rst315 The size settings support a special value: :c:macro:`LV_SIZE_CONTENT`. It means
540 width, and height settings.
544 For further settings of the parent and children see the documentation of
/lvgl-latest/src/
Dlv_conf_internal.h88 COLOR SETTINGS
101 STDLIB WRAPPER SETTINGS
239 HAL SETTINGS
1406 * COMPILER SETTINGS
1807 * TEXT SETTINGS
4146 /** Demonstrate scroll settings */
/lvgl-latest/demos/ebike/
Dlv_demo_ebike_settings.h33 * Create the settings page
34 * @param parent the parent of the settings page
/lvgl-latest/env_support/rt-thread/
Dlv_rt_thread_conf.h20 STDLIB WRAPPER SETTINGS
55 * COMPILER SETTINGS
/lvgl-latest/docs/intro/add-lvgl-to-your-project/
Dconfiguration.rst51 from ``lv_conf.h`` or build settings (``-D...``) override the values
58 Configuration Settings
/lvgl-latest/docs/details/integration/framework/
Darduino.rst88 section ``log settings``:
92 /* Log settings */
/lvgl-latest/src/misc/
Dlv_text.h81 * @param flag settings for the text from ::lv_text_flag_t
106 * @param flags settings for the text from ::lv_text_flag_t
/lvgl-latest/demos/
DREADME.md45 /* Demonstrate scroll settings */
146 A demo to measure the performance of LVGL or to compare different settings.
/lvgl-latest/docs/details/integration/os/yocto/
Dcore_components.rst19 - *Configuration Data:* Defines machine-specific settings, policy
99 which contains common settings for any application that is built with
/lvgl-latest/docs/_ext/
Dlv_example.py36 env = self.state.document.settings.env
66 env = self.state.document.settings.env
/lvgl-latest/demos/ebike/translations/
Dlv_i18n.c75 {"SETTINGS", "الإعدادات"},
120 {"SETTINGS", "设置"},
/lvgl-latest/src/libs/thorvg/rapidjson/error/
Derror.h36 unicode/non-unicode settings.
49 unicode/non-unicode settings.

123