├── .clang-format ├── .gitignore ├── CHANGES.md ├── CMakeLists.txt ├── LICENSE ├── README.md ├── library ├── CMakeLists.txt ├── LvglAPI.cmake ├── include │ ├── CMakeLists.txt │ ├── lvgl.hpp │ └── lvgl │ │ ├── Animation.hpp │ │ ├── Arc.hpp │ │ ├── AssetFile.hpp │ │ ├── Bar.hpp │ │ ├── Button.hpp │ │ ├── ButtonMatrix.hpp │ │ ├── Calendar.hpp │ │ ├── Canvas.hpp │ │ ├── Chart.hpp │ │ ├── CheckBox.hpp │ │ ├── Color.hpp │ │ ├── ColorWheel.hpp │ │ ├── Draw.hpp │ │ ├── Dropdown.hpp │ │ ├── Event.hpp │ │ ├── EventBus.hpp │ │ ├── Font.hpp │ │ ├── Generic.hpp │ │ ├── Group.hpp │ │ ├── Image.hpp │ │ ├── ImageButton.hpp │ │ ├── Keyboard.hpp │ │ ├── Label.hpp │ │ ├── Line.hpp │ │ ├── List.hpp │ │ ├── Lvgl.hpp │ │ ├── MessageBox.hpp │ │ ├── Meter.hpp │ │ ├── Object.hpp │ │ ├── ObjectAccess.hpp │ │ ├── PeriodicTimer.hpp │ │ ├── Roller.hpp │ │ ├── Runtime.hpp │ │ ├── Screen.hpp │ │ ├── Slider.hpp │ │ ├── SpinBox.hpp │ │ ├── Spinner.hpp │ │ ├── Style.hpp │ │ ├── Switch.hpp │ │ ├── TabView.hpp │ │ ├── Table.hpp │ │ ├── TextArea.hpp │ │ ├── Theme.hpp │ │ ├── TileView.hpp │ │ ├── Types.hpp │ │ ├── UserData.hpp │ │ ├── Window.hpp │ │ └── macros.hpp └── src │ ├── Animation.cpp │ ├── Arc.cpp │ ├── AssetFile.cpp │ ├── Bar.cpp │ ├── Button.cpp │ ├── ButtonMatrix.cpp │ ├── CMakeLists.txt │ ├── Calendar.cpp │ ├── Canvas.cpp │ ├── Chart.cpp │ ├── CheckBox.cpp │ ├── Color.cpp │ ├── ColorWheel.cpp │ ├── Dropdown.cpp │ ├── Event.cpp │ ├── EventBus.cpp │ ├── Font.cpp │ ├── Group.cpp │ ├── Image.cpp │ ├── ImageButton.cpp │ ├── Keyboard.cpp │ ├── Label.cpp │ ├── Line.cpp │ ├── List.cpp │ ├── Lvgl.cpp │ ├── MessageBox.cpp │ ├── Meter.cpp │ ├── Object.cpp │ ├── PeriodicTimer.cpp │ ├── Roller.cpp │ ├── Runtime.cpp │ ├── Screen.cpp │ ├── Slider.cpp │ ├── SpinBox.cpp │ ├── Spinner.cpp │ ├── Style.cpp │ ├── Switch.cpp │ ├── TabView.cpp │ ├── Table.cpp │ ├── TextArea.cpp │ ├── Theme.cpp │ ├── TileView.cpp │ ├── Types.cpp │ ├── UserData.cpp │ └── Window.cpp ├── lvgl ├── CMakeLists.txt ├── dirent_windows.h ├── include │ └── lvgl │ │ ├── lv_conf_template.h │ │ └── lvgl_api.h ├── lvgl.cmake ├── lvgl_api.c ├── lvgl_api_fs.c └── lvgl_api_png.c ├── simulator ├── .clang-format ├── CMakeLists.txt ├── LICENSE ├── README.md ├── demo.png └── lvgl_qt │ ├── .clang-format │ ├── CMakeLists.txt │ ├── LvglGraphicsView.cpp │ ├── LvglGraphicsView.hpp │ ├── LvglRenderer.cpp │ ├── LvglRenderer.hpp │ ├── MainWindow.cpp │ └── MainWindow.hpp └── tests ├── CMakeLists.txt ├── sl_settings.json └── src ├── UnitTest.hpp ├── main.cpp └── sl_config.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/CHANGES.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/README.md -------------------------------------------------------------------------------- /library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/CMakeLists.txt -------------------------------------------------------------------------------- /library/LvglAPI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/LvglAPI.cmake -------------------------------------------------------------------------------- /library/include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/CMakeLists.txt -------------------------------------------------------------------------------- /library/include/lvgl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl.hpp -------------------------------------------------------------------------------- /library/include/lvgl/Animation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/Animation.hpp -------------------------------------------------------------------------------- /library/include/lvgl/Arc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/Arc.hpp -------------------------------------------------------------------------------- /library/include/lvgl/AssetFile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/AssetFile.hpp -------------------------------------------------------------------------------- /library/include/lvgl/Bar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/Bar.hpp -------------------------------------------------------------------------------- /library/include/lvgl/Button.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/Button.hpp -------------------------------------------------------------------------------- /library/include/lvgl/ButtonMatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/ButtonMatrix.hpp -------------------------------------------------------------------------------- /library/include/lvgl/Calendar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/Calendar.hpp -------------------------------------------------------------------------------- /library/include/lvgl/Canvas.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/Canvas.hpp -------------------------------------------------------------------------------- /library/include/lvgl/Chart.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/Chart.hpp -------------------------------------------------------------------------------- /library/include/lvgl/CheckBox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/CheckBox.hpp -------------------------------------------------------------------------------- /library/include/lvgl/Color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/Color.hpp -------------------------------------------------------------------------------- /library/include/lvgl/ColorWheel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/ColorWheel.hpp -------------------------------------------------------------------------------- /library/include/lvgl/Draw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/Draw.hpp -------------------------------------------------------------------------------- /library/include/lvgl/Dropdown.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/Dropdown.hpp -------------------------------------------------------------------------------- /library/include/lvgl/Event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/Event.hpp -------------------------------------------------------------------------------- /library/include/lvgl/EventBus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/EventBus.hpp -------------------------------------------------------------------------------- /library/include/lvgl/Font.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/Font.hpp -------------------------------------------------------------------------------- /library/include/lvgl/Generic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/Generic.hpp -------------------------------------------------------------------------------- /library/include/lvgl/Group.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/Group.hpp -------------------------------------------------------------------------------- /library/include/lvgl/Image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/Image.hpp -------------------------------------------------------------------------------- /library/include/lvgl/ImageButton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/ImageButton.hpp -------------------------------------------------------------------------------- /library/include/lvgl/Keyboard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/Keyboard.hpp -------------------------------------------------------------------------------- /library/include/lvgl/Label.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/Label.hpp -------------------------------------------------------------------------------- /library/include/lvgl/Line.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/Line.hpp -------------------------------------------------------------------------------- /library/include/lvgl/List.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/List.hpp -------------------------------------------------------------------------------- /library/include/lvgl/Lvgl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/Lvgl.hpp -------------------------------------------------------------------------------- /library/include/lvgl/MessageBox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/MessageBox.hpp -------------------------------------------------------------------------------- /library/include/lvgl/Meter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/Meter.hpp -------------------------------------------------------------------------------- /library/include/lvgl/Object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/Object.hpp -------------------------------------------------------------------------------- /library/include/lvgl/ObjectAccess.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/ObjectAccess.hpp -------------------------------------------------------------------------------- /library/include/lvgl/PeriodicTimer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/PeriodicTimer.hpp -------------------------------------------------------------------------------- /library/include/lvgl/Roller.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/Roller.hpp -------------------------------------------------------------------------------- /library/include/lvgl/Runtime.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/Runtime.hpp -------------------------------------------------------------------------------- /library/include/lvgl/Screen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/Screen.hpp -------------------------------------------------------------------------------- /library/include/lvgl/Slider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/Slider.hpp -------------------------------------------------------------------------------- /library/include/lvgl/SpinBox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/SpinBox.hpp -------------------------------------------------------------------------------- /library/include/lvgl/Spinner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/Spinner.hpp -------------------------------------------------------------------------------- /library/include/lvgl/Style.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/Style.hpp -------------------------------------------------------------------------------- /library/include/lvgl/Switch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/Switch.hpp -------------------------------------------------------------------------------- /library/include/lvgl/TabView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/TabView.hpp -------------------------------------------------------------------------------- /library/include/lvgl/Table.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/Table.hpp -------------------------------------------------------------------------------- /library/include/lvgl/TextArea.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/TextArea.hpp -------------------------------------------------------------------------------- /library/include/lvgl/Theme.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/Theme.hpp -------------------------------------------------------------------------------- /library/include/lvgl/TileView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/TileView.hpp -------------------------------------------------------------------------------- /library/include/lvgl/Types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/Types.hpp -------------------------------------------------------------------------------- /library/include/lvgl/UserData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/UserData.hpp -------------------------------------------------------------------------------- /library/include/lvgl/Window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/Window.hpp -------------------------------------------------------------------------------- /library/include/lvgl/macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/include/lvgl/macros.hpp -------------------------------------------------------------------------------- /library/src/Animation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/src/Animation.cpp -------------------------------------------------------------------------------- /library/src/Arc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/src/Arc.cpp -------------------------------------------------------------------------------- /library/src/AssetFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/src/AssetFile.cpp -------------------------------------------------------------------------------- /library/src/Bar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/src/Bar.cpp -------------------------------------------------------------------------------- /library/src/Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/src/Button.cpp -------------------------------------------------------------------------------- /library/src/ButtonMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/src/ButtonMatrix.cpp -------------------------------------------------------------------------------- /library/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/src/CMakeLists.txt -------------------------------------------------------------------------------- /library/src/Calendar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/src/Calendar.cpp -------------------------------------------------------------------------------- /library/src/Canvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/src/Canvas.cpp -------------------------------------------------------------------------------- /library/src/Chart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/src/Chart.cpp -------------------------------------------------------------------------------- /library/src/CheckBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/src/CheckBox.cpp -------------------------------------------------------------------------------- /library/src/Color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/src/Color.cpp -------------------------------------------------------------------------------- /library/src/ColorWheel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/src/ColorWheel.cpp -------------------------------------------------------------------------------- /library/src/Dropdown.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/src/Dropdown.cpp -------------------------------------------------------------------------------- /library/src/Event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/src/Event.cpp -------------------------------------------------------------------------------- /library/src/EventBus.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Tyler Gilbert on 10/4/22. 3 | // 4 | 5 | #include "lvgl/EventBus.hpp" 6 | -------------------------------------------------------------------------------- /library/src/Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/src/Font.cpp -------------------------------------------------------------------------------- /library/src/Group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/src/Group.cpp -------------------------------------------------------------------------------- /library/src/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/src/Image.cpp -------------------------------------------------------------------------------- /library/src/ImageButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/src/ImageButton.cpp -------------------------------------------------------------------------------- /library/src/Keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/src/Keyboard.cpp -------------------------------------------------------------------------------- /library/src/Label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/src/Label.cpp -------------------------------------------------------------------------------- /library/src/Line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/src/Line.cpp -------------------------------------------------------------------------------- /library/src/List.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/src/List.cpp -------------------------------------------------------------------------------- /library/src/Lvgl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/src/Lvgl.cpp -------------------------------------------------------------------------------- /library/src/MessageBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/src/MessageBox.cpp -------------------------------------------------------------------------------- /library/src/Meter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/src/Meter.cpp -------------------------------------------------------------------------------- /library/src/Object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/src/Object.cpp -------------------------------------------------------------------------------- /library/src/PeriodicTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/src/PeriodicTimer.cpp -------------------------------------------------------------------------------- /library/src/Roller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/src/Roller.cpp -------------------------------------------------------------------------------- /library/src/Runtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/src/Runtime.cpp -------------------------------------------------------------------------------- /library/src/Screen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/src/Screen.cpp -------------------------------------------------------------------------------- /library/src/Slider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/src/Slider.cpp -------------------------------------------------------------------------------- /library/src/SpinBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/src/SpinBox.cpp -------------------------------------------------------------------------------- /library/src/Spinner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/src/Spinner.cpp -------------------------------------------------------------------------------- /library/src/Style.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/src/Style.cpp -------------------------------------------------------------------------------- /library/src/Switch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/src/Switch.cpp -------------------------------------------------------------------------------- /library/src/TabView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/src/TabView.cpp -------------------------------------------------------------------------------- /library/src/Table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/src/Table.cpp -------------------------------------------------------------------------------- /library/src/TextArea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/src/TextArea.cpp -------------------------------------------------------------------------------- /library/src/Theme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/src/Theme.cpp -------------------------------------------------------------------------------- /library/src/TileView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/src/TileView.cpp -------------------------------------------------------------------------------- /library/src/Types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/src/Types.cpp -------------------------------------------------------------------------------- /library/src/UserData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/src/UserData.cpp -------------------------------------------------------------------------------- /library/src/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/library/src/Window.cpp -------------------------------------------------------------------------------- /lvgl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/lvgl/CMakeLists.txt -------------------------------------------------------------------------------- /lvgl/dirent_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/lvgl/dirent_windows.h -------------------------------------------------------------------------------- /lvgl/include/lvgl/lv_conf_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/lvgl/include/lvgl/lv_conf_template.h -------------------------------------------------------------------------------- /lvgl/include/lvgl/lvgl_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/lvgl/include/lvgl/lvgl_api.h -------------------------------------------------------------------------------- /lvgl/lvgl.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/lvgl/lvgl.cmake -------------------------------------------------------------------------------- /lvgl/lvgl_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/lvgl/lvgl_api.c -------------------------------------------------------------------------------- /lvgl/lvgl_api_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/lvgl/lvgl_api_fs.c -------------------------------------------------------------------------------- /lvgl/lvgl_api_png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/lvgl/lvgl_api_png.c -------------------------------------------------------------------------------- /simulator/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/simulator/.clang-format -------------------------------------------------------------------------------- /simulator/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/simulator/CMakeLists.txt -------------------------------------------------------------------------------- /simulator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/simulator/LICENSE -------------------------------------------------------------------------------- /simulator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/simulator/README.md -------------------------------------------------------------------------------- /simulator/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/simulator/demo.png -------------------------------------------------------------------------------- /simulator/lvgl_qt/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/simulator/lvgl_qt/.clang-format -------------------------------------------------------------------------------- /simulator/lvgl_qt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/simulator/lvgl_qt/CMakeLists.txt -------------------------------------------------------------------------------- /simulator/lvgl_qt/LvglGraphicsView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/simulator/lvgl_qt/LvglGraphicsView.cpp -------------------------------------------------------------------------------- /simulator/lvgl_qt/LvglGraphicsView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/simulator/lvgl_qt/LvglGraphicsView.hpp -------------------------------------------------------------------------------- /simulator/lvgl_qt/LvglRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/simulator/lvgl_qt/LvglRenderer.cpp -------------------------------------------------------------------------------- /simulator/lvgl_qt/LvglRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/simulator/lvgl_qt/LvglRenderer.hpp -------------------------------------------------------------------------------- /simulator/lvgl_qt/MainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/simulator/lvgl_qt/MainWindow.cpp -------------------------------------------------------------------------------- /simulator/lvgl_qt/MainWindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/simulator/lvgl_qt/MainWindow.hpp -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/sl_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/tests/sl_settings.json -------------------------------------------------------------------------------- /tests/src/UnitTest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/tests/src/UnitTest.hpp -------------------------------------------------------------------------------- /tests/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/tests/src/main.cpp -------------------------------------------------------------------------------- /tests/src/sl_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StratifyLabs/LvglAPI/HEAD/tests/src/sl_config.h --------------------------------------------------------------------------------