Skip to content

Files

This branch is 47 commits behind lvgl/lvgl:master.

docs

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Mar 3, 2025
Jan 4, 2023
Apr 17, 2025
Mar 20, 2025
Feb 25, 2025
Apr 3, 2025
Mar 3, 2025
Mar 20, 2025
Apr 17, 2025
Apr 17, 2025
Apr 17, 2025
Dec 3, 2024
Apr 3, 2025
Mar 20, 2025
Apr 15, 2025
Oct 23, 2024
Mar 20, 2025
Mar 23, 2025
Oct 23, 2024
Apr 3, 2025
Apr 14, 2025

Documentation

Building

Building the documentation is easy. Here are the requirements:

  • Doxygen
  • Python >= 3.10
  • C compiler (gcc, msvc, clang, etc...)

Once Python is installed

pip install -r requirements.txt

will install all the prerequisite packages:

  • Sphinx
  • breathe
  • imagesize
  • importlib-metadata
  • sphinx-rtd-theme
  • sphinx-sitemap
  • sphinxcontrib-applehelp
  • sphinxcontrib-devhelp
  • sphinxcontrib-htmlhelp
  • sphinxcontrib-jsmath
  • sphinxcontrib-qthelp
  • sphinxcontrib-serializinghtml
  • sphinxcontrib-mermaid==0.9.2
  • sphinx-design
  • sphinx-rtd-dark-mode
  • typing-extensions
  • sphinx-reredirects
  • dirsync

Now you are ready to build the documentation:

python build.py html

or if you are on a Unix like OS:

python3 build.py html

Intermediate files are prepared in ./docs/intermediate/ and the final documentation will appear in ./docs/build/html/. (Both of these directories can be overridden using environment variables. See documentation in build.py for details.)

If the list of document source files has changed (names or paths):

python build.py clean html

Will remove the old intermediate and build files and regenerate new ones matching the new structure.

To see a list of options available:

python build.py

Read the docstring for build.py for detailed documentation on each option.

For Developers

One of our firm policies is EVERYTHING MUST BE DOCUMENTED.

The below are some rules to follow when updating any of the .rst files located in the ./docs/src/ directory tree.

What to Name Your .rst File

The directory structure under the ./docs/src/ directory, and the filenames of the .rst files govern the eventual URLs that are generated in the HTML output. These directories are organized so as to reflect the nature of the content. Example: the .rst files under ./docs/src/intro contain introductory material—detailed reference material would not go there, but instead in an appropriate subdirectory of ./docs/src/details/. It is expected that the content and location of any new documents added would be in alignment with this directory structure, and placed and named according to their content. Additionally, to be linked into the eventual generated documentation, the stem of the new filename would need to appear in at least one (normally only one) .. toctree:: directive, normally in an index.rst file in the directory where it will appear in the table of contents (TOC).

Other than that, there are no restrictions on filenames. Previous linking of filenames to generated API links has been removed and replaced by a better scheme. For sake of illustration, let's say you are creating (or enhancing) documentation related to the lv_scale_t data type (one of the LVGL Widgets): if you want the doc-build logic to generate appropriate links to LVGL API pages, place an API section at the end of your document (it must be at the end) like this:

API
***

and then, if you want the API-link-generation logic to generate hyperlinks to API pages based on an exact, case-sensitive string match with specific C symbols, follow it with a reStructuredText comment using this syntax:

.. API equals: lv_scale_t, lv_scale_create

What follows the colon is a comma- or space-separated list of exact C symbols documented somewhere in the lvgl/src/ directory. If the list is long, it can be wrapped to subsequent lines, though continuation lines must be all indented at the same level. The list ends with the first blank line after this pseudo-directive.

If you instead want the API-link-generation logic to simply include links to code that starts with a specific string use this syntax instead. The format of the list is the same as for .. API equals::

.. API startswith: lv_scale, lv_obj_set_style

