1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-28 07:03:00 +08:00

lv_examle: renames, add 'lv_ex_' prefix

This commit is contained in:
Gabor 2017-08-17 09:56:01 +02:00
parent e044e02541
commit b8080ef1db
30 changed files with 6 additions and 6 deletions

View File

@ -57,7 +57,7 @@
/********************* /*********************
* INCLUDES * INCLUDES
*********************/ *********************/
#include "obj_usage.h" #include "lv_ex_objects.h"
#if USE_LV_EXAMPLE != 0 #if USE_LV_EXAMPLE != 0
#include "lvgl/lvgl.h" #include "lvgl/lvgl.h"
@ -91,7 +91,7 @@ static lv_action_res_t ddlist_action(lv_obj_t * ddlist, lv_dispi_t * dispi);
/** /**
* Initialize the Object usage example * Initialize the Object usage example
*/ */
void lv_obj_usage_init(void) void lv_ex_objects(void)
{ {
/******************** /********************

View File

@ -27,7 +27,7 @@ extern "C" {
/********************** /**********************
* GLOBAL PROTOTYPES * GLOBAL PROTOTYPES
**********************/ **********************/
void style_usage_init(void); void lv_ex_styles(void);
/********************** /**********************
* MACROS * MACROS

View File

@ -1,5 +1,5 @@
/** /**
* @file encoder_ctrl.c * @file lv_ex_encoder_ctrl.c
* *
*/ */
@ -33,7 +33,7 @@
/********************* /*********************
* INCLUDES * INCLUDES
*********************/ *********************/
#include "encoder_ctrl.h" #include "lv_ex_encoder_ctrl.h"
#if USE_LV_EXAMPLE != 0 #if USE_LV_EXAMPLE != 0
#include "lvgl/lvgl.h" #include "lvgl/lvgl.h"
@ -78,7 +78,7 @@ static lv_group_t * g; /*An Object Group*/
/** /**
* Create a simple GUI to demonstrate encoder control capability * Create a simple GUI to demonstrate encoder control capability
*/ */
void encoder_ctrl_init(void) void lv_ex_encoder_ctrl(void)
{ {
/* Create a Page screen (to make it scrollable) /* Create a Page screen (to make it scrollable)
* and use Pretty layout to make the content responsive. * and use Pretty layout to make the content responsive.

View File

View File