2017-10-05 11:29:21 +02:00
|
|
|
|
2017-08-23 09:24:23 +02:00
|
|
|
/**
|
|
|
|
* @file lv_kb.c
|
2018-03-02 09:44:05 +08:00
|
|
|
*
|
2017-08-23 09:24:23 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*********************
|
|
|
|
* INCLUDES
|
|
|
|
*********************/
|
2018-07-07 11:53:22 +02:00
|
|
|
#include "lv_kb.h"
|
2019-03-07 00:05:16 +01:00
|
|
|
#if LV_USE_KB != 0
|
2017-08-23 09:24:23 +02:00
|
|
|
|
2019-09-24 16:30:38 +02:00
|
|
|
#include "../lv_core/lv_debug.h"
|
2017-11-16 15:32:33 +01:00
|
|
|
#include "../lv_themes/lv_theme.h"
|
2019-09-24 16:30:38 +02:00
|
|
|
#include "lv_ta.h"
|
2017-08-23 09:24:23 +02:00
|
|
|
|
|
|
|
/*********************
|
|
|
|
* DEFINES
|
|
|
|
*********************/
|
2019-04-22 06:00:50 +02:00
|
|
|
#define LV_KB_CTRL_BTN_FLAGS (LV_BTNM_CTRL_NO_REPEAT | LV_BTNM_CTRL_CLICK_TRIG)
|
2017-11-05 00:48:57 +01:00
|
|
|
|
2017-08-23 09:24:23 +02:00
|
|
|
/**********************
|
|
|
|
* TYPEDEFS
|
|
|
|
**********************/
|
|
|
|
|
|
|
|
/**********************
|
|
|
|
* STATIC PROTOTYPES
|
|
|
|
**********************/
|
2017-11-10 15:01:40 +01:00
|
|
|
static lv_res_t lv_kb_signal(lv_obj_t * kb, lv_signal_t sign, void * param);
|
2017-08-23 09:24:23 +02:00
|
|
|
|
|
|
|
/**********************
|
|
|
|
* STATIC VARIABLES
|
|
|
|
**********************/
|
2019-02-26 09:25:46 +01:00
|
|
|
static lv_signal_cb_t ancestor_signal;
|
2019-04-10 06:20:03 +02:00
|
|
|
/* clang-format off */
|
2019-09-20 07:51:59 +02:00
|
|
|
static const char * kb_map_lc[] = {"1#", "q", "w", "e", "r", "t", "y", "u", "i", "o", "p", LV_SYMBOL_BACKSPACE, "\n",
|
2019-04-10 06:20:03 +02:00
|
|
|
"ABC", "a", "s", "d", "f", "g", "h", "j", "k", "l", "Enter", "\n",
|
|
|
|
"_", "-", "z", "x", "c", "v", "b", "n", "m", ".", ",", ":", "\n",
|
|
|
|
LV_SYMBOL_CLOSE, LV_SYMBOL_LEFT, " ", LV_SYMBOL_RIGHT, LV_SYMBOL_OK, ""};
|
2017-08-23 09:24:23 +02:00
|
|
|
|
2019-02-27 06:17:37 +01:00
|
|
|
static const lv_btnm_ctrl_t kb_ctrl_lc_map[] = {
|
2019-04-22 06:00:50 +02:00
|
|
|
LV_KB_CTRL_BTN_FLAGS | 5, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 7,
|
|
|
|
LV_KB_CTRL_BTN_FLAGS | 6, 3, 3, 3, 3, 3, 3, 3, 3, 3, 7,
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
2019-04-28 17:26:18 +02:00
|
|
|
LV_KB_CTRL_BTN_FLAGS | 2, 2, 6, 2, LV_KB_CTRL_BTN_FLAGS | 2};
|
2019-04-04 07:15:40 +02:00
|
|
|
|
2019-09-20 07:51:59 +02:00
|
|
|
static const char * kb_map_uc[] = {"1#", "Q", "W", "E", "R", "T", "Y", "U", "I", "O", "P", LV_SYMBOL_BACKSPACE, "\n",
|
2019-04-10 06:20:03 +02:00
|
|
|
"abc", "A", "S", "D", "F", "G", "H", "J", "K", "L", "Enter", "\n",
|
|
|
|
"_", "-", "Z", "X", "C", "V", "B", "N", "M", ".", ",", ":", "\n",
|
|
|
|
LV_SYMBOL_CLOSE, LV_SYMBOL_LEFT, " ", LV_SYMBOL_RIGHT, LV_SYMBOL_OK, ""};
|
2017-08-23 09:24:23 +02:00
|
|
|
|
2019-02-27 06:17:37 +01:00
|
|
|
static const lv_btnm_ctrl_t kb_ctrl_uc_map[] = {
|
2019-04-22 06:00:50 +02:00
|
|
|
LV_KB_CTRL_BTN_FLAGS | 5, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 7,
|
|
|
|
LV_KB_CTRL_BTN_FLAGS | 6, 3, 3, 3, 3, 3, 3, 3, 3, 3, 7,
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
2019-04-28 17:26:18 +02:00
|
|
|
LV_KB_CTRL_BTN_FLAGS | 2, 2, 6, 2, LV_KB_CTRL_BTN_FLAGS | 2};
|
2019-04-04 07:15:40 +02:00
|
|
|
|
2019-09-20 07:51:59 +02:00
|
|
|
static const char * kb_map_spec[] = {"0", "1", "2", "3", "4" ,"5", "6", "7", "8", "9", LV_SYMBOL_BACKSPACE, "\n",
|
2019-04-10 06:20:03 +02:00
|
|
|
"abc", "+", "-", "/", "*", "=", "%", "!", "?", "#", "<", ">", "\n",
|
|
|
|
"\\", "@", "$", "(", ")", "{", "}", "[", "]", ";", "\"", "'", "\n",
|
|
|
|
LV_SYMBOL_CLOSE, LV_SYMBOL_LEFT, " ", LV_SYMBOL_RIGHT, LV_SYMBOL_OK, ""};
|
2017-08-23 09:24:23 +02:00
|
|
|
|
2019-02-27 06:17:37 +01:00
|
|
|
static const lv_btnm_ctrl_t kb_ctrl_spec_map[] = {
|
2019-04-22 06:00:50 +02:00
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, LV_KB_CTRL_BTN_FLAGS | 2,
|
|
|
|
LV_KB_CTRL_BTN_FLAGS | 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
2019-07-22 15:30:50 +02:00
|
|
|
LV_KB_CTRL_BTN_FLAGS | 2, 2, 6, 2, LV_KB_CTRL_BTN_FLAGS | 2};
|
2019-04-04 07:15:40 +02:00
|
|
|
|
2019-04-13 14:56:47 +08:00
|
|
|
static const char * kb_map_num[] = {"1", "2", "3", LV_SYMBOL_CLOSE, "\n",
|
|
|
|
"4", "5", "6", LV_SYMBOL_OK, "\n",
|
2019-09-20 07:51:59 +02:00
|
|
|
"7", "8", "9", LV_SYMBOL_BACKSPACE, "\n",
|
2019-04-10 06:20:03 +02:00
|
|
|
"+/-", "0", ".", LV_SYMBOL_LEFT, LV_SYMBOL_RIGHT, ""};
|
2019-04-04 07:15:40 +02:00
|
|
|
|
2019-04-22 06:00:50 +02:00
|
|
|
static const lv_btnm_ctrl_t kb_ctrl_num_map[] = {
|
|
|
|
1, 1, 1, LV_KB_CTRL_BTN_FLAGS | 2,
|
|
|
|
1, 1, 1, LV_KB_CTRL_BTN_FLAGS | 2,
|
2019-08-05 13:52:39 -04:00
|
|
|
1, 1, 1, 2,
|
|
|
|
1, 1, 1, 1, 1};
|
2019-04-10 06:20:03 +02:00
|
|
|
/* clang-format on */
|
|
|
|
|
2017-08-23 09:24:23 +02:00
|
|
|
/**********************
|
|
|
|
* MACROS
|
|
|
|
**********************/
|
|
|
|
|
|
|
|
/**********************
|
|
|
|
* GLOBAL FUNCTIONS
|
|
|
|
**********************/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a keyboard objects
|
|
|
|
* @param par pointer to an object, it will be the parent of the new keyboard
|
|
|
|
* @param copy pointer to a keyboard object, if not NULL then the new object will be copied from it
|
|
|
|
* @return pointer to the created keyboard
|
|
|
|
*/
|
2018-07-30 06:52:29 +02:00
|
|
|
lv_obj_t * lv_kb_create(lv_obj_t * par, const lv_obj_t * copy)
|
2017-08-23 09:24:23 +02:00
|
|
|
{
|
2018-10-05 17:22:49 +02:00
|
|
|
LV_LOG_TRACE("keyboard create started");
|
2018-07-25 17:57:08 +02:00
|
|
|
|
2017-08-23 09:24:23 +02:00
|
|
|
/*Create the ancestor of keyboard*/
|
|
|
|
lv_obj_t * new_kb = lv_btnm_create(par, copy);
|
2019-09-24 23:14:17 +02:00
|
|
|
LV_ASSERT_MEM(new_kb);
|
2018-07-25 13:33:53 +02:00
|
|
|
if(new_kb == NULL) return NULL;
|
|
|
|
|
2019-04-10 06:40:49 +02:00
|
|
|
if(ancestor_signal == NULL) ancestor_signal = lv_obj_get_signal_cb(new_kb);
|
2018-03-02 09:44:05 +08:00
|
|
|
|
2017-08-23 09:24:23 +02:00
|
|
|
/*Allocate the keyboard type specific extended data*/
|
2017-10-20 10:17:02 +02:00
|
|
|
lv_kb_ext_t * ext = lv_obj_allocate_ext_attr(new_kb, sizeof(lv_kb_ext_t));
|
2019-09-24 23:14:17 +02:00
|
|
|
LV_ASSERT_MEM(ext);
|
2018-07-25 13:33:53 +02:00
|
|
|
if(ext == NULL) return NULL;
|
2017-08-23 09:24:23 +02:00
|
|
|
|
|
|
|
/*Initialize the allocated 'ext' */
|
|
|
|
|
2019-04-04 07:15:40 +02:00
|
|
|
ext->ta = NULL;
|
|
|
|
ext->mode = LV_KB_MODE_TEXT;
|
2017-11-18 00:18:19 +01:00
|
|
|
ext->cursor_mng = 0;
|
2017-08-23 09:24:23 +02:00
|
|
|
|
|
|
|
/*The signal and design functions are not copied so set them here*/
|
2019-02-26 09:25:46 +01:00
|
|
|
lv_obj_set_signal_cb(new_kb, lv_kb_signal);
|
2017-08-23 09:24:23 +02:00
|
|
|
|
|
|
|
/*Init the new keyboard keyboard*/
|
|
|
|
if(copy == NULL) {
|
2019-04-27 19:26:49 +02:00
|
|
|
/* Set a size which fits into the parent.
|
|
|
|
* Don't use `par` directly because if the window is created on a page it is moved to the
|
|
|
|
* scrollable so the parent has changed */
|
|
|
|
lv_obj_set_size(new_kb, lv_obj_get_width_fit(lv_obj_get_parent(new_kb)),
|
2019-04-27 20:15:55 +02:00
|
|
|
lv_obj_get_height_fit(lv_obj_get_parent(new_kb)) / 2);
|
2019-04-27 19:26:49 +02:00
|
|
|
|
2017-08-23 09:24:23 +02:00
|
|
|
lv_obj_align(new_kb, NULL, LV_ALIGN_IN_BOTTOM_MID, 0, 0);
|
2019-03-27 00:48:35 +01:00
|
|
|
lv_obj_set_event_cb(new_kb, lv_kb_def_event_cb);
|
2019-04-10 08:40:52 +02:00
|
|
|
lv_btnm_set_map(new_kb, kb_map_lc);
|
|
|
|
lv_btnm_set_ctrl_map(new_kb, kb_ctrl_lc_map);
|
2017-11-16 15:32:33 +01:00
|
|
|
|
|
|
|
/*Set the default styles*/
|
2018-06-19 09:49:58 +02:00
|
|
|
lv_theme_t * th = lv_theme_get_current();
|
2017-11-16 15:32:33 +01:00
|
|
|
if(th) {
|
2019-02-11 09:35:06 +01:00
|
|
|
lv_kb_set_style(new_kb, LV_KB_STYLE_BG, th->style.kb.bg);
|
|
|
|
lv_kb_set_style(new_kb, LV_KB_STYLE_BTN_REL, th->style.kb.btn.rel);
|
|
|
|
lv_kb_set_style(new_kb, LV_KB_STYLE_BTN_PR, th->style.kb.btn.pr);
|
|
|
|
lv_kb_set_style(new_kb, LV_KB_STYLE_BTN_TGL_REL, th->style.kb.btn.tgl_rel);
|
|
|
|
lv_kb_set_style(new_kb, LV_KB_STYLE_BTN_TGL_PR, th->style.kb.btn.tgl_pr);
|
|
|
|
lv_kb_set_style(new_kb, LV_KB_STYLE_BTN_INA, th->style.kb.btn.ina);
|
2017-11-16 15:32:33 +01:00
|
|
|
} else {
|
|
|
|
/*Let the button matrix's styles*/
|
|
|
|
}
|
2017-08-23 09:24:23 +02:00
|
|
|
}
|
|
|
|
/*Copy an existing keyboard*/
|
|
|
|
else {
|
2018-06-19 09:49:58 +02:00
|
|
|
lv_kb_ext_t * copy_ext = lv_obj_get_ext_attr(copy);
|
2019-04-04 07:15:40 +02:00
|
|
|
ext->ta = NULL;
|
|
|
|
ext->ta = copy_ext->ta;
|
|
|
|
ext->mode = copy_ext->mode;
|
|
|
|
ext->cursor_mng = copy_ext->cursor_mng;
|
2017-08-23 09:24:23 +02:00
|
|
|
|
|
|
|
/*Refresh the style with new signal function*/
|
2017-10-20 10:17:02 +02:00
|
|
|
lv_obj_refresh_style(new_kb);
|
2017-08-23 09:24:23 +02:00
|
|
|
}
|
2018-03-02 09:44:05 +08:00
|
|
|
|
2018-10-05 17:22:49 +02:00
|
|
|
LV_LOG_INFO("keyboard created");
|
2018-07-25 20:39:24 +02:00
|
|
|
|
2017-08-23 09:24:23 +02:00
|
|
|
return new_kb;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*=====================
|
|
|
|
* Setter functions
|
|
|
|
*====================*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Assign a Text Area to the Keyboard. The pressed characters will be put there.
|
|
|
|
* @param kb pointer to a Keyboard object
|
|
|
|
* @param ta pointer to a Text Area object to write there
|
|
|
|
*/
|
|
|
|
void lv_kb_set_ta(lv_obj_t * kb, lv_obj_t * ta)
|
|
|
|
{
|
2017-10-20 10:17:02 +02:00
|
|
|
lv_kb_ext_t * ext = lv_obj_get_ext_attr(kb);
|
2017-11-18 00:18:19 +01:00
|
|
|
lv_cursor_type_t cur_type;
|
|
|
|
|
2018-05-16 23:09:30 +02:00
|
|
|
/*Hide the cursor of the old Text area if cursor management is enabled*/
|
2017-11-18 00:18:19 +01:00
|
|
|
if(ext->ta && ext->cursor_mng) {
|
|
|
|
cur_type = lv_ta_get_cursor_type(ext->ta);
|
2019-04-04 07:15:40 +02:00
|
|
|
lv_ta_set_cursor_type(ext->ta, cur_type | LV_CURSOR_HIDDEN);
|
2017-11-18 00:18:19 +01:00
|
|
|
}
|
2017-08-23 09:24:23 +02:00
|
|
|
|
|
|
|
ext->ta = ta;
|
2017-11-18 00:18:19 +01:00
|
|
|
|
2018-05-16 23:09:30 +02:00
|
|
|
/*Show the cursor of the new Text area if cursor management is enabled*/
|
2017-12-19 22:00:32 +01:00
|
|
|
if(ext->ta && ext->cursor_mng) {
|
2017-11-18 00:18:19 +01:00
|
|
|
cur_type = lv_ta_get_cursor_type(ext->ta);
|
2019-04-04 07:15:40 +02:00
|
|
|
lv_ta_set_cursor_type(ext->ta, cur_type & (~LV_CURSOR_HIDDEN));
|
2017-11-18 00:18:19 +01:00
|
|
|
}
|
2017-08-23 09:24:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set a new a mode (text or number map)
|
|
|
|
* @param kb pointer to a Keyboard object
|
|
|
|
* @param mode the mode from 'lv_kb_mode_t'
|
|
|
|
*/
|
|
|
|
void lv_kb_set_mode(lv_obj_t * kb, lv_kb_mode_t mode)
|
|
|
|
{
|
2017-10-20 10:17:02 +02:00
|
|
|
lv_kb_ext_t * ext = lv_obj_get_ext_attr(kb);
|
2018-05-16 23:09:30 +02:00
|
|
|
if(ext->mode == mode) return;
|
|
|
|
|
2017-08-23 09:24:23 +02:00
|
|
|
ext->mode = mode;
|
2019-02-27 06:17:37 +01:00
|
|
|
if(mode == LV_KB_MODE_TEXT) {
|
2019-04-10 08:40:52 +02:00
|
|
|
lv_btnm_set_map(kb, kb_map_lc);
|
|
|
|
lv_btnm_set_ctrl_map(kb, kb_ctrl_lc_map);
|
2019-04-04 07:15:40 +02:00
|
|
|
} else if(mode == LV_KB_MODE_NUM) {
|
2019-04-10 08:40:52 +02:00
|
|
|
lv_btnm_set_map(kb, kb_map_num);
|
|
|
|
lv_btnm_set_ctrl_map(kb, kb_ctrl_num_map);
|
2019-02-27 06:17:37 +01:00
|
|
|
}
|
2017-08-23 09:24:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Automatically hide or show the cursor of Text Area
|
|
|
|
* @param kb pointer to a Keyboard object
|
|
|
|
* @param en true: show cursor on the current text area, false: hide cursor
|
|
|
|
*/
|
2017-11-05 00:48:57 +01:00
|
|
|
void lv_kb_set_cursor_manage(lv_obj_t * kb, bool en)
|
2017-08-23 09:24:23 +02:00
|
|
|
{
|
2017-10-20 10:17:02 +02:00
|
|
|
lv_kb_ext_t * ext = lv_obj_get_ext_attr(kb);
|
2018-05-16 23:09:30 +02:00
|
|
|
if(ext->cursor_mng == en) return;
|
|
|
|
|
2018-06-19 09:49:58 +02:00
|
|
|
ext->cursor_mng = en == false ? 0 : 1;
|
2017-08-23 09:24:23 +02:00
|
|
|
|
2017-11-18 00:18:19 +01:00
|
|
|
if(ext->ta) {
|
|
|
|
lv_cursor_type_t cur_type;
|
|
|
|
cur_type = lv_ta_get_cursor_type(ext->ta);
|
2018-03-02 09:44:05 +08:00
|
|
|
|
2018-06-19 09:49:58 +02:00
|
|
|
if(ext->cursor_mng) {
|
2019-04-04 07:15:40 +02:00
|
|
|
lv_ta_set_cursor_type(ext->ta, cur_type & (~LV_CURSOR_HIDDEN));
|
2018-06-19 09:49:58 +02:00
|
|
|
} else {
|
2019-04-04 07:15:40 +02:00
|
|
|
lv_ta_set_cursor_type(ext->ta, cur_type | LV_CURSOR_HIDDEN);
|
2018-03-02 09:44:05 +08:00
|
|
|
}
|
2017-11-18 00:18:19 +01:00
|
|
|
}
|
2017-08-23 09:24:23 +02:00
|
|
|
}
|
|
|
|
|
2017-11-15 15:50:33 +01:00
|
|
|
/**
|
|
|
|
* Set a style of a keyboard
|
|
|
|
* @param kb pointer to a keyboard object
|
|
|
|
* @param type which style should be set
|
|
|
|
* @param style pointer to a style
|
|
|
|
*/
|
2019-04-11 19:59:55 +08:00
|
|
|
void lv_kb_set_style(lv_obj_t * kb, lv_kb_style_t type, const lv_style_t * style)
|
2017-11-15 15:50:33 +01:00
|
|
|
{
|
2018-06-19 09:49:58 +02:00
|
|
|
switch(type) {
|
2019-04-04 07:15:40 +02:00
|
|
|
case LV_KB_STYLE_BG: lv_btnm_set_style(kb, LV_BTNM_STYLE_BG, style); break;
|
|
|
|
case LV_KB_STYLE_BTN_REL: lv_btnm_set_style(kb, LV_BTNM_STYLE_BTN_REL, style); break;
|
|
|
|
case LV_KB_STYLE_BTN_PR: lv_btnm_set_style(kb, LV_BTNM_STYLE_BTN_PR, style); break;
|
2019-06-06 06:05:40 +02:00
|
|
|
case LV_KB_STYLE_BTN_TGL_REL: lv_btnm_set_style(kb, LV_BTNM_STYLE_BTN_TGL_REL, style); break;
|
2019-04-04 07:15:40 +02:00
|
|
|
case LV_KB_STYLE_BTN_TGL_PR: lv_btnm_set_style(kb, LV_BTNM_STYLE_BTN_TGL_PR, style); break;
|
|
|
|
case LV_KB_STYLE_BTN_INA: lv_btnm_set_style(kb, LV_BTNM_STYLE_BTN_INA, style); break;
|
2017-11-15 15:50:33 +01:00
|
|
|
}
|
|
|
|
}
|
2017-10-05 11:29:21 +02:00
|
|
|
|
2017-08-23 09:24:23 +02:00
|
|
|
/*=====================
|
|
|
|
* Getter functions
|
|
|
|
*====================*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Assign a Text Area to the Keyboard. The pressed characters will be put there.
|
|
|
|
* @param kb pointer to a Keyboard object
|
|
|
|
* @return pointer to the assigned Text Area object
|
|
|
|
*/
|
2018-07-30 06:52:29 +02:00
|
|
|
lv_obj_t * lv_kb_get_ta(const lv_obj_t * kb)
|
2017-08-23 09:24:23 +02:00
|
|
|
{
|
2017-10-20 10:17:02 +02:00
|
|
|
lv_kb_ext_t * ext = lv_obj_get_ext_attr(kb);
|
2017-08-23 09:24:23 +02:00
|
|
|
return ext->ta;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set a new a mode (text or number map)
|
|
|
|
* @param kb pointer to a Keyboard object
|
|
|
|
* @return the current mode from 'lv_kb_mode_t'
|
|
|
|
*/
|
2018-07-30 06:52:29 +02:00
|
|
|
lv_kb_mode_t lv_kb_get_mode(const lv_obj_t * kb)
|
2017-08-23 09:24:23 +02:00
|
|
|
{
|
2017-10-20 10:17:02 +02:00
|
|
|
lv_kb_ext_t * ext = lv_obj_get_ext_attr(kb);
|
2017-08-23 09:24:23 +02:00
|
|
|
return ext->mode;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the current cursor manage mode.
|
|
|
|
* @param kb pointer to a Keyboard object
|
|
|
|
* @return true: show cursor on the current text area, false: hide cursor
|
|
|
|
*/
|
2018-07-30 06:52:29 +02:00
|
|
|
bool lv_kb_get_cursor_manage(const lv_obj_t * kb)
|
2017-08-23 09:24:23 +02:00
|
|
|
{
|
2017-10-20 10:17:02 +02:00
|
|
|
lv_kb_ext_t * ext = lv_obj_get_ext_attr(kb);
|
2017-11-18 00:18:19 +01:00
|
|
|
return ext->cursor_mng == 0 ? false : true;
|
2017-08-23 09:24:23 +02:00
|
|
|
}
|
|
|
|
|
2017-11-15 15:50:33 +01:00
|
|
|
/**
|
|
|
|
* Get a style of a keyboard
|
|
|
|
* @param kb pointer to a keyboard object
|
|
|
|
* @param type which style should be get
|
|
|
|
* @return style pointer to a style
|
|
|
|
*/
|
2019-04-11 19:59:55 +08:00
|
|
|
const lv_style_t * lv_kb_get_style(const lv_obj_t * kb, lv_kb_style_t type)
|
2017-11-15 15:50:33 +01:00
|
|
|
{
|
2019-04-11 19:59:55 +08:00
|
|
|
const lv_style_t * style = NULL;
|
2018-11-05 22:21:20 -06:00
|
|
|
|
2018-06-19 09:49:58 +02:00
|
|
|
switch(type) {
|
2019-04-04 07:15:40 +02:00
|
|
|
case LV_KB_STYLE_BG: style = lv_btnm_get_style(kb, LV_BTNM_STYLE_BG); break;
|
|
|
|
case LV_KB_STYLE_BTN_REL: style = lv_btnm_get_style(kb, LV_BTNM_STYLE_BTN_REL); break;
|
|
|
|
case LV_KB_STYLE_BTN_PR: style = lv_btnm_get_style(kb, LV_BTNM_STYLE_BTN_PR); break;
|
2019-06-06 06:05:40 +02:00
|
|
|
case LV_KB_STYLE_BTN_TGL_REL: style = lv_btnm_get_style(kb, LV_BTNM_STYLE_BTN_TGL_REL); break;
|
2019-04-04 07:15:40 +02:00
|
|
|
case LV_KB_STYLE_BTN_TGL_PR: style = lv_btnm_get_style(kb, LV_BTNM_STYLE_BTN_TGL_PR); break;
|
|
|
|
case LV_KB_STYLE_BTN_INA: style = lv_btnm_get_style(kb, LV_BTNM_STYLE_BTN_INA); break;
|
|
|
|
default: style = NULL; break;
|
2017-11-15 15:50:33 +01:00
|
|
|
}
|
|
|
|
|
2018-11-05 22:21:20 -06:00
|
|
|
return style;
|
2017-11-15 15:50:33 +01:00
|
|
|
}
|
2017-08-23 09:24:23 +02:00
|
|
|
|
2019-03-27 00:48:35 +01:00
|
|
|
/*=====================
|
|
|
|
* Other functions
|
|
|
|
*====================*/
|
2019-03-15 05:22:23 +01:00
|
|
|
|
2017-08-23 09:24:23 +02:00
|
|
|
/**
|
2019-03-27 00:48:35 +01:00
|
|
|
* Default keyboard event to add characters to the Text area and change the map.
|
2019-04-04 07:15:40 +02:00
|
|
|
* If a custom `event_cb` is added to the keyboard this function be called from it to handle the
|
|
|
|
* button clicks
|
2019-03-12 06:20:45 +01:00
|
|
|
* @param kb pointer to a keyboard
|
2019-03-27 00:48:35 +01:00
|
|
|
* @param event the triggering event
|
2017-08-23 09:24:23 +02:00
|
|
|
*/
|
2019-03-27 00:48:35 +01:00
|
|
|
void lv_kb_def_event_cb(lv_obj_t * kb, lv_event_t event)
|
2017-08-23 09:24:23 +02:00
|
|
|
{
|
2019-08-05 13:52:39 -04:00
|
|
|
if(event != LV_EVENT_VALUE_CHANGED) return;
|
2019-03-12 06:20:45 +01:00
|
|
|
|
2019-03-27 00:48:35 +01:00
|
|
|
lv_kb_ext_t * ext = lv_obj_get_ext_attr(kb);
|
2019-04-04 07:15:40 +02:00
|
|
|
uint16_t btn_id = lv_btnm_get_active_btn(kb);
|
2019-03-12 06:20:45 +01:00
|
|
|
if(btn_id == LV_BTNM_BTN_NONE) return;
|
2019-03-19 06:30:05 +01:00
|
|
|
if(lv_btnm_get_btn_ctrl(kb, btn_id, LV_BTNM_CTRL_HIDDEN | LV_BTNM_CTRL_INACTIVE)) return;
|
2019-06-06 06:05:40 +02:00
|
|
|
if(lv_btnm_get_btn_ctrl(kb, btn_id, LV_BTNM_CTRL_NO_REPEAT) && event == LV_EVENT_LONG_PRESSED_REPEAT) return;
|
2019-03-12 06:20:45 +01:00
|
|
|
|
|
|
|
const char * txt = lv_btnm_get_active_btn_text(kb);
|
|
|
|
if(txt == NULL) return;
|
2017-08-23 09:24:23 +02:00
|
|
|
|
|
|
|
/*Do the corresponding action according to the text of the button*/
|
2017-11-16 15:32:33 +01:00
|
|
|
if(strcmp(txt, "abc") == 0) {
|
2019-04-10 08:40:52 +02:00
|
|
|
lv_btnm_set_map(kb, kb_map_lc);
|
|
|
|
lv_btnm_set_ctrl_map(kb, kb_ctrl_lc_map);
|
2019-03-12 06:20:45 +01:00
|
|
|
return;
|
2018-06-19 09:49:58 +02:00
|
|
|
} else if(strcmp(txt, "ABC") == 0) {
|
2019-04-10 08:40:52 +02:00
|
|
|
lv_btnm_set_map(kb, kb_map_uc);
|
|
|
|
lv_btnm_set_ctrl_map(kb, kb_ctrl_uc_map);
|
2019-03-12 06:20:45 +01:00
|
|
|
return;
|
2018-06-19 09:49:58 +02:00
|
|
|
} else if(strcmp(txt, "1#") == 0) {
|
2019-04-10 08:40:52 +02:00
|
|
|
lv_btnm_set_map(kb, kb_map_spec);
|
|
|
|
lv_btnm_set_ctrl_map(kb, kb_ctrl_spec_map);
|
2019-03-12 06:20:45 +01:00
|
|
|
return;
|
2019-03-07 00:05:16 +01:00
|
|
|
} else if(strcmp(txt, LV_SYMBOL_CLOSE) == 0) {
|
2019-04-19 07:37:54 +02:00
|
|
|
if(kb->event_cb != lv_kb_def_event_cb) {
|
2019-04-27 10:59:22 +02:00
|
|
|
lv_res_t res = lv_event_send(kb, LV_EVENT_CANCEL, NULL);
|
|
|
|
if(res != LV_RES_OK) return;
|
2019-04-04 07:15:40 +02:00
|
|
|
} else {
|
|
|
|
lv_kb_set_ta(kb, NULL); /*De-assign the text area to hide it cursor if needed*/
|
2018-04-13 20:09:14 +02:00
|
|
|
lv_obj_del(kb);
|
2019-04-27 11:01:14 +02:00
|
|
|
return;
|
2018-04-13 20:09:14 +02:00
|
|
|
}
|
2019-03-12 06:20:45 +01:00
|
|
|
return;
|
2019-03-07 00:05:16 +01:00
|
|
|
} else if(strcmp(txt, LV_SYMBOL_OK) == 0) {
|
2019-04-27 10:59:22 +02:00
|
|
|
if(kb->event_cb != lv_kb_def_event_cb) {
|
|
|
|
lv_res_t res = lv_event_send(kb, LV_EVENT_APPLY, NULL);
|
|
|
|
if(res != LV_RES_OK) return;
|
2019-06-06 06:05:40 +02:00
|
|
|
} else {
|
2019-04-04 07:15:40 +02:00
|
|
|
lv_kb_set_ta(kb, NULL); /*De-assign the text area to hide it cursor if needed*/
|
2019-04-27 10:59:22 +02:00
|
|
|
}
|
2019-03-12 06:20:45 +01:00
|
|
|
return;
|
2017-11-10 15:01:40 +01:00
|
|
|
}
|
|
|
|
|
2018-10-15 19:33:34 +02:00
|
|
|
/*Add the characters to the text area if set*/
|
2019-03-12 06:20:45 +01:00
|
|
|
if(ext->ta == NULL) return;
|
2017-11-10 15:01:40 +01:00
|
|
|
|
2019-04-04 07:15:40 +02:00
|
|
|
if(strcmp(txt, "Enter") == 0)
|
|
|
|
lv_ta_add_char(ext->ta, '\n');
|
|
|
|
else if(strcmp(txt, LV_SYMBOL_LEFT) == 0)
|
|
|
|
lv_ta_cursor_left(ext->ta);
|
|
|
|
else if(strcmp(txt, LV_SYMBOL_RIGHT) == 0)
|
|
|
|
lv_ta_cursor_right(ext->ta);
|
2019-09-20 07:51:59 +02:00
|
|
|
else if(strcmp(txt, LV_SYMBOL_BACKSPACE) == 0)
|
2019-04-04 07:15:40 +02:00
|
|
|
lv_ta_del_char(ext->ta);
|
2017-11-10 15:01:40 +01:00
|
|
|
else if(strcmp(txt, "+/-") == 0) {
|
2019-04-04 07:15:40 +02:00
|
|
|
uint16_t cur = lv_ta_get_cursor_pos(ext->ta);
|
2017-11-05 00:48:57 +01:00
|
|
|
const char * ta_txt = lv_ta_get_text(ext->ta);
|
2017-08-23 09:24:23 +02:00
|
|
|
if(ta_txt[0] == '-') {
|
|
|
|
lv_ta_set_cursor_pos(ext->ta, 1);
|
2017-11-15 15:50:33 +01:00
|
|
|
lv_ta_del_char(ext->ta);
|
2017-08-23 09:24:23 +02:00
|
|
|
lv_ta_add_char(ext->ta, '+');
|
|
|
|
lv_ta_set_cursor_pos(ext->ta, cur);
|
|
|
|
} else if(ta_txt[0] == '+') {
|
|
|
|
lv_ta_set_cursor_pos(ext->ta, 1);
|
2017-11-15 15:50:33 +01:00
|
|
|
lv_ta_del_char(ext->ta);
|
2017-08-23 09:24:23 +02:00
|
|
|
lv_ta_add_char(ext->ta, '-');
|
|
|
|
lv_ta_set_cursor_pos(ext->ta, cur);
|
|
|
|
} else {
|
|
|
|
lv_ta_set_cursor_pos(ext->ta, 0);
|
|
|
|
lv_ta_add_char(ext->ta, '-');
|
|
|
|
lv_ta_set_cursor_pos(ext->ta, cur + 1);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
lv_ta_add_text(ext->ta, txt);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-27 00:48:35 +01:00
|
|
|
/**********************
|
|
|
|
* STATIC FUNCTIONS
|
|
|
|
**********************/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Signal function of the keyboard
|
|
|
|
* @param kb pointer to a keyboard object
|
|
|
|
* @param sign a signal type from lv_signal_t enum
|
|
|
|
* @param param pointer to a signal specific variable
|
|
|
|
* @return LV_RES_OK: the object is not deleted in the function; LV_RES_INV: the object is deleted
|
|
|
|
*/
|
|
|
|
static lv_res_t lv_kb_signal(lv_obj_t * kb, lv_signal_t sign, void * param)
|
|
|
|
{
|
|
|
|
lv_res_t res;
|
|
|
|
|
|
|
|
/* Include the ancient signal function */
|
|
|
|
res = ancestor_signal(kb, sign, param);
|
|
|
|
if(res != LV_RES_OK) return res;
|
|
|
|
|
|
|
|
if(sign == LV_SIGNAL_CLEANUP) {
|
|
|
|
/*Nothing to cleanup. (No dynamically allocated memory in 'ext')*/
|
2019-04-04 07:15:40 +02:00
|
|
|
} else if(sign == LV_SIGNAL_FOCUS) {
|
2019-03-27 00:48:35 +01:00
|
|
|
lv_kb_ext_t * ext = lv_obj_get_ext_attr(kb);
|
|
|
|
/*Show the cursor of the new Text area if cursor management is enabled*/
|
|
|
|
if(ext->ta && ext->cursor_mng) {
|
|
|
|
lv_cursor_type_t cur_type = lv_ta_get_cursor_type(ext->ta);
|
2019-04-04 07:15:40 +02:00
|
|
|
lv_ta_set_cursor_type(ext->ta, cur_type & (~LV_CURSOR_HIDDEN));
|
2019-03-27 00:48:35 +01:00
|
|
|
}
|
2019-04-04 07:15:40 +02:00
|
|
|
} else if(sign == LV_SIGNAL_DEFOCUS) {
|
|
|
|
lv_kb_ext_t * ext = lv_obj_get_ext_attr(kb);
|
|
|
|
/*Show the cursor of the new Text area if cursor management is enabled*/
|
|
|
|
if(ext->ta && ext->cursor_mng) {
|
|
|
|
lv_cursor_type_t cur_type = lv_ta_get_cursor_type(ext->ta);
|
|
|
|
lv_ta_set_cursor_type(ext->ta, cur_type | LV_CURSOR_HIDDEN);
|
|
|
|
}
|
|
|
|
} else if(sign == LV_SIGNAL_GET_TYPE) {
|
2019-03-27 00:48:35 +01:00
|
|
|
lv_obj_type_t * buf = param;
|
|
|
|
uint8_t i;
|
2019-04-04 07:15:40 +02:00
|
|
|
for(i = 0; i < LV_MAX_ANCESTOR_NUM - 1; i++) { /*Find the last set data*/
|
2019-03-27 00:48:35 +01:00
|
|
|
if(buf->type[i] == NULL) break;
|
|
|
|
}
|
|
|
|
buf->type[i] = "lv_kb";
|
|
|
|
}
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2017-08-23 09:24:23 +02:00
|
|
|
#endif
|