You can also manually link to API pages, in which case the API-link-generation logic will see that you have already added links and will not repeat them.

:ref:`lv_scale_h`

Note that the period before the h is replaced with an underscore (_). The naming of this reference (lv_scale_h) will generate a hyperlink to the documentation extracted by Doxygen from the lvgl/src/widgets/scale/lv_scale.h file.

Text Format

While with .md files, it is important to allow paragraphs to flow off to the right with one long line so that when they are formatted as .html files, the paragraphs will word-wrap with the width of the browser, this is not true with reStructuredText (.rst files). Sphinx and its underlying docutils parsing engine conveniently combine grouped text into a proper paragraph with that word-wrapping behavior. This allows the source text documents to be nicely word-wrapped so that they are more readable in text- and code-editors that do not have wide editing windows. So please wrap the text around column 86 or narrower. Wrapping at exactly column 86 is not important, but readability and ease of editing is.

index.rst Files

If you create a new directory you MUST have an index.rst file in that directory and that index file needs to be pointed to in the index.rst file that is located in the parent directory.

Let's take a look at the index.rst file that is located in the docs/layouts directory.

.. _layouts:

=======
Layouts
=======


.. toctree::
    :maxdepth: 2

    flex
    grid

The below explains the parts of this file.

.. _layouts:      <=== Creates an explicit link target
                  <=== Empty line -- important!
=======
Layouts           <=== Heading seen in documentation
=======


.. toctree::      <=== Table of contents
    :maxdepth: 2  <=== Internal use and needs to always be set this way

    flex          <=== .rst files located in directory with index.rst
    grid

The first line is for the purposes of providing a uniquely-named link target that can be referenced elsewhere in the documentation.

.. _{LINK NAME}:

Note that {LINK NAME}:

  • must be preceded by a single underscore, and
  • must be followed by at least one blank line for the doc-generation logic to process it correctly.

Replace {LINK NAME} with a link name that is unique among all documents under the ./docs/ directory. It can have multiple words if needed to make it unique or when otherwise appropriate for clarity. If multiple words are used, they can be separated with single spaces, hyphens or underscores. Whatever you use, the {LINK NAME} string used to reference it must be identical. {LINK NAME} strings are not case sensitive.

That unique name is then used to provide a link reference elsewhere in the documentation using one of two formats.

When "link text" should be a title or section heading from the target document:
:ref:`{LINK NAME}`

This in-line markup (interpreted text using the Sphinx-defined custom :ref: role) is then replaced with a hyperlink whose "link text" is the name of the section heading just below the link target. For this reason, when using this syntax, {LINK NAME} must reference link targets that are just above a title or section heading.

When "link text" should be something else:
:ref:`other link text <{LINK NAME}>`

This latter syntax enables you to put a link target anywhere in an .RST file (not just above a heading) and link to it using this syntax.

Note: This latter syntax was either added or fixed in Sphinx recently. It did not work in Sphinx 7.3.7.

Section Headings

Section headings are created by underlining (and optionally overlining) the section title with a punctuation character, at least as long as the text. Example:

=================
This Is a Heading
=================

reStructuredText does not impose any particular heading levels assigned to certain characters since the structure is determined from the succession of headings. So if you are modifying an existing .RST file, please follow the pattern already in use.

If you are creating a new .RST file, use this convention:

=====
Title
=====

Chapter
*******

Section
-------

Sub Section
~~~~~~~~~~~

Sub Sub Section
^^^^^^^^^^^^^^^

Sub Sub Sub Section
'''''''''''''''''''

Note that the "underlining" can be longer than the heading title, but if it is shorter, the documentation-generation logic will fail with an error.

For improved readability in the .RST file, place at least 2 blank lines above section headings.

