Minor updates after ddlist added

This commit is contained in:
Gabor
2017-02-06 10:07:25 +01:00
parent 5da17ebf50
commit ca9b423f70
3 changed files with 16 additions and 0 deletions

View File

@@ -139,6 +139,12 @@
/*Button matrix (dependencies: lv_rect, lv_label)*/
#define USE_LV_BTNM 1
/*Drop down list (dependencies: lv_page, lv_btn_t, lv_label_t)*/
#define USE_LV_DDLIST 1
#if USE_LV_DDLIST != 0
#define LV_DDLIST_ANIM_TIME 100 /*DDL open/close animation in milliseconds (0: disable animation)*/
#endif
/*Window (dependencies: lv_rect, lv_btn, lv_label, lv_img, lv_page)*/
#define USE_LV_WIN 1

View File

@@ -121,11 +121,20 @@ bool lv_templ_signal(lv_obj_t * templ, lv_signal_t sign, void * param)
* Setter functions
*====================*/
/*
* New object specific "set" function comes here
*/
/*=====================
* Getter functions
*====================*/
/*
* New object specific "get" function comes here
*/
/**
* Return with a pointer to a built-in style and/or copy it to a variable
* @param style a style name from lv_templs_builtin_t enum

1
lvgl.h
View File

@@ -41,6 +41,7 @@
#include "lv_objx/lv_pb.h"
#include "lv_objx/lv_led.h"
#include "lv_objx/lv_btnm.h"
#include "lv_objx/lv_ddlist.h"
#include "lv_objx/lv_ta.h"
#include "lv_objx/lv_win.h"
#include "lv_objx/lv_mbox.h"