/lvgl-latest/docs/details/integration/bindings/ |
D | javascript.rst | 54 - `ubuntu build Notes for sdl simulator <https://github.com/lvgl/lv_binding_js/blob/master/doc/buil… 55 - `macos x86 build Notes for sdl simulator <https://github.com/lvgl/lv_binding_js/blob/master/doc/b… 56 - `ubuntu build Notes for platform arm <https://github.com/lvgl/lv_binding_js/blob/master/doc/build… 62 - `JS Bundle build Notes <https://github.com/lvgl/lv_binding_js/blob/master/doc/build/js-bundle.md>… 68 - `View <https://github.com/lvgl/lv_binding_js/blob/master/doc/component/View.md>`__ 69 - `Image <https://github.com/lvgl/lv_binding_js/blob/master/doc/component/Image.md>`__ 70 - `Button <https://github.com/lvgl/lv_binding_js/blob/master/doc/component/Button.md>`__ 71 - `Text <https://github.com/lvgl/lv_binding_js/blob/master/doc/component/Text.md>`__ 72 - `Input <https://github.com/lvgl/lv_binding_js/blob/master/doc/component/Input.md>`__ 73 - `Textarea <https://github.com/lvgl/lv_binding_js/blob/master/doc/component/Textarea.md>`__ [all …]
|
/lvgl-latest/src/libs/thorvg/ |
D | tvgSvgLoader.cpp | 957 SvgDocNode* doc = &(node->node.doc); in _attrParseSvgNode() local 960 doc->w = _toFloat(loader->svgParse, value, SvgParserLengthType::Horizontal); in _attrParseSvgNode() 961 if (strstr(value, "%") && !(doc->viewFlag & SvgViewFlag::Viewbox)) { in _attrParseSvgNode() 962 doc->viewFlag = (doc->viewFlag | SvgViewFlag::WidthInPercent); in _attrParseSvgNode() 964 doc->viewFlag = (doc->viewFlag | SvgViewFlag::Width); in _attrParseSvgNode() 967 doc->h = _toFloat(loader->svgParse, value, SvgParserLengthType::Vertical); in _attrParseSvgNode() 968 if (strstr(value, "%") && !(doc->viewFlag & SvgViewFlag::Viewbox)) { in _attrParseSvgNode() 969 doc->viewFlag = (doc->viewFlag | SvgViewFlag::HeightInPercent); in _attrParseSvgNode() 971 doc->viewFlag = (doc->viewFlag | SvgViewFlag::Height); in _attrParseSvgNode() 974 if (_parseNumber(&value, nullptr, &doc->vx)) { in _attrParseSvgNode() [all …]
|
D | tvgLottieBuilder.cpp | 991 auto& doc = text->doc(frameNo); in updateText() local 992 auto p = doc.text; in updateText() 996 auto scale = doc.size; in updateText() 1013 if (ascent > doc.bbox.size.y) ascent = doc.bbox.size.y; in updateText() 1014 Point layout = {doc.bbox.pos.x, doc.bbox.pos.y + ascent - doc.shift}; in updateText() 1017 if (doc.justify == 1) layout.x += doc.bbox.size.x - (cursor.x * scale); //right aligned in updateText() 1018 …else if (doc.justify == 2) layout.x += (doc.bbox.size.x * 0.5f) - (cursor.x * 0.5f * scale); //ce… in updateText() 1034 cursor.y = (++line * doc.height + totalLineSpacing) / scale; in updateText() 1056 shape->fill(doc.color.rgb[0], doc.color.rgb[1], doc.color.rgb[2]); in updateText() 1060 if (doc.stroke.render) { in updateText() [all …]
|
D | tvgSvgCssStyle.h | 34 void cssUpdateStyle(SvgNode* doc, SvgNode* style);
|
D | tvgSvgSceneBuilder.cpp | 914 if (!loaderData.doc || (loaderData.doc->type != SvgNodeType::Doc)) return nullptr; in svgSceneBuild() 916 auto docNode = _sceneBuildHelper(loaderData, loaderData.doc, vBox, svgPath, false, 0); in svgSceneBuild() 937 loaderData.doc->node.doc.vx = vBox.x; in svgSceneBuild() 938 loaderData.doc->node.doc.vy = vBox.y; in svgSceneBuild() 939 loaderData.doc->node.doc.vw = vBox.w; in svgSceneBuild() 940 loaderData.doc->node.doc.vh = vBox.h; in svgSceneBuild() 941 loaderData.doc->node.doc.w = w; in svgSceneBuild() 942 loaderData.doc->node.doc.h = h; in svgSceneBuild()
|
D | tvgLottieParser.cpp | 161 void LottieParser::getValue(TextDocument& doc) in getValue() argument 165 if (KEY_AS("s")) doc.size = getFloat() * 0.01f; in getValue() 166 else if (KEY_AS("f")) doc.name = getStringCopy(); in getValue() 167 else if (KEY_AS("t")) doc.text = getStringCopy(); in getValue() 168 else if (KEY_AS("j")) doc.justify = getInt(); in getValue() 169 else if (KEY_AS("tr")) doc.tracking = getFloat() * 0.1f; in getValue() 170 else if (KEY_AS("lh")) doc.height = getFloat(); in getValue() 171 else if (KEY_AS("ls")) doc.shift = getFloat(); in getValue() 172 else if (KEY_AS("fc")) getValue(doc.color); in getValue() 173 else if (KEY_AS("ps")) getValue(doc.bbox.pos); in getValue() [all …]
|
D | tvgSvgCssStyle.cpp | 241 void cssUpdateStyle(SvgNode* doc, SvgNode* style) in cssUpdateStyle() argument 243 if (doc->child.count > 0) { in cssUpdateStyle() 244 auto child = doc->child.data; in cssUpdateStyle() 245 for (uint32_t i = 0; i < doc->child.count; ++i, ++child) { in cssUpdateStyle()
|
D | tvgLottieModel.cpp | 62 static_cast<LottieText*>(pair->obj)->doc.release(); in reset() 63 static_cast<LottieText*>(pair->obj)->doc = *static_cast<LottieTextDoc*>(pair->prop); in reset() 103 … *static_cast<LottieTextDoc*>(pair->prop) = static_cast<LottieText*>(pair->obj)->doc; in assign() 106 pair->obj->override(&static_cast<LottieText*>(target)->doc); in assign()
|
D | tvgSvgLoaderCommon.h | 518 SvgDocNode doc; member 571 SvgNode* doc = nullptr; member
|
D | tvgLottieModel.h | 266 this->doc = *static_cast<LottieTextDoc*>(prop); in override() 272 if (doc.ix == ix) return &doc; in property() 276 LottieTextDoc doc; member
|
D | tvgLottieParser.h | 61 void getValue(TextDocument& doc);
|
/lvgl-latest/src/libs/svg/ |
D | lv_svg.c | 89 lv_svg_node_t * doc = parser.doc_root; in lv_svg_load_data() local 93 _lv_svg_dump_tree(doc, 0); in lv_svg_load_data() 95 return doc; in lv_svg_load_data()
|
D | lv_svg_render.c | 196 const lv_svg_node_t * doc; member 2130 .doc = svg_doc, in lv_svg_render_create()
|
/lvgl-latest/docs/details/integration/driver/display/ |
D | ili9341.rst | 14 …ic driver, based on the `generic MIPI driver <https://github.com/lvgl/lvgl/doc/integration/drivers… 68 …e see the `generic MIPI driver documentation <https://github.com/lvgl/lvgl/doc/integration/drivers…
|
D | st7735.rst | 16 …ic driver, based on the `generic MIPI driver <https://github.com/lvgl/lvgl/doc/integration/drivers… 70 …e see the `generic MIPI driver documentation <https://github.com/lvgl/lvgl/doc/integration/drivers…
|
D | st7789.rst | 15 …ic driver, based on the `generic MIPI driver <https://github.com/lvgl/lvgl/doc/integration/drivers… 69 …e see the `generic MIPI driver documentation <https://github.com/lvgl/lvgl/doc/integration/drivers…
|
D | st7796.rst | 16 …ic driver, based on the `generic MIPI driver <https://github.com/lvgl/lvgl/doc/integration/drivers… 70 …e see the `generic MIPI driver documentation <https://github.com/lvgl/lvgl/doc/integration/drivers…
|
/lvgl-latest/docs/ |
D | README.md | 70 …ot true with reStructuredText (`.rst` files). [Sphinx](https://www.sphinx-doc.org/en/master/) and… 119 - **must** be followed by at least one blank line for the doc-generation logic to process it correc… 152 [Section headings](https://www.sphinx-doc.org/en/master/usage/restructuredtext/basics.html#sections…
|
D | README_zh.rst | 162 package <https://doc.riot-os.org/group__pkg__lvgl.html#details>`__
|
D | Doxyfile | 1352 # (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#namespace). 1360 # Folders (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#virtual- 1362 # The default value is: doc. 1365 QHP_VIRTUAL_FOLDER = doc 1369 # Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- 1377 # Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- 1385 # http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes).
|
D | CHANGELOG.rst | 253 - **fix(examples): correct typo in widgets example doc** `6412 <https://github.com/lvgl/lvgl/pull/6…
|
/lvgl-latest/src/libs/thorvg/rapidjson/ |
D | schema.h | 2325 …ValueType* FindId(const ValueType& doc, const UriType& finduri, PointerType& resptr, const UriType… 2330 if (doc.GetType() == kObjectType) { 2332 typename ValueType::ConstMemberIterator m = doc.FindMember(SchemaType::GetIdString()); 2333 if (m != doc.MemberEnd() && m->value.GetType() == kStringType) { 2339 resval = const_cast<ValueType *>(&doc); 2344 for (m = doc.MemberBegin(); m != doc.MemberEnd(); ++m) { 2350 } else if (doc.GetType() == kArrayType) { 2352 for (typename ValueType::ConstValueIterator v = doc.Begin(); v != doc.End(); ++v) {
|
/lvgl-latest/docs/details/integration/chip/ |
D | alif.rst | 210 …S pack project <https://github.com/alifsemi/alif_vscode-template/blob/main/doc/getting_started.md>…
|
/lvgl-latest/docs/details/main-components/ |
D | indev.rst | 212 …th events emitted by the `libinput <https://wayland.freedesktop.org/libinput/doc/latest/>`_ library
|
/lvgl-latest/ |
D | README.md | 103 - [RIOT OS package](https://doc.riot-os.org/group__pkg__lvgl.html#details)
|