You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1012 B
C
30 lines
1012 B
C
#include "../lv_examples.h"
|
|
#if LV_BUILD_EXAMPLES && LV_USE_IMG
|
|
|
|
/**
|
|
* Add styles to parts and states
|
|
*/
|
|
void lv_example_style_13(void)
|
|
{
|
|
static lv_style_t style_indic;
|
|
lv_style_init(&style_indic);
|
|
lv_style_set_bg_color(&style_indic, lv_palette_lighten(LV_PALETTE_RED, 3));
|
|
lv_style_set_bg_grad_color(&style_indic, lv_palette_main(LV_PALETTE_RED));
|
|
lv_style_set_bg_grad_dir(&style_indic, LV_GRAD_DIR_HOR);
|
|
|
|
static lv_style_t style_indic_pr;
|
|
lv_style_init(&style_indic_pr);
|
|
lv_style_set_shadow_color(&style_indic_pr, lv_palette_main(LV_PALETTE_RED));
|
|
lv_style_set_shadow_width(&style_indic_pr, 10);
|
|
lv_style_set_shadow_spread(&style_indic_pr, 3);
|
|
|
|
/*Create an object with the new style_pr*/
|
|
lv_obj_t * obj = lv_slider_create(lv_scr_act());
|
|
lv_obj_add_style(obj, &style_indic, LV_PART_INDICATOR);
|
|
lv_obj_add_style(obj, &style_indic_pr, LV_PART_INDICATOR | LV_STATE_PRESSED);
|
|
lv_slider_set_value(obj, 70, LV_ANIM_OFF);
|
|
lv_obj_center(obj);
|
|
}
|
|
|
|
#endif
|