Files
lvgl/examples/widgets/lv_example_widgets.h
T
Gabor Kiss-Vamosiandcubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com> 0241174e50
Arduino Lint / lint (push) Has been cancelled
Build Examples with C++ Compiler / build-examples (push) Has been cancelled
MicroPython CI / Build esp32 port (push) Has been cancelled
MicroPython CI / Build rp2 port (push) Has been cancelled
MicroPython CI / Build stm32 port (push) Has been cancelled
MicroPython CI / Build unix port (push) Has been cancelled
C/C++ CI / Build OPTIONS_16BIT - Ubuntu (push) Has been cancelled
C/C++ CI / Build OPTIONS_24BIT - Ubuntu (push) Has been cancelled
C/C++ CI / Build OPTIONS_FULL_32BIT - Ubuntu (push) Has been cancelled
C/C++ CI / Build OPTIONS_NORMAL_8BIT - Ubuntu (push) Has been cancelled
C/C++ CI / Build OPTIONS_SDL - Ubuntu (push) Has been cancelled
C/C++ CI / Build OPTIONS_16BIT - cl - Windows (push) Has been cancelled
C/C++ CI / Build OPTIONS_16BIT - gcc - Windows (push) Has been cancelled
C/C++ CI / Build OPTIONS_24BIT - cl - Windows (push) Has been cancelled
C/C++ CI / Build OPTIONS_24BIT - gcc - Windows (push) Has been cancelled
C/C++ CI / Build OPTIONS_FULL_32BIT - cl - Windows (push) Has been cancelled
C/C++ CI / Build OPTIONS_FULL_32BIT - gcc - Windows (push) Has been cancelled
C/C++ CI / Build ESP IDF ESP32S3 (push) Has been cancelled
C/C++ CI / Run tests with 32bit build (push) Has been cancelled
C/C++ CI / Run tests with 64bit build (push) Has been cancelled
BOM Check / bom-check (push) Has been cancelled
Verify that lv_conf_internal.h matches repository state / verify-conf-internal (push) Has been cancelled
Verify GDB constants are up-to-date / verify-gdb-consts (push) Has been cancelled
Verify the widget property name / verify-property-name (push) Has been cancelled
Verify code formatting / verify-formatting (push) Has been cancelled
Compare file templates with file names / template-check (push) Has been cancelled
Build Docs / build-and-deploy (push) Has been cancelled
Build .deb packages / build (push) Has been cancelled
Test API JSON generator / Test API JSON (push) Has been cancelled
Install LVGL using CMake / build-examples (private) (push) Has been cancelled
Install LVGL using CMake / build-examples (public) (push) Has been cancelled
Check Makefile / Build using Makefile (push) Has been cancelled
Check Makefile for UEFI / Build using Makefile for UEFI (push) Has been cancelled
Emulated Performance Test / ARM Emulated Benchmark - Script Check (scripts/perf/tests/benchmark_results_comment/test.sh) (push) Has been cancelled
Emulated Performance Test / ARM Emulated Benchmark - Script Check (scripts/perf/tests/filter_docker_logs/test.sh) (push) Has been cancelled
Emulated Performance Test / ARM Emulated Benchmark - Script Check (scripts/perf/tests/serialize_results/test.sh) (push) Has been cancelled
Emulated Performance Test / ARM Emulated Benchmark 32b - lv_conf_perf32b (push) Has been cancelled
Emulated Performance Test / ARM Emulated Benchmark 64b - lv_conf_perf64b (push) Has been cancelled
Emulated Performance Test / ARM Emulated Benchmark - Save PR Number (push) Has been cancelled
Performance Tests CI / Perf Tests OPTIONS_TEST_PERF_32B - Ubuntu (push) Has been cancelled
Performance Tests CI / Perf Tests OPTIONS_TEST_PERF_64B - Ubuntu (push) Has been cancelled
Port repo release update / run-release-branch-updater (push) Has been cancelled
Static Checks / Static Checks (push) Has been cancelled
Verify Font License / verify-font-license (push) Has been cancelled
Verify Kconfig / verify-kconfig (push) Has been cancelled
Hardware Performance Test / Hardware Performance Benchmark (push) Has been cancelled
Hardware Performance Test / HW Benchmark - Save PR Number (push) Has been cancelled
docs(examples): add XML examples too covering specific features (#10142)
Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>
2026-05-21 10:22:44 +02:00

62 lines
1.8 KiB
C

/**
* @file lv_example_widgets.h
*
* Meta-header that pulls in every per-widget example header. Add a new
* widget's header below alphabetically; per-widget headers themselves are
* regenerated by `scripts/generate_examples.py` from the XML examples in
* each widget's subtree, with a manual-prototype zone preserved for
* C-only examples.
*/
#ifndef LV_EXAMPLE_WIDGETS_H
#define LV_EXAMPLE_WIDGETS_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#include "animimg/lv_example_animimg.h"
#include "arc/lv_example_arc.h"
#include "arclabel/lv_example_arclabel.h"
#include "bar/lv_example_bar.h"
#include "button/lv_example_button.h"
#include "buttonmatrix/lv_example_buttonmatrix.h"
#include "calendar/lv_example_calendar.h"
#include "canvas/lv_example_canvas.h"
#include "chart/lv_example_chart.h"
#include "checkbox/lv_example_checkbox.h"
#include "dropdown/lv_example_dropdown.h"
#include "image/lv_example_image.h"
#include "imagebutton/lv_example_imagebutton.h"
#include "keyboard/lv_example_keyboard.h"
#include "label/lv_example_label.h"
#include "led/lv_example_led.h"
#include "line/lv_example_line.h"
#include "list/lv_example_list.h"
#include "lottie/lv_example_lottie.h"
#include "menu/lv_example_menu.h"
#include "msgbox/lv_example_msgbox.h"
#include "obj/lv_example_obj.h"
#include "roller/lv_example_roller.h"
#include "scale/lv_example_scale.h"
#include "slider/lv_example_slider.h"
#include "span/lv_example_span.h"
#include "spinbox/lv_example_spinbox.h"
#include "spinner/lv_example_spinner.h"
#include "switch/lv_example_switch.h"
#include "table/lv_example_table.h"
#include "tabview/lv_example_tabview.h"
#include "textarea/lv_example_textarea.h"
#include "tileview/lv_example_tileview.h"
#include "win/lv_example_win.h"
#ifdef __cplusplus
} /*extern "C"*/
#endif
#endif /*LV_EXAMPLE_WIDGETS_H*/