Home
last modified time | relevance | path

Searched refs:symbol (Results 1 – 24 of 24) sorted by relevance

/lvgl-latest/src/libs/thorvg/
DtvgSvgSceneBuilder.cpp729 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 …]
DtvgSvgLoader.cpp1387 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 …]
DtvgSvgLoaderCommon.h312 SvgNode* symbol; member
532 SvgSymbolNode symbol; member
/lvgl-latest/src/widgets/dropdown/
Dlv_dropdown_private.h38 const void * symbol; /**< Arrow or other icon when the drop-down list is closed*/ member
Dlv_dropdown.c368 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 …]
Dlv_dropdown.h129 void lv_dropdown_set_symbol(lv_obj_t * obj, const void * symbol);
/lvgl-latest/examples/widgets/image/
Dindex.rst2 Image from variable and symbol
/lvgl-latest/docs/details/widgets/
Dmsgbox.rst65 :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);
Ddropdown.rst35 - :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
Dlist.rst41 (that can be an image or symbol) and text. This function returns a pointer to the
Dimage.rst54 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
Dwin.rst81 to provide an "x" (close) symbol. You get back a pointer to the Button created so
Dkeyboard.rst63 produce a symbol (i.e. not on space). If you use a custom keymap (see below), set
/lvgl-latest/docs/details/main-components/
Dfont.rst99 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/
Dpika_lv_wegit.c275 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()
Dpika_lvgl.pyi220 def set_symbol(self, symbol: str): ...
/lvgl-latest/docs/details/integration/driver/
DX11.rst85 | Full initialisation with mouse pointer symbol and own application exit handling
/lvgl-latest/docs/details/integration/bindings/
Djavascript.rst88 - `Builtin-Symbol <https://github.com/lvgl/lv_binding_js/blob/master/doc/Symbol/symbol.md>`__
/lvgl-latest/docs/details/integration/renderers/
Dvg_lite.rst27 …t parameters can result in abnormal GPU hardware operation, such as forgetting to add an end symbol
/lvgl-latest/src/libs/fsdrv/
Dlv_fs_uefi.c28 … Using a slash symbol as drive letter should be replaced with LV_FS_DEFAULT_DRIVE_LETTER mechanism
/lvgl-latest/docs/details/integration/chip/
Dnxp.rst46 - 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/
Dlodepng.c725 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/
DDoxyfile413 # 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/
Dfontawesome.min.css5symbol:before{content:"\f47e"}.fa-hot-tub:before{content:"\f593"}.fa-hotdog:before{content:"\f80f"…