code
stringlengths
1
1.05M
repo_name
stringlengths
6
83
path
stringlengths
3
242
language
stringclasses
222 values
license
stringclasses
20 values
size
int64
1
1.05M
/** * @file hal_indev.c * * @description Input device HAL interface * */ /********************* * INCLUDES *********************/ #include "../lv_hal/lv_hal_indev.h" #include "../lv_core/lv_indev.h" #include "../lv_misc/lv_mem.h" #include "../lv_misc/lv_gc.h" #include "lv_hal_disp.h" #if defined(LV_GC_INC...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_hal/lv_hal_indev.c
C
apache-2.0
4,472
/** * @file lv_hal_indev.h * * @description Input Device HAL interface layer header file * */ #ifndef LV_HAL_INDEV_H #define LV_HAL_INDEV_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #ifdef LV_CONF_INCLUDE_SIMPLE #include "lv_conf.h" #else #include ".....
YifuLiu/AliOS-Things
components/littlevgl/src/lv_hal/lv_hal_indev.h
C
apache-2.0
6,580
/** * @file systick.c * Provide access to the system tick with 1 millisecond resolution */ /********************* * INCLUDES *********************/ #ifdef LV_CONF_INCLUDE_SIMPLE #include "lv_conf.h" #else #include "../../lv_conf.h" #endif #include "lv_hal_tick.h" #include <stddef.h> #if LV_TICK_CUSTOM == 1...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_hal/lv_hal_tick.c
C
apache-2.0
2,181
/** * @file lv_hal_tick.h * Provide access to the system tick with 1 millisecond resolution */ #ifndef LV_HAL_TICK_H #define LV_HAL_TICK_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #ifdef LV_CONF_INCLUDE_SIMPLE #include "lv_conf.h" #else #include "../.....
YifuLiu/AliOS-Things
components/littlevgl/src/lv_hal/lv_hal_tick.h
C
apache-2.0
1,379
/** * @file anim.c * */ /********************* * INCLUDES *********************/ #include "lv_anim.h" #if LV_USE_ANIMATION #include <stddef.h> #include <string.h> #include "../lv_hal/lv_hal_tick.h" #include "lv_task.h" #include "lv_math.h" #include "lv_gc.h" #if defined(LV_GC_INCLUDE) #include LV_GC_INCLUD...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_misc/lv_anim.c
C
apache-2.0
13,103
/** * @file anim.h * */ #ifndef ANIM_H #define ANIM_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #ifdef LV_CONF_INCLUDE_SIMPLE #include "lv_conf.h" #else #include "../../lv_conf.h" #endif #include <stdint.h> #include <stdbool.h> #include <string.h> /**...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_misc/lv_anim.h
C
apache-2.0
10,168
/** * @file lv_area.c * */ /********************* * INCLUDES *********************/ #ifdef LV_CONF_INCLUDE_SIMPLE #include "lv_conf.h" #else #include "../../lv_conf.h" #endif #include "lv_area.h" #include "lv_math.h" /********************* * DEFINES *********************/ /********************** *...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_misc/lv_area.c
C
apache-2.0
4,990
/** * @file lv_area.h * */ #ifndef LV_AREA_H #define LV_AREA_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include <string.h> #include <stdbool.h> #include <stdint.h> #ifdef LV_CONF_INCLUDE_SIMPLE #include "lv_conf.h" #else #include "../../lv_conf.h" #en...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_misc/lv_area.h
C
apache-2.0
4,380
/** * @file lv_async.c * */ /********************* * INCLUDES *********************/ #include "lv_async.h" /********************* * DEFINES *********************/ /********************** * TYPEDEFS **********************/ /********************** * STATIC PROTOTYPES **********************...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_misc/lv_async.c
C
apache-2.0
1,506
/** * @file lv_async.h * */ #ifndef LV_ASYNC_H #define LV_ASYNC_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include "lv_task.h" #include "lv_types.h" /********************* * DEFINES *********************/ /********************** * TYPE...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_misc/lv_async.h
C
apache-2.0
1,255
/** * @file lv_circ.c * Circle drawing algorithm (with Bresenham) * Only a 1/8 circle is calculated. Use CIRC_OCT1_X, CIRC_OCT1_Y macros to get * the other octets. */ /********************* * INCLUDES *********************/ #include "lv_circ.h" /********************* * DEFINES *********************...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_misc/lv_circ.c
C
apache-2.0
1,720
/** * @file lv_circ.h * */ #ifndef LV_CIRC_H #define LV_CIRC_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include <stddef.h> #include "lv_area.h" /********************* * DEFINES *********************/ #define LV_CIRC_OCT1_X(p) (p.x) #define LV_...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_misc/lv_circ.h
C
apache-2.0
1,707
/** * @file lv_color.c * */ /********************* * INCLUDES *********************/ #include "lv_color.h" /********************* * DEFINES *********************/ /********************** * TYPEDEFS **********************/ /********************** * STATIC PROTOTYPES **********************/...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_misc/lv_color.c
C
apache-2.0
2,847
/** * @file lv_color.h * */ #ifndef LV_COLOR_H #define LV_COLOR_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #ifdef LV_CONF_INCLUDE_SIMPLE #include "lv_conf.h" #else #include "../../lv_conf.h" #endif /*Error checking*/ #if LV_COLOR_DEPTH == 24 #error "L...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_misc/lv_color.h
C
apache-2.0
12,681
/** * @file lv_fs.c * */ /********************* * INCLUDES *********************/ #include "lv_fs.h" #if LV_USE_FILESYSTEM #include "lv_ll.h" #include <string.h> #include "lv_gc.h" #if defined(LV_GC_INCLUDE) #include LV_GC_INCLUDE #endif /* LV_ENABLE_GC */ /********************* * DEFINES *********...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_misc/lv_fs.c
C
apache-2.0
16,075
/** * @file lv_fs.h * */ #ifndef LV_FS_H #define LV_FS_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #ifdef LV_CONF_INCLUDE_SIMPLE #include "lv_conf.h" #else #include "../../lv_conf.h" #endif #if LV_USE_FILESYSTEM #include <stdint.h> #include <stdbool.h...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_misc/lv_fs.h
C
apache-2.0
9,401
/** * @file lv_gc.c * */ /********************* * INCLUDES *********************/ #include "lv_gc.h" /********************* * DEFINES *********************/ /********************** * TYPEDEFS **********************/ /********************** * STATIC PROTOTYPES **********************/ /**...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_misc/lv_gc.c
C
apache-2.0
679
/** * @file lv_gc.h * */ #ifndef LV_GC_H #define LV_GC_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #ifdef LV_CONF_INCLUDE_SIMPLE #include "lv_conf.h" #else #include "../../lv_conf.h" #endif #include <stdint.h> #include <stdbool.h> #include "lv_mem.h" ...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_misc/lv_gc.h
C
apache-2.0
2,340
/** * @file lv_ll.c * Handle linked lists. * The nodes are dynamically allocated by the 'lv_mem' module, */ /********************* * INCLUDES *********************/ #include <stdint.h> #include <string.h> #include "lv_ll.h" #include "lv_mem.h" /********************* * DEFINES *********************/...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_misc/lv_ll.c
C
apache-2.0
11,575
/** * @file lv_ll.c * Handle linked lists. The nodes are dynamically allocated by the 'lv_mem' module. */ #ifndef LV_LL_H #define LV_LL_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include "lv_mem.h" #include <stdint.h> #include <stddef.h> #include <std...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_misc/lv_ll.h
C
apache-2.0
4,048
/** * @file lv_log.c * */ /********************* * INCLUDES *********************/ #include "lv_log.h" #if LV_USE_LOG #if LV_LOG_PRINTF #include <stdio.h> #endif /********************* * DEFINES *********************/ /********************** * TYPEDEFS **********************/ /**************...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_misc/lv_log.c
C
apache-2.0
1,777
/** * @file lv_log.h * */ #ifndef LV_LOG_H #define LV_LOG_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #ifdef LV_CONF_INCLUDE_SIMPLE #include "lv_conf.h" #else #include "../../lv_conf.h" #endif #include <stdint.h> /********************* * DEFINES ...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_misc/lv_log.h
C
apache-2.0
5,971
/** * @file lv_math.c * */ /********************* * INCLUDES *********************/ #include "lv_math.h" #include <stdbool.h> #include <stdlib.h> /********************* * DEFINES *********************/ /********************** * TYPEDEFS **********************/ /********************** * STA...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_misc/lv_math.c
C
apache-2.0
2,971
/** * @file math_base.h * */ #ifndef LV_MATH_H #define LV_MATH_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include <stdint.h> /********************* * DEFINES *********************/ #define LV_MATH_MIN(a, b) ((a) < (b) ? (a) : (b)) #define LV_M...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_misc/lv_math.h
C
apache-2.0
1,653
/** * @file lv_mem.c * General and portable implementation of malloc and free. * The dynamic memory monitoring is also supported. */ /********************* * INCLUDES *********************/ #include "lv_mem.h" #include "lv_math.h" #include <string.h> #if LV_MEM_CUSTOM != 0 #include LV_MEM_CUSTOM_INCLUDE #e...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_misc/lv_mem.c
C
apache-2.0
11,811
/** * @file lv_mem.h * */ #ifndef LV_MEM_H #define LV_MEM_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #ifdef LV_CONF_INCLUDE_SIMPLE #include "lv_conf.h" #else #include "../../lv_conf.h" #endif #include <stdint.h> #include <stddef.h> #include "lv_log.h"...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_misc/lv_mem.h
C
apache-2.0
3,956
CSRCS += lv_circ.c CSRCS += lv_area.c CSRCS += lv_task.c CSRCS += lv_fs.c CSRCS += lv_anim.c CSRCS += lv_mem.c CSRCS += lv_ll.c CSRCS += lv_color.c CSRCS += lv_txt.c CSRCS += lv_math.c CSRCS += lv_log.c CSRCS += lv_gc.c CSRCS += lv_utils.c CSRCS += lv_async.c DEPPATH += --dep-path $(LVGL_DIR)/lvgl/src/lv_misc VPATH +=...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_misc/lv_misc.mk
Makefile
apache-2.0
395
/** * @file lv_task.c * An 'lv_task' is a void (*fp) (void* param) type function which will be called periodically. * A priority (5 levels + disable) can be assigned to lv_tasks. */ /********************* * INCLUDES *********************/ #include <stddef.h> #include "lv_task.h" #include "../lv_hal/lv_hal_...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_misc/lv_task.c
C
apache-2.0
10,967
/** * @file lv_task.c * An 'lv_task' is a void (*fp) (void* param) type function which will be called periodically. * A priority (5 levels + disable) can be assigned to lv_tasks. */ #ifndef LV_TASK_H #define LV_TASK_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES **************...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_misc/lv_task.h
C
apache-2.0
4,065
/** * @file lv_templ.c * */ /********************* * INCLUDES *********************/ /********************* * DEFINES *********************/ /********************** * TYPEDEFS **********************/ /* This typedef exists purely to keep -Wpedantic happy when the file is empty. */ /* It can ...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_misc/lv_templ.c
C
apache-2.0
720
/** * @file lv_templ.h * */ #ifndef LV_TEMPL_H #define LV_TEMPL_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ /********************* * DEFINES *********************/ /********************** * TYPEDEFS **********************/ /************...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_misc/lv_templ.h
C
apache-2.0
511
/** * @file lv_text.c * */ /********************* * INCLUDES *********************/ #include "lv_txt.h" #include "lv_math.h" /********************* * DEFINES *********************/ #define NO_BREAK_FOUND UINT32_MAX /********************** * TYPEDEFS **********************/ /*****************...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_misc/lv_txt.c
C
apache-2.0
24,092
/** * @file lv_text.h * */ #ifndef LV_TXT_H #define LV_TXT_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #ifdef LV_CONF_INCLUDE_SIMPLE #include "lv_conf.h" #else #include "../../lv_conf.h" #endif #include <stdbool.h> #include "lv_area.h" #include "lv_are...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_misc/lv_txt.h
C
apache-2.0
6,950
/** * @file lv_types.h * */ #ifndef LV_TYPES_H #define LV_TYPES_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ /********************* * DEFINES *********************/ /********************** * TYPEDEFS **********************/ /** * Little...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_misc/lv_types.h
C
apache-2.0
858
/** * @file lv_utils.c * */ /********************* * INCLUDES *********************/ #include <stdbool.h> #include "lv_utils.h" #include "lv_math.h" /********************* * DEFINES *********************/ /********************** * TYPEDEFS **********************/ /********************** * ...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_misc/lv_utils.c
C
apache-2.0
2,759
/** * @file lv_utils.h * */ #ifndef LV_UTILS_H #define LV_UTILS_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #include <stdint.h> #include <stddef.h> /********************* * DEFINES *********************/ /********************** * TYPEDEFS...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_misc/lv_utils.h
C
apache-2.0
1,630
/** * @file lv_arc.c * */ /********************* * INCLUDES *********************/ #include "lv_arc.h" #if LV_USE_ARC != 0 #include "../lv_misc/lv_math.h" #include "../lv_draw/lv_draw_arc.h" #include "../lv_themes/lv_theme.h" /********************* * DEFINES *********************/ /****************...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_arc.c
C
apache-2.0
8,691
/** * @file lv_arc.h * */ #ifndef LV_ARC_H #define LV_ARC_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #ifdef LV_CONF_INCLUDE_SIMPLE #include "lv_conf.h" #else #include "../../lv_conf.h" #endif #if LV_USE_ARC != 0 #include "../lv_core/lv_obj.h" /*****...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_arc.h
C
apache-2.0
2,537
/** * @file lv_bar.c * */ /********************* * INCLUDES *********************/ #include "lv_bar.h" #if LV_USE_BAR != 0 #include "../lv_draw/lv_draw.h" #include "../lv_themes/lv_theme.h" #include "../lv_misc/lv_anim.h" #include <stdio.h> /********************* * DEFINES *********************/ ...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_bar.c
C
apache-2.0
17,038
/** * @file lv_bar.h * */ #ifndef LV_BAR_H #define LV_BAR_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #ifdef LV_CONF_INCLUDE_SIMPLE #include "lv_conf.h" #else #include "../../lv_conf.h" #endif #if LV_USE_BAR != 0 #include "../lv_core/lv_obj.h" #includ...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_bar.h
C
apache-2.0
4,694
/** * @file lv_btn.c * */ /********************* * INCLUDES *********************/ #include "lv_btn.h" #if LV_USE_BTN != 0 #include <string.h> #include "../lv_core/lv_group.h" #include "../lv_draw/lv_draw.h" #include "../lv_themes/lv_theme.h" #include "../lv_misc/lv_area.h" #include "../lv_misc/lv_color.h"...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_btn.c
C
apache-2.0
24,054
/** * @file lv_btn.h * */ #ifndef LV_BTN_H #define LV_BTN_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #ifdef LV_CONF_INCLUDE_SIMPLE #include "lv_conf.h" #else #include "../../lv_conf.h" #endif #if LV_USE_BTN != 0 /*Testing of dependencies*/ #if LV_USE...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_btn.h
C
apache-2.0
8,004
/** * @file lv_btnm.c * */ /********************* * INCLUDES *********************/ #include "lv_btnm.h" #if LV_USE_BTNM != 0 #include "../lv_core/lv_group.h" #include "../lv_draw/lv_draw.h" #include "../lv_core/lv_refr.h" #include "../lv_themes/lv_theme.h" #include "../lv_misc/lv_txt.h" /*****************...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_btnm.c
C
apache-2.0
39,642
/** * @file lv_btnm.h * */ #ifndef LV_BTNM_H #define LV_BTNM_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #ifdef LV_CONF_INCLUDE_SIMPLE #include "lv_conf.h" #else #include "../../lv_conf.h" #endif #if LV_USE_BTNM != 0 #include "../lv_core/lv_obj.h" #in...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_btnm.h
C
apache-2.0
9,694
/** * @file lv_calendar.c * */ /********************* * INCLUDES *********************/ #include "lv_calendar.h" #if LV_USE_CALENDAR != 0 #include "../lv_draw/lv_draw.h" #include "../lv_hal/lv_hal_indev.h" #include "../lv_misc/lv_utils.h" #include "../lv_core/lv_indev.h" #include "../lv_themes/lv_theme.h" #...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_calendar.c
C
apache-2.0
37,056
/** * @file lv_calendar.h * */ #ifndef LV_CALENDAR_H #define LV_CALENDAR_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #ifdef LV_CONF_INCLUDE_SIMPLE #include "lv_conf.h" #else #include "../../lv_conf.h" #endif #if LV_USE_CALENDAR != 0 #include "../lv_co...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_calendar.h
C
apache-2.0
7,229
/** * @file lv_canvas.c * */ /********************* * INCLUDES *********************/ #include <stdlib.h> #include "lv_canvas.h" #include "../lv_misc/lv_math.h" #include "../lv_draw/lv_draw.h" #include "../lv_core/lv_refr.h" #if LV_USE_CANVAS != 0 /********************* * DEFINES *******************...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_canvas.c
C
apache-2.0
27,458
/** * @file lv_canvas.h * */ #ifndef LV_CANVAS_H #define LV_CANVAS_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #ifdef LV_CONF_INCLUDE_SIMPLE #include "lv_conf.h" #else #include "../../lv_conf.h" #endif #if LV_USE_CANVAS != 0 #include "../lv_core/lv_ob...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_canvas.h
C
apache-2.0
8,989
/** * @file lv_cb.c * */ /********************* * INCLUDES *********************/ #include "lv_cb.h" #if LV_USE_CB != 0 #include "../lv_core/lv_group.h" #include "../lv_themes/lv_theme.h" /********************* * DEFINES *********************/ /********************** * TYPEDEFS *************...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_cb.c
C
apache-2.0
11,821
/** * @file lv_cb.h * */ #ifndef LV_CB_H #define LV_CB_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #ifdef LV_CONF_INCLUDE_SIMPLE #include "lv_conf.h" #else #include "../../lv_conf.h" #endif #if LV_USE_CB != 0 /*Testing of dependencies*/ #if LV_USE_BTN...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_cb.h
C
apache-2.0
4,354
/** * @file lv_chart.c * */ /********************* * INCLUDES *********************/ #include "lv_chart.h" #if LV_USE_CHART != 0 #include "../lv_core/lv_refr.h" #include "../lv_draw/lv_draw.h" #include "../lv_themes/lv_theme.h" /********************* * DEFINES *********************/ #define LV_CHART...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_chart.c
C
apache-2.0
46,606
/** * @file lv_chart.h * */ #ifndef LV_CHART_H #define LV_CHART_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #ifdef LV_CONF_INCLUDE_SIMPLE #include "lv_conf.h" #else #include "../../lv_conf.h" #endif #if LV_USE_CHART != 0 #include "../lv_core/lv_obj.h"...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_chart.h
C
apache-2.0
11,596
/** * @file lv_cont.c * */ /********************* * INCLUDES *********************/ #include "lv_cont.h" #if LV_USE_CONT != 0 #include <stdbool.h> #include <stdint.h> #include <string.h> #include "../lv_draw/lv_draw.h" #include "../lv_draw/lv_draw_basic.h" #include "../lv_themes/lv_theme.h" #include "../l...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_cont.c
C
apache-2.0
23,614
/** * @file lv_cont.h * */ #ifndef LV_CONT_H #define LV_CONT_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #ifdef LV_CONF_INCLUDE_SIMPLE #include "lv_conf.h" #else #include "../../lv_conf.h" #endif #if LV_USE_CONT != 0 #include "../lv_core/lv_obj.h" /*...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_cont.h
C
apache-2.0
5,782
/** * @file lv_ddlist.c * */ /********************* * INCLUDES *********************/ #include "lv_ddlist.h" #if LV_USE_DDLIST != 0 #include "../lv_draw/lv_draw.h" #include "../lv_core/lv_group.h" #include "../lv_core/lv_indev.h" #include "../lv_themes/lv_theme.h" #include "../lv_font/lv_symbol_def.h" #incl...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_ddlist.c
C
apache-2.0
33,402
/** * @file lv_ddlist.h * */ #ifndef LV_DDLIST_H #define LV_DDLIST_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #ifdef LV_CONF_INCLUDE_SIMPLE #include "lv_conf.h" #else #include "../../lv_conf.h" #endif #if LV_USE_DDLIST != 0 /*Testing of dependencies*...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_ddlist.h
C
apache-2.0
7,863
/** * @file lv_gauge.c * */ /********************* * INCLUDES *********************/ #include "lv_gauge.h" #if LV_USE_GAUGE != 0 #include "../lv_draw/lv_draw.h" #include "../lv_themes/lv_theme.h" #include "../lv_misc/lv_txt.h" #include "../lv_misc/lv_math.h" #include "../lv_misc/lv_utils.h" #include <stdio....
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_gauge.c
C
apache-2.0
15,915
/** * @file lv_gauge.h * */ #ifndef LV_GAUGE_H #define LV_GAUGE_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #ifdef LV_CONF_INCLUDE_SIMPLE #include "lv_conf.h" #else #include "../../lv_conf.h" #endif #if LV_USE_GAUGE != 0 /*Testing of dependencies*/ #i...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_gauge.h
C
apache-2.0
5,914
/** * @file lv_img.c * */ /********************* * INCLUDES *********************/ #include "lv_img.h" #if LV_USE_IMG != 0 /*Testing of dependencies*/ #if LV_USE_LABEL == 0 #error "lv_img: lv_label is required. Enable it in lv_conf.h (LV_USE_LABEL 1) " #endif #include "../lv_themes/lv_theme.h" #include "....
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_img.c
C
apache-2.0
12,693
/** * @file lv_img.h * */ #ifndef LV_IMG_H #define LV_IMG_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #ifdef LV_CONF_INCLUDE_SIMPLE #include "lv_conf.h" #else #include "../../lv_conf.h" #endif #if LV_USE_IMG != 0 #include "../lv_core/lv_obj.h" #includ...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_img.h
C
apache-2.0
4,563
/** * @file lv_imgbtn.c * */ /********************* * INCLUDES *********************/ #include "lv_imgbtn.h" #if LV_USE_IMGBTN != 0 /********************* * DEFINES *********************/ /********************** * TYPEDEFS **********************/ /********************** * STATIC PROTOTYPES...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_imgbtn.c
C
apache-2.0
12,238
/** * @file lv_imgbtn.h * */ #ifndef LV_IMGBTN_H #define LV_IMGBTN_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #ifdef LV_CONF_INCLUDE_SIMPLE #include "lv_conf.h" #else #include "../../lv_conf.h" #endif #if LV_USE_IMGBTN != 0 /*Testing of dependencies*...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_imgbtn.h
C
apache-2.0
6,619
/** * @file lv_kb.c * */ /********************* * INCLUDES *********************/ #include "lv_kb.h" #if LV_USE_KB != 0 #include "lv_ta.h" #include "../lv_themes/lv_theme.h" /********************* * DEFINES *********************/ #define LV_KB_CTRL_BTN_FLAGS (LV_BTNM_CTRL_NO_REPEAT | LV_BTNM_CTRL_C...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_kb.c
C
apache-2.0
16,176
/** * @file lv_kb.h * */ #ifndef LV_KB_H #define LV_KB_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #ifdef LV_CONF_INCLUDE_SIMPLE #include "lv_conf.h" #else #include "../../lv_conf.h" #endif #if LV_USE_KB != 0 /*Testing of dependencies*/ #if LV_USE_BTN...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_kb.h
C
apache-2.0
5,239
/** * @file lv_rect.c * */ /********************* * INCLUDES *********************/ #include "lv_label.h" #if LV_USE_LABEL != 0 #include "../lv_core/lv_obj.h" #include "../lv_core/lv_group.h" #include "../lv_misc/lv_color.h" #include "../lv_misc/lv_math.h" /********************* * DEFINES **********...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_label.c
C
apache-2.0
41,807
/** * @file lv_rect.h * */ #ifndef LV_LABEL_H #define LV_LABEL_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #ifdef LV_CONF_INCLUDE_SIMPLE #include "lv_conf.h" #else #include "../../lv_conf.h" #endif #if LV_USE_LABEL != 0 #include "../lv_core/lv_obj.h" ...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_label.h
C
apache-2.0
11,008
/** * @file lv_led.c * */ /********************* * INCLUDES *********************/ #include "lv_led.h" #if LV_USE_LED != 0 #include "../lv_themes/lv_theme.h" #include "../lv_draw/lv_draw.h" /********************* * DEFINES *********************/ #define LV_LED_WIDTH_DEF (LV_DPI / 3) #define LV_LED_H...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_led.c
C
apache-2.0
7,312
/** * @file lv_led.h * */ #ifndef LV_LED_H #define LV_LED_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #ifdef LV_CONF_INCLUDE_SIMPLE #include "lv_conf.h" #else #include "../../lv_conf.h" #endif #if LV_USE_LED != 0 #include "../lv_core/lv_obj.h" /*****...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_led.h
C
apache-2.0
2,610
/** * @file lv_line.c * */ /********************* * INCLUDES *********************/ #include "lv_line.h" #if LV_USE_LINE != 0 #include "../lv_draw/lv_draw.h" #include "../lv_misc/lv_math.h" #include <stdbool.h> #include <stdint.h> #include <string.h> /********************* * DEFINES ****************...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_line.c
C
apache-2.0
9,775
/** * @file lv_line.h * */ #ifndef LV_LINE_H #define LV_LINE_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #ifdef LV_CONF_INCLUDE_SIMPLE #include "lv_conf.h" #else #include "../../lv_conf.h" #endif #if LV_USE_LINE != 0 #include "../lv_core/lv_obj.h" /*...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_line.h
C
apache-2.0
4,064
/** * @file lv_list.c * */ /********************* * INCLUDES *********************/ #include "lv_list.h" #if LV_USE_LIST != 0 #include "../lv_core/lv_group.h" #include "../lv_themes/lv_theme.h" #include "../lv_misc/lv_anim.h" #include "../lv_misc/lv_math.h" /********************* * DEFINES *********...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_list.c
C
apache-2.0
33,264
/** * @file lv_list.h * */ #ifndef LV_LIST_H #define LV_LIST_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #ifdef LV_CONF_INCLUDE_SIMPLE #include "lv_conf.h" #else #include "../../lv_conf.h" #endif #if LV_USE_LIST != 0 /*Testing of dependencies*/ #if LV...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_list.h
C
apache-2.0
9,630
/** * @file lv_lmeter.c * */ /********************* * INCLUDES *********************/ #include "lv_lmeter.h" #if LV_USE_LMETER != 0 #include "../lv_draw/lv_draw.h" #include "../lv_themes/lv_theme.h" #include "../lv_core/lv_group.h" #include "../lv_misc/lv_math.h" /********************* * DEFINES ***...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_lmeter.c
C
apache-2.0
11,955
/** * @file lv_lmeter.h * */ #ifndef LV_LMETER_H #define LV_LMETER_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #ifdef LV_CONF_INCLUDE_SIMPLE #include "lv_conf.h" #else #include "../../lv_conf.h" #endif #if LV_USE_LMETER != 0 #include "../lv_core/lv_ob...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_lmeter.h
C
apache-2.0
3,983
/** * @file lv_mbox.c * */ /********************* * INCLUDES *********************/ #include "lv_mbox.h" #if LV_USE_MBOX != 0 #include "../lv_core/lv_group.h" #include "../lv_themes/lv_theme.h" #include "../lv_misc/lv_anim.h" #include "../lv_misc/lv_math.h" /********************* * DEFINES *********...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_mbox.c
C
apache-2.0
17,283
/** * @file lv_mbox.h * */ #ifndef LV_MBOX_H #define LV_MBOX_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #ifdef LV_CONF_INCLUDE_SIMPLE #include "lv_conf.h" #else #include "../../lv_conf.h" #endif #if LV_USE_MBOX != 0 /*Testing of dependencies*/ #if LV...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_mbox.h
C
apache-2.0
5,657
CSRCS += lv_arc.c CSRCS += lv_bar.c CSRCS += lv_cb.c CSRCS += lv_ddlist.c CSRCS += lv_kb.c CSRCS += lv_line.c CSRCS += lv_mbox.c CSRCS += lv_preload.c CSRCS += lv_roller.c CSRCS += lv_table.c CSRCS += lv_tabview.c CSRCS += lv_tileview.c CSRCS += lv_btn.c CSRCS += lv_calendar.c CSRCS += lv_chart.c CSRCS += lv_canvas.c C...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_objx.mk
Makefile
apache-2.0
743
/** * @file lv_templ.c * */ /* TODO Remove these instructions * Search an replace: template -> object normal name with lower case (e.g. button, label etc.) * templ -> object short name with lower case(e.g. btn, label etc) * TEMPL -> object short name with upper case (e.g. BT...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_objx_templ.c
C
apache-2.0
6,474
/** * @file lv_templ.h * */ /* TODO Remove these instructions * Search an replace: template -> object normal name with lower case (e.g. button, label etc.) * templ -> object short name with lower case(e.g. btn, label etc) * TEMPL -> object short name with upper case (e.g. BT...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_objx_templ.h
C
apache-2.0
2,334
/** * @file lv_page.c * */ /********************* * INCLUDES *********************/ #include "../lv_objx/lv_page.h" #if LV_USE_PAGE != 0 #include "../lv_core/lv_group.h" #include "../lv_draw/lv_draw.h" #include "../lv_themes/lv_theme.h" #include "../lv_core/lv_refr.h" #include "../lv_misc/lv_anim.h" #includ...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_page.c
C
apache-2.0
48,162
/** * @file lv_page.h * */ #ifndef LV_PAGE_H #define LV_PAGE_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #ifdef LV_CONF_INCLUDE_SIMPLE #include "lv_conf.h" #else #include "../../lv_conf.h" #endif #if LV_USE_PAGE != 0 /*Testing of dependencies*/ #if LV...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_page.h
C
apache-2.0
12,752
/** * @file lv_preload.c * */ /********************* * INCLUDES *********************/ #include "lv_preload.h" #if LV_USE_PRELOAD != 0 #include "../lv_misc/lv_math.h" #include "../lv_draw/lv_draw_rect.h" #include "../lv_draw/lv_draw_arc.h" #include "../lv_themes/lv_theme.h" /********************* * D...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_preload.c
C
apache-2.0
13,037
/** * @file lv_preload.h * */ #ifndef LV_PRELOAD_H #define LV_PRELOAD_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #ifdef LV_CONF_INCLUDE_SIMPLE #include "lv_conf.h" #else #include "../../lv_conf.h" #endif #if LV_USE_PRELOAD != 0 /*Testing of dependenc...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_preload.h
C
apache-2.0
4,734
/** * @file lv_roller.c * */ /********************* * INCLUDES *********************/ #include "lv_roller.h" #if LV_USE_ROLLER != 0 #include "../lv_draw/lv_draw.h" #include "../lv_core/lv_group.h" #include "../lv_themes/lv_theme.h" /********************* * DEFINES *********************/ #if LV_USE_A...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_roller.c
C
apache-2.0
26,708
/** * @file lv_roller.h * */ #ifndef LV_ROLLER_H #define LV_ROLLER_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #ifdef LV_CONF_INCLUDE_SIMPLE #include "lv_conf.h" #else #include "../../lv_conf.h" #endif #if LV_USE_ROLLER != 0 /*Testing of dependencies*...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_roller.h
C
apache-2.0
5,646
/** * @file lv_slider.c * */ /********************* * INCLUDES *********************/ #include "lv_slider.h" #if LV_USE_SLIDER != 0 #include "../lv_core/lv_group.h" #include "../lv_draw/lv_draw.h" #include "../lv_themes/lv_theme.h" #include "../lv_misc/lv_math.h" /********************* * DEFINES **...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_slider.c
C
apache-2.0
22,795
/** * @file lv_slider.h * */ #ifndef LV_SLIDER_H #define LV_SLIDER_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #ifdef LV_CONF_INCLUDE_SIMPLE #include "lv_conf.h" #else #include "../../lv_conf.h" #endif #if LV_USE_SLIDER != 0 /*Testing of dependencies*...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_slider.h
C
apache-2.0
4,737
/** * @file lv_spinbox.c * */ /********************* * INCLUDES *********************/ #include "lv_spinbox.h" #if LV_USE_SPINBOX != 0 #include "../lv_themes/lv_theme.h" #include "../lv_misc/lv_math.h" #include "../lv_misc/lv_utils.h" /********************* * DEFINES *********************/ /*******...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_spinbox.c
C
apache-2.0
13,084
/** * @file lv_spinbox.h * */ #ifndef LV_SPINBOX_H #define LV_SPINBOX_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #ifdef LV_CONF_INCLUDE_SIMPLE #include "lv_conf.h" #else #include "../../lv_conf.h" #endif #if LV_USE_SPINBOX != 0 /*Testing of dependenc...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_spinbox.h
C
apache-2.0
4,605
/** * @file lv_sw.c * */ /********************* * INCLUDES *********************/ #include "lv_sw.h" #if LV_USE_SW != 0 /*Testing of dependencies*/ #if LV_USE_SLIDER == 0 #error "lv_sw: lv_slider is required. Enable it in lv_conf.h (LV_USE_SLIDER 1) " #endif #include "../lv_themes/lv_theme.h" #include "....
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_sw.c
C
apache-2.0
12,072
/** * @file lv_sw.h * */ #ifndef LV_SW_H #define LV_SW_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #ifdef LV_CONF_INCLUDE_SIMPLE #include "lv_conf.h" #else #include "../../lv_conf.h" #endif #if LV_USE_SW != 0 /*Testing of dependencies*/ #if LV_USE_SLI...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_sw.h
C
apache-2.0
3,979
/** * @file lv_ta.c * */ /********************* * INCLUDES *********************/ #include "lv_ta.h" #if LV_USE_TA != 0 #include <string.h> #include "../lv_core/lv_group.h" #include "../lv_core/lv_refr.h" #include "../lv_draw/lv_draw.h" #include "../lv_themes/lv_theme.h" #include "../lv_misc/lv_anim.h" #incl...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_ta.c
C
apache-2.0
63,029
/** * @file lv_ta.h * */ #ifndef LV_TA_H #define LV_TA_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #ifdef LV_CONF_INCLUDE_SIMPLE #include "lv_conf.h" #else #include "../../lv_conf.h" #endif #if LV_USE_TA != 0 /*Testing of dependencies*/ #if LV_USE_PAG...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_ta.h
C
apache-2.0
13,972
/** * @file lv_table.c * */ /********************* * INCLUDES *********************/ #include "lv_table.h" #if LV_USE_TABLE != 0 #include "../lv_misc/lv_txt.h" #include "../lv_misc/lv_math.h" #include "../lv_draw/lv_draw_label.h" #include "../lv_themes/lv_theme.h" /********************* * DEFINES **...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_table.c
C
apache-2.0
29,346
/** * @file lv_table.h * */ #ifndef LV_TABLE_H #define LV_TABLE_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #ifdef LV_CONF_INCLUDE_SIMPLE #include "lv_conf.h" #else #include "../../lv_conf.h" #endif #if LV_USE_TABLE != 0 /*Testing of dependencies*/ #i...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_table.h
C
apache-2.0
7,379
/** * @file lv_tab.c * */ /********************* * INCLUDES *********************/ #include "lv_tabview.h" #if LV_USE_TABVIEW != 0 #include "lv_btnm.h" #include "../lv_themes/lv_theme.h" #include "../lv_misc/lv_anim.h" #include "../lv_core/lv_disp.h" /********************* * DEFINES ****************...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_tabview.c
C
apache-2.0
42,002
/** * @file lv_tabview.h * */ #ifndef LV_TABVIEW_H #define LV_TABVIEW_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #ifdef LV_CONF_INCLUDE_SIMPLE #include "lv_conf.h" #else #include "../../lv_conf.h" #endif #if LV_USE_TABVIEW != 0 /*Testing of dependenc...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_tabview.h
C
apache-2.0
6,131
/** * @file lv_tileview.c * */ /********************* * INCLUDES *********************/ #include "lv_tileview.h" #if LV_USE_TILEVIEW != 0 #include <stdbool.h> #include "lv_cont.h" #include "../lv_themes/lv_theme.h" /********************* * DEFINES *********************/ #if LV_USE_ANIMATION #ifndef ...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_tileview.c
C
apache-2.0
19,839
/** * @file lv_tileview.h * */ #ifndef LV_TILEVIEW_H #define LV_TILEVIEW_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #ifdef LV_CONF_INCLUDE_SIMPLE #include "lv_conf.h" #else #include "../../lv_conf.h" #endif #if LV_USE_TILEVIEW != 0 #include "../lv_ob...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_tileview.h
C
apache-2.0
4,516
/** * @file lv_win.c * */ /********************* * INCLUDES *********************/ #include "lv_win.h" #if LV_USE_WIN != 0 #include "../lv_themes/lv_theme.h" #include "../lv_core/lv_disp.h" /********************* * DEFINES *********************/ /********************** * TYPEDEFS ***********...
YifuLiu/AliOS-Things
components/littlevgl/src/lv_objx/lv_win.c
C
apache-2.0
17,813