Code Blocks

  • Do not use tab characters in code blocks.

  • Each indentation level use 4 spaces.

  • Include at least 1 empty line after a code block.

  • There must be one empty line between the code block directive and the code.

  • .. code-block:: is the only directive that should be used. Note carefully that unlike the link target directive above, this directive has 2 colons. (The only ReST and sphinx directives that are valid with one colon are link targets as shown above.) Lone ::, :code: or .. code: should not be used.

  • If you want to separate code into easier-to-understand sections you can do so with a single empty line.

  • For syntax highlighting appropriate to the language in the code block, specify the language after the directive. Some examples are:

    • .. code-block:: c,
    • .. code-block:: cpp,
    • .. code-block:: python,
    • .. code-block:: shell,
    • .. code-block:: kconfig,
    • .. code-block:: json,
    • .. code-block:: yaml,
    • .. code-block:: csharp (or "cs"),
    • .. code-block:: vb.net,
    • .. code-block:: dot (graphviz),
    • .. code-block:: html,
    • .. code-block:: css,
    • .. code-block:: xml,
    • .. code-block:: make.

The full set of supported lexers are listed here: https://pygments.org/docs/lexers/ .

Bulleted Lists

To create a bulleted list, do the following:

- First item description
- If you want to span multiple lines, indent subsequent
  lines to align with item text like this.
- If you want to include a code block under a list item,
  it must be intended to align with the list item like this:

  .. code-block: python
                             <=== blank line here is important
      # this is some code
                             <=== blank line here is important
- If you want to have nested bulleted lists, indent each
  new level to align with its parent list item like this:
                             <=== blank line here is important
  - level 2 item 1: text
  - level 2 item 2: text
                             <=== blank line here is important
- Last list item.  Note that the nested list above is preceded
  and followed by 1 blank line.

All lists (including nested lists) must be preceded and followed with at least 1 blank line. This is mandatory for the documentation-generation logic to process it correctly.

Referencing API Documentation

If you want to reference portions of the LVGL code from the documentation (in .RST files) there are special directives to do this:

:cpp:func:`lv_init`
:c:macro:`LV_USE_FLEX`
:cpp:type:`lv_event_t`
:cpp:enum:`_lv_event_t`
:cpp:enumerator:`LV_EVENT_ALL`
:cpp:struct:`lv_image_dsc_t`
:cpp:union:`lv_style_value_t`

There is a special directive when wanting to use a more complex expression. For example when showing the arguments passed to a function.

:cpp:expr:`lv_obj_set_layout(widget, LV_LAYOUT_FLEX)`
:cpp:expr:`lv_slider_set_mode(slider, LV_SLIDER_MODE_...)`

Arguments that are expressions (more than one word), or contain non-alphanumeric characters will cause the :cpp:expr: interpreted-text to fail. Examples:

:cpp:expr:`lv_obj_set_layout(widget, LV_LAYOUT_FLEX/GRID)`         <== arg with > 1 word
:cpp:expr:`lv_obj_set_layout(widget, LV_LAYOUT_*)`                 <== asterisk
:cpp:expr:`lv_obj_set_layout(*widget, LV_LAYOUT_FLEX)`             <== asterisk
:cpp:expr:`lv_obj_set_layout((lv_obj_t *)widget, LV_LAYOUT_FLEX)`  <== cast
:cpp:expr:`lv_obj_set_layout(&widget, LV_LAYOUT_FLEX);`            <== ampersand & semicolon
:cpp:expr:`lv_obj_set_layout(widget, ...)`                         <== lone ellipsis

For such examples, simply use reStructuredText literal markup like this:

``lv_obj_set_layout(widget, LV_LAYOUT_FLEX/GRID)``
``lv_obj_set_layout(widget, LV_LAYOUT_*)``
``lv_obj_set_layout(*widget, LV_LAYOUT_FLEX)``
``lv_obj_set_layout((lv_obj_t *)widget, LV_LAYOUT_FLEX)``
``lv_obj_set_layout(&widget, LV_LAYOUT_FLEX);``
``lv_obj_set_layout(widget, ...)``