Formatting all header files (*.h) in accordance with project coding style, using the astyle tool and the rules file _astylerc-h.

This commit is contained in:
Alexander
2018-06-18 13:52:14 +03:00
parent 8e9335d49f
commit 5ff4125c56
49 changed files with 271 additions and 269 deletions

View File

@@ -1,6 +1,6 @@
/**
* @file lv_kb.h
*
*
*/
#ifndef LV_KB_H
@@ -39,7 +39,7 @@ extern "C" {
typedef enum {
LV_KB_MODE_TEXT,
LV_KB_MODE_NUM,
}lv_kb_mode_t;
} lv_kb_mode_t;
/*Data of keyboard*/
@@ -51,7 +51,7 @@ typedef struct {
uint8_t cursor_mng :1; /*1: automatically show/hide cursor when a text area is assigned or left*/
lv_action_t ok_action; /*Called when the "Ok" button is clicked*/
lv_action_t hide_action; /*Called when the "Hide" button is clicked*/
}lv_kb_ext_t;
} lv_kb_ext_t;
typedef enum {
LV_KB_STYLE_BG,
@@ -60,7 +60,7 @@ typedef enum {
LV_KB_STYLE_BTN_TGL_REL,
LV_KB_STYLE_BTN_TGL_PR,
LV_KB_STYLE_BTN_INA,
}lv_kb_style_t;
} lv_kb_style_t;
/**********************
* GLOBAL PROTOTYPES