Home
last modified time | relevance | path

Searched refs:options (Results 1 – 10 of 10) sorted by relevance

/lvgl-2.7.6/src/lv_widgets/
Dlv_dropdown.c106 ext->options = NULL; in lv_dropdown_create()
184 if(ext->options == NULL) return; in lv_dropdown_clear_options()
187 lv_mem_free(ext->options); in lv_dropdown_clear_options()
189 ext->options = NULL; in lv_dropdown_clear_options()
202 void lv_dropdown_set_options(lv_obj_t * ddlist, const char * options) in lv_dropdown_set_options() argument
205 LV_ASSERT_STR(options); in lv_dropdown_set_options()
212 for(i = 0; options[i] != '\0'; i++) { in lv_dropdown_set_options()
213 if(options[i] == '\n') ext->option_cnt++; in lv_dropdown_set_options()
220 size_t len = strlen(options) + 1; in lv_dropdown_set_options()
221 if(ext->options != NULL && ext->static_txt == 0) { in lv_dropdown_set_options()
[all …]
Dlv_chart.h82 lv_chart_axis_options_t options; member
252 lv_chart_axis_options_t options);
263 lv_chart_axis_options_t options);
274 lv_chart_axis_options_t options);
Dlv_dropdown.h56 char * options; member
113 void lv_dropdown_set_options(lv_obj_t * ddlist, const char * options);
120 void lv_dropdown_set_options_static(lv_obj_t * ddlist, const char * options);
Dlv_chart.c501 lv_chart_axis_options_t options) in lv_chart_set_x_tick_texts() argument
509 ext->x_axis.options = options; in lv_chart_set_x_tick_texts()
521 lv_chart_axis_options_t options) in lv_chart_set_y_tick_texts() argument
529 ext->y_axis.options = options; in lv_chart_set_y_tick_texts()
541 lv_chart_axis_options_t options) in lv_chart_set_secondary_y_tick_texts() argument
549 ext->secondary_y_axis.options = options; in lv_chart_set_secondary_y_tick_texts()
1278 …iter_dir = (y_axis->options & LV_CHART_AXIS_INVERSE_LABELS_ORDER) ? LV_CHART_LABEL_ITERATOR_REVERS… in draw_y_ticks()
1334 if(y_axis->options & LV_CHART_AXIS_INVERSE_LABELS_ORDER) { in draw_y_ticks()
1338 else if((y_axis->options & LV_CHART_AXIS_DRAW_LAST_TICK) != 0) in draw_y_ticks()
1344 else if((y_axis->options & LV_CHART_AXIS_DRAW_LAST_TICK) != 0) in draw_y_ticks()
[all …]
Dlv_roller.c155 void lv_roller_set_options(lv_obj_t * roller, const char * options, lv_roller_mode_t mode) in lv_roller_set_options() argument
158 LV_ASSERT_STR(options); in lv_roller_set_options()
170 for(cnt = 0; options[cnt] != '\0'; cnt++) { in lv_roller_set_options()
171 if(options[cnt] == '\n') ext->option_cnt++; in lv_roller_set_options()
177 lv_label_set_text(label, options); in lv_roller_set_options()
182 size_t opt_len = strlen(options) + 1; /*+1 to add '\n' after option lists*/ in lv_roller_set_options()
186 strcpy(&opt_extra[opt_len * i], options); in lv_roller_set_options()
Dlv_roller.h89 void lv_roller_set_options(lv_obj_t * roller, const char * options, lv_roller_mode_t mode);
/lvgl-2.7.6/scripts/
Dcode-format.sh1 astyle --options=code-format.cfg "../src/*.c,*.h"
DDoxyfile17 # Project related configuration options
427 # Build related configuration options
719 # Configuration options related to warning and progress messages
784 # Configuration options related to the input files
949 # Configuration options related to source browsing
1046 # line options that you would normally use when invoking the compiler. Note that
1054 # Configuration options related to the alphabetical class index
1080 # Configuration options related to the HTML output
1108 # that doxygen needs, which is dependent on the configuration options used (e.g.
1549 # the search. The filter options can be selected when the cursor is inside the
[all …]
/lvgl-2.7.6/
DREADME.md92 *Note that the memory usage might vary depending on the architecture, compiler and build options.*
DCHANGELOG.md20 - Fix selection of options with non-ASCII letters in dropdown list
223 - more shadows options: *offset* and *spread*