/lvgl-latest/src/libs/thorvg/ |
D | tvgSvgSceneBuilder.cpp | 729 if (node->node.use.symbol) { in _useBuildHelper() 730 auto symbol = node->node.use.symbol->node.symbol; in _useBuildHelper() local 732 auto width = (symbol.hasWidth ? symbol.w : vBox.w); in _useBuildHelper() 734 auto height = (symbol.hasHeight ? symbol.h : vBox.h);; in _useBuildHelper() 736 auto vw = (symbol.hasViewBox ? symbol.vw : width); in _useBuildHelper() 737 auto vh = (symbol.hasViewBox ? symbol.vh : height); in _useBuildHelper() 741 Box box = {symbol.vx, symbol.vy, vw, vh}; in _useBuildHelper() 742 … mViewBox = _calculateAspectRatioMatrix(symbol.align, symbol.meetOrSlice, width, height, box); in _useBuildHelper() 743 } else if (!tvg::zero(symbol.vx) || !tvg::zero(symbol.vy)) { in _useBuildHelper() 744 mViewBox = {1, 0, -symbol.vx, 0, 1, -symbol.vy, 0, 0, 1}; in _useBuildHelper() [all …]
|
D | tvgSvgLoader.cpp | 1387 SvgSymbolNode* symbol = &(node->node.symbol); in _attrParseSymbolNode() local 1390 …if (!_parseNumber(&value, nullptr, &symbol->vx) || !_parseNumber(&value, nullptr, &symbol->vy)) re… in _attrParseSymbolNode() 1391 …if (!_parseNumber(&value, nullptr, &symbol->vw) || !_parseNumber(&value, nullptr, &symbol->vh)) re… in _attrParseSymbolNode() 1392 symbol->hasViewBox = true; in _attrParseSymbolNode() 1394 symbol->w = _toFloat(loader->svgParse, value, SvgParserLengthType::Horizontal); in _attrParseSymbolNode() 1395 symbol->hasWidth = true; in _attrParseSymbolNode() 1397 symbol->h = _toFloat(loader->svgParse, value, SvgParserLengthType::Vertical); in _attrParseSymbolNode() 1398 symbol->hasHeight = true; in _attrParseSymbolNode() 1400 _parseAspectRatio(&value, &symbol->align, &symbol->meetOrSlice); in _attrParseSymbolNode() 1402 if (!strcmp(value, "visible")) symbol->overflowVisible = true; in _attrParseSymbolNode() [all …]
|
D | tvgSvgLoaderCommon.h | 312 SvgNode* symbol; member 532 SvgSymbolNode symbol; member
|
/lvgl-latest/src/widgets/dropdown/ |
D | lv_dropdown_private.h | 38 const void * symbol; /**< Arrow or other icon when the drop-down list is closed*/ member
|
D | lv_dropdown.c | 368 void lv_dropdown_set_symbol(lv_obj_t * obj, const void * symbol) in lv_dropdown_set_symbol() argument 373 dropdown->symbol = symbol; in lv_dropdown_set_symbol() 494 return dropdown->symbol; in lv_dropdown_get_symbol() 656 dropdown->symbol = LV_SYMBOL_DOWN; in lv_dropdown_constructor() 884 if(dropdown->symbol) { in draw_main() 885 lv_image_src_t symbol_type = lv_image_src_get_type(dropdown->symbol); in draw_main() 890 …lv_text_get_size(&size, dropdown->symbol, symbol_dsc.font, symbol_dsc.letter_space, symbol_dsc.lin… in draw_main() 897 lv_result_t res = lv_image_decoder_get_info(dropdown->symbol, &header); in draw_main() 921 symbol_dsc.text = dropdown->symbol; in draw_main() 931 img_dsc.src = dropdown->symbol; in draw_main() [all …]
|
D | lv_dropdown.h | 129 void lv_dropdown_set_symbol(lv_obj_t * obj, const void * symbol);
|
/lvgl-latest/examples/widgets/image/ |
D | index.rst | 2 Image from variable and symbol
|
/lvgl-latest/docs/details/widgets/ |
D | msgbox.rst | 65 :cpp:expr:`lv_msgbox_add_header_button(msgbox, symbol)`. 89 lv_obj_t * lv_msgbox_add_header_button(lv_obj_t * msgbox, const void * symbol);
|
D | dropdown.rst | 35 - :cpp:enumerator:`LV_PART_INDICATOR` Typically an arrow symbol that can be an Image 114 A symbol (typically an arrow) can be added to the Drop-Down List with 117 If the direction of the Drop-Down List is :cpp:enumerator:`LV_DIR_LEFT` the symbol
|
D | list.rst | 41 (that can be an image or symbol) and text. This function returns a pointer to the
|
D | image.rst | 54 You can also set a symbol as an image source similar to a :ref:`Labels <lv_label>`. In 57 "characters" instead of real images. You can set a symbol as an image source with
|
D | win.rst | 81 to provide an "x" (close) symbol. You get back a pointer to the Button created so
|
D | keyboard.rst | 63 produce a symbol (i.e. not on space). If you use a custom keymap (see below), set
|
/lvgl-latest/docs/details/main-components/ |
D | font.rst | 99 The following fonts contain all ASCII characters, the degree symbol (U+00B0), the 100 bullet symbol (U+2022) and the built-in symbols (see below). 308 1. Search for a symbol on https://fontawesome.com. For example the 309 `USB symbol <https://fontawesome.com/icons/usb?style=brands>`__. Copy its 315 4. Add the Unicode ID of the symbol to the range field. E.g.\ ``0xf287`` 316 for the USB symbol. More symbols can be enumerated with ``,``. 322 **Using the symbol** 330 :note: :cpp:expr:`lv_label_set_text(label, MY_USB_SYMBOL)` searches for this symbol 331 in the font defined in the style's ``text.font`` property. To use the symbol
|
/lvgl-latest/env_support/pikascript/ |
D | pika_lv_wegit.c | 275 void pika_lvgl_dropdown_set_symbol(PikaObj *self, char* symbol){ in pika_lvgl_dropdown_set_symbol() argument 277 lv_dropdown_set_symbol(lv_obj, symbol); in pika_lvgl_dropdown_set_symbol()
|
D | pika_lvgl.pyi | 220 def set_symbol(self, symbol: str): ...
|
/lvgl-latest/docs/details/integration/driver/ |
D | X11.rst | 85 | Full initialisation with mouse pointer symbol and own application exit handling
|
/lvgl-latest/docs/details/integration/bindings/ |
D | javascript.rst | 88 - `Builtin-Symbol <https://github.com/lvgl/lv_binding_js/blob/master/doc/Symbol/symbol.md>`__
|
/lvgl-latest/docs/details/integration/renderers/ |
D | vg_lite.rst | 27 …t parameters can result in abnormal GPU hardware operation, such as forgetting to add an end symbol
|
/lvgl-latest/src/libs/fsdrv/ |
D | lv_fs_uefi.c | 28 … Using a slash symbol as drive letter should be replaced with LV_FS_DEFAULT_DRIVE_LETTER mechanism
|
/lvgl-latest/docs/details/integration/chip/ |
D | nxp.rst | 46 - If :c:macro:`SDK_OS_FREE_RTOS` symbol is defined, FreeRTOS implementation 211 `1`. :c:macro:`SDK_OS_FREE_RTOS` symbol needs to be defined so that FreeRTOS
|
/lvgl-latest/src/libs/lodepng/ |
D | lodepng.c | 725 unsigned symbol = tree->codes[i]; in HuffmanTree_makeTable() local 730 index = reverseBits(symbol >> (l - FIRSTBITS), FIRSTBITS); in HuffmanTree_makeTable() 764 unsigned symbol, reverse; in HuffmanTree_makeTable() local 766 symbol = tree->codes[i]; /*the huffman bit pattern. i itself is the value.*/ in HuffmanTree_makeTable() 768 reverse = reverseBits(symbol, l); in HuffmanTree_makeTable() 1979 unsigned symbol = lz77_encoded.data[i]; in deflateDynamic() local 1980 ++frequencies_ll[symbol]; in deflateDynamic() 1981 if(symbol > 256) { in deflateDynamic()
|
/lvgl-latest/docs/ |
D | Doxyfile | 413 # The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This 415 # an expensive process and often the same symbol appears multiple times in the 856 # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names 858 # output. The symbol name can be a fully qualified name, a word, or if the
|
/lvgl-latest/docs/_static/css/ |
D | fontawesome.min.css | 5 …symbol:before{content:"\f47e"}.fa-hot-tub:before{content:"\f593"}.fa-hotdog:before{content:"\f80f"…
|