mirror of
https://github.com/lvgl/lvgl.git
synced 2026-05-28 05:26:18 +08:00
refactor(theme): flatten theme directory structure (#10115)
This commit is contained in:
+3
-3
@@ -171,10 +171,10 @@
|
|||||||
#include "stdlib/lv_mem.h"
|
#include "stdlib/lv_mem.h"
|
||||||
#include "stdlib/lv_sprintf.h"
|
#include "stdlib/lv_sprintf.h"
|
||||||
#include "stdlib/lv_string.h"
|
#include "stdlib/lv_string.h"
|
||||||
#include "themes/default/lv_theme_default.h"
|
|
||||||
#include "themes/lv_theme.h"
|
#include "themes/lv_theme.h"
|
||||||
#include "themes/mono/lv_theme_mono.h"
|
#include "themes/lv_theme_default.h"
|
||||||
#include "themes/simple/lv_theme_simple.h"
|
#include "themes/lv_theme_mono.h"
|
||||||
|
#include "themes/lv_theme_simple.h"
|
||||||
#include "tick/lv_tick.h"
|
#include "tick/lv_tick.h"
|
||||||
#include "widgets/lv_3dtexture.h"
|
#include "widgets/lv_3dtexture.h"
|
||||||
#include "widgets/lv_animimage.h"
|
#include "widgets/lv_animimage.h"
|
||||||
|
|||||||
@@ -133,9 +133,9 @@ void lv_theme_set_external_data(lv_theme_t * theme, void * data, void (* free_cb
|
|||||||
* MACROS
|
* MACROS
|
||||||
**********************/
|
**********************/
|
||||||
|
|
||||||
#include "default/lv_theme_default.h"
|
#include "lv_theme_default.h"
|
||||||
#include "mono/lv_theme_mono.h"
|
#include "lv_theme_mono.h"
|
||||||
#include "simple/lv_theme_simple.h"
|
#include "lv_theme_simple.h"
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
} /*extern "C"*/
|
} /*extern "C"*/
|
||||||
|
|||||||
+1
-1
@@ -13,7 +13,7 @@ extern "C" {
|
|||||||
/*********************
|
/*********************
|
||||||
* INCLUDES
|
* INCLUDES
|
||||||
*********************/
|
*********************/
|
||||||
#include "../lv_theme.h"
|
#include "lv_theme.h"
|
||||||
|
|
||||||
#if LV_USE_THEME_DEFAULT
|
#if LV_USE_THEME_DEFAULT
|
||||||
|
|
||||||
@@ -13,7 +13,7 @@ extern "C" {
|
|||||||
/*********************
|
/*********************
|
||||||
* INCLUDES
|
* INCLUDES
|
||||||
*********************/
|
*********************/
|
||||||
#include "../lv_theme.h"
|
#include "lv_theme.h"
|
||||||
|
|
||||||
#if LV_USE_THEME_MONO
|
#if LV_USE_THEME_MONO
|
||||||
|
|
||||||
+2
-2
@@ -13,8 +13,8 @@ extern "C" {
|
|||||||
/*********************
|
/*********************
|
||||||
* INCLUDES
|
* INCLUDES
|
||||||
*********************/
|
*********************/
|
||||||
#include "../lv_theme.h"
|
#include "lv_theme.h"
|
||||||
#include "../../display/lv_display.h"
|
#include "../display/lv_display.h"
|
||||||
|
|
||||||
#if LV_USE_THEME_SIMPLE
|
#if LV_USE_THEME_SIMPLE
|
||||||
|
|
||||||
Reference in New Issue
Block a user