acid-drop

- Hacking the planet from a LilyGo T-Deck using custom firmware
git clone git://git.acid.vegas/acid-drop.git
Log | Files | Refs | Archive | README | LICENSE

lv_example_widgets.h (3049B)

      1 /**
      2  * @file lv_example_widgets.h
      3  *
      4  */
      5 
      6 #ifndef LV_EXAMPLE_WIDGETS_H
      7 #define LV_EXAMPLE_WIDGETS_H
      8 
      9 #ifdef __cplusplus
     10 extern "C" {
     11 #endif
     12 
     13 /*********************
     14  *      INCLUDES
     15  *********************/
     16 
     17 /*********************
     18  *      DEFINES
     19  *********************/
     20 
     21 /**********************
     22  *      TYPEDEFS
     23  **********************/
     24 
     25 /**********************
     26  * GLOBAL PROTOTYPES
     27  **********************/
     28 void lv_example_arc_1(void);
     29 void lv_example_arc_2(void);
     30 
     31 void lv_example_animimg_1(void);
     32 
     33 void lv_example_bar_1(void);
     34 void lv_example_bar_2(void);
     35 void lv_example_bar_3(void);
     36 void lv_example_bar_4(void);
     37 void lv_example_bar_5(void);
     38 void lv_example_bar_6(void);
     39 
     40 void lv_example_btn_1(void);
     41 void lv_example_btn_2(void);
     42 void lv_example_btn_3(void);
     43 
     44 void lv_example_btnmatrix_1(void);
     45 void lv_example_btnmatrix_2(void);
     46 void lv_example_btnmatrix_3(void);
     47 
     48 void lv_example_calendar_1(void);
     49 
     50 void lv_example_canvas_1(void);
     51 void lv_example_canvas_2(void);
     52 
     53 void lv_example_chart_1(void);
     54 void lv_example_chart_2(void);
     55 void lv_example_chart_3(void);
     56 void lv_example_chart_4(void);
     57 void lv_example_chart_5(void);
     58 void lv_example_chart_6(void);
     59 void lv_example_chart_7(void);
     60 void lv_example_chart_8(void);
     61 void lv_example_chart_9(void);
     62 
     63 void lv_example_checkbox_1(void);
     64 void lv_example_checkbox_2(void);
     65 
     66 void lv_example_colorwheel_1(void);
     67 
     68 void lv_example_dropdown_1(void);
     69 void lv_example_dropdown_2(void);
     70 void lv_example_dropdown_3(void);
     71 
     72 void lv_example_img_1(void);
     73 void lv_example_img_2(void);
     74 void lv_example_img_3(void);
     75 void lv_example_img_4(void);
     76 
     77 void lv_example_imgbtn_1(void);
     78 
     79 void lv_example_keyboard_1(void);
     80 
     81 void lv_example_label_1(void);
     82 void lv_example_label_2(void);
     83 void lv_example_label_3(void);
     84 void lv_example_label_4(void);
     85 void lv_example_label_5(void);
     86 
     87 void lv_example_led_1(void);
     88 
     89 void lv_example_line_1(void);
     90 
     91 void lv_example_list_1(void);
     92 void lv_example_list_2(void);
     93 
     94 void lv_example_menu_1(void);
     95 void lv_example_menu_2(void);
     96 void lv_example_menu_3(void);
     97 void lv_example_menu_4(void);
     98 void lv_example_menu_5(void);
     99 
    100 void lv_example_meter_1(void);
    101 void lv_example_meter_2(void);
    102 void lv_example_meter_3(void);
    103 void lv_example_meter_4(void);
    104 
    105 void lv_example_msgbox_1(void);
    106 
    107 void lv_example_obj_1(void);
    108 void lv_example_obj_2(void);
    109 
    110 void lv_example_roller_1(void);
    111 void lv_example_roller_2(void);
    112 void lv_example_roller_3(void);
    113 
    114 void lv_example_slider_1(void);
    115 void lv_example_slider_2(void);
    116 void lv_example_slider_3(void);
    117 
    118 void lv_example_spinbox_1(void);
    119 
    120 void lv_example_spinner_1(void);
    121 
    122 void lv_example_switch_1(void);
    123 
    124 void lv_example_table_1(void);
    125 void lv_example_table_2(void);
    126 
    127 void lv_example_tabview_1(void);
    128 void lv_example_tabview_2(void);
    129 
    130 void lv_example_textarea_1(void);
    131 void lv_example_textarea_2(void);
    132 void lv_example_textarea_3(void);
    133 
    134 void lv_example_tileview_1(void);
    135 
    136 void lv_example_win_1(void);
    137 
    138 void lv_example_span_1(void);
    139 
    140 /**********************
    141  *      MACROS
    142  **********************/
    143 
    144 #ifdef __cplusplus
    145 } /*extern "C"*/
    146 #endif
    147 
    148 #endif /*LV_EX_WIDGETS_H*/