mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-28 07:03:00 +08:00
chore(example) minor improvements on lv_example_list_2
This commit is contained in:
parent
493ace352f
commit
bb6d6b7799
@ -1,8 +1,8 @@
|
||||
#include "../../lv_examples.h"
|
||||
#if LV_USE_LIST && LV_BUILD_EXAMPLES
|
||||
|
||||
static lv_obj_t* list1;
|
||||
static lv_obj_t* list2;
|
||||
static lv_obj_t* buttonColumn;
|
||||
|
||||
static lv_obj_t* currentButton = NULL;
|
||||
|
||||
@ -12,7 +12,7 @@ static void event_handler(lv_event_t* e)
|
||||
lv_obj_t* obj = lv_event_get_target(e);
|
||||
if (code == LV_EVENT_CLICKED)
|
||||
{
|
||||
LV_LOG_USER("Clicked: %s", lv_list_get_btn_text(list2, obj));
|
||||
LV_LOG_USER("Clicked: %s", lv_list_get_btn_text(list1, obj));
|
||||
|
||||
if (currentButton == obj)
|
||||
{
|
||||
@ -42,15 +42,14 @@ static void event_handler(lv_event_t* e)
|
||||
static void event_handler_mu(lv_event_t* e)
|
||||
{
|
||||
lv_event_code_t code = lv_event_get_code(e);
|
||||
// lv_obj_t* obj = lv_event_get_target(e);
|
||||
if ((code == LV_EVENT_CLICKED) || (code == LV_EVENT_LONG_PRESSED_REPEAT))
|
||||
{
|
||||
if (currentButton == NULL) return;
|
||||
lv_obj_t* parent = lv_obj_get_parent(currentButton);
|
||||
uint_fast32_t i = lv_obj_get_child_id(currentButton);
|
||||
if (i > 0)
|
||||
{
|
||||
if (i > 0) {
|
||||
lv_obj_swap(parent->spec_attr->children[i], parent->spec_attr->children[i - 1]);
|
||||
lv_obj_scroll_to_view(currentButton, LV_ANIM_ON);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -58,52 +57,52 @@ static void event_handler_mu(lv_event_t* e)
|
||||
static void event_handler_dn(lv_event_t* e)
|
||||
{
|
||||
lv_event_code_t code = lv_event_get_code(e);
|
||||
// lv_obj_t* obj = lv_event_get_target(e);
|
||||
if ((code == LV_EVENT_CLICKED) || (code == LV_EVENT_LONG_PRESSED_REPEAT))
|
||||
{
|
||||
if (currentButton == NULL) return;
|
||||
lv_obj_t* parent = lv_obj_get_parent(currentButton);
|
||||
uint_fast32_t i = lv_obj_get_child_id(currentButton);
|
||||
if (i < lv_obj_get_child_cnt(parent) - 1)
|
||||
{
|
||||
if (i < lv_obj_get_child_cnt(parent) - 1) {
|
||||
lv_obj_swap(parent->spec_attr->children[i], parent->spec_attr->children[i + 1]);
|
||||
lv_obj_scroll_to_view(currentButton, LV_ANIM_ON);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void lv_example_list_2(void)
|
||||
{
|
||||
/*Create a list*/
|
||||
list2 = lv_list_create(lv_scr_act());
|
||||
lv_obj_set_size(list2, lv_obj_get_width(lv_scr_act()) - 90, lv_obj_get_height(lv_scr_act()) - 10);
|
||||
lv_obj_set_align(list2, LV_ALIGN_TOP_LEFT);
|
||||
lv_obj_set_pos(list2, 5, 5);
|
||||
lv_obj_set_flex_flow(list2, LV_FLEX_FLOW_COLUMN);
|
||||
list1 = lv_list_create(lv_scr_act());
|
||||
lv_obj_set_size(list1, lv_pct(70), lv_pct(100));
|
||||
lv_obj_set_style_pad_row(list1, 5, 0);
|
||||
|
||||
/*Add buttons to the list*/
|
||||
lv_obj_t* btn;
|
||||
|
||||
for (int i = 0; i < 10; i++)
|
||||
{
|
||||
char szBuf[100];
|
||||
lv_snprintf(szBuf, sizeof(szBuf), " Item %d ", i);
|
||||
btn = lv_btn_create(list2);
|
||||
lv_obj_t* lab = lv_label_create(btn);
|
||||
lv_label_set_text(lab, szBuf);
|
||||
int i;
|
||||
for (i = 0; i < 30; i++) {
|
||||
btn = lv_btn_create(list1);
|
||||
lv_obj_set_width(btn, lv_pct(50));
|
||||
lv_obj_add_event_cb(btn, event_handler, LV_EVENT_CLICKED, NULL);
|
||||
|
||||
lv_obj_t* lab = lv_label_create(btn);
|
||||
lv_label_set_text_fmt(lab, "Item %d", i);
|
||||
}
|
||||
|
||||
buttonColumn = lv_obj_create(lv_scr_act());
|
||||
lv_obj_set_size(buttonColumn, 80, lv_obj_get_height(list2));
|
||||
lv_obj_set_align(buttonColumn, LV_ALIGN_TOP_RIGHT);
|
||||
lv_obj_set_pos(buttonColumn, -5, 5);
|
||||
lv_obj_set_flex_flow(buttonColumn, LV_FLEX_FLOW_COLUMN);
|
||||
/*Select the first button by default*/
|
||||
currentButton = lv_obj_get_child(list1, 0);
|
||||
lv_obj_add_state(currentButton, LV_STATE_CHECKED);
|
||||
|
||||
btn = lv_list_add_btn(buttonColumn, LV_SYMBOL_UP, NULL);
|
||||
/*Create a second list with up and down buttons*/
|
||||
list2 = lv_list_create(lv_scr_act());
|
||||
lv_obj_set_size(list2, lv_pct(30), lv_pct(100));
|
||||
lv_obj_align(list2, LV_ALIGN_TOP_RIGHT, 0, 0);
|
||||
lv_obj_set_flex_flow(list2, LV_FLEX_FLOW_COLUMN);
|
||||
|
||||
btn = lv_list_add_btn(list2, LV_SYMBOL_UP, "Up");
|
||||
lv_obj_add_event_cb(btn, event_handler_mu, LV_EVENT_ALL, NULL);
|
||||
btn = lv_list_add_btn(buttonColumn, LV_SYMBOL_DOWN, NULL);
|
||||
|
||||
btn = lv_list_add_btn(list2, LV_SYMBOL_DOWN, "Down");
|
||||
lv_obj_add_event_cb(btn, event_handler_dn, LV_EVENT_ALL, NULL);
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user