1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-14 06:42:58 +08:00
lvgl/lv_hal/lv_hal_indev.h

162 lines
4.9 KiB
C
Raw Normal View History

/**
* @file hal_indev.h
*
* @description Input Device HAL interface layer header file
2018-06-19 09:49:58 +02:00
*
*/
#ifndef HAL_INDEV_H
#define HAL_INDEV_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#include <stdbool.h>
#include <stdint.h>
2017-10-20 15:37:50 +02:00
#include "lv_hal.h"
2017-11-23 20:42:14 +01:00
#include "../lv_misc/lv_area.h"
/*********************
* DEFINES
*********************/
/**********************
* TYPEDEFS
**********************/
/*Possible input device types*/
2018-09-18 13:59:40 +02:00
enum {
LV_INDEV_TYPE_NONE, /*Show uninitialized state*/
2017-11-29 13:08:03 +01:00
LV_INDEV_TYPE_POINTER, /*Touch pad, mouse, external button*/
LV_INDEV_TYPE_KEYPAD, /*Keypad or keyboard*/
2018-02-24 13:17:39 +01:00
LV_INDEV_TYPE_BUTTON, /*External (hardware button) which is assinged to a specific point of the screen*/
2018-09-24 22:59:48 +02:00
LV_INDEV_TYPE_ENCODER, /*Encoder with only Left, Right turn and a Button*/
2018-09-18 13:59:40 +02:00
};
typedef uint8_t lv_hal_indev_type_t;
2017-11-19 19:28:45 +01:00
/*States for input devices*/
2018-09-18 13:59:40 +02:00
enum {
2018-02-24 13:17:39 +01:00
LV_INDEV_STATE_REL = 0,
2017-11-29 13:08:03 +01:00
LV_INDEV_STATE_PR
2018-09-18 13:59:40 +02:00
};
typedef uint8_t lv_indev_state_t;
2017-11-19 19:28:45 +01:00
/*Data type when an input device is read */
typedef struct {
union {
2018-02-24 13:17:39 +01:00
lv_point_t point; /*For LV_INDEV_TYPE_POINTER the currently pressed point*/
uint32_t key; /*For LV_INDEV_TYPE_KEYPAD the currently pressed key*/
uint32_t btn; /*For LV_INDEV_TYPE_BUTTON the currently pressed button*/
2018-09-24 22:59:48 +02:00
int16_t enc_diff; /*For LV_INDEV_TYPE_ENCODER number of steps since the previous read*/
};
2018-02-24 13:17:39 +01:00
void *user_data; /*'lv_indev_drv_t.priv' for this driver*/
2018-09-18 13:59:40 +02:00
lv_indev_state_t state; /*LV_INDEV_STATE_REL or LV_INDEV_STATE_PR*/
2018-06-19 09:49:58 +02:00
} lv_indev_data_t;
2017-11-19 19:28:45 +01:00
/*Initialized by the user and registered by 'lv_indev_add()'*/
typedef struct {
2018-02-23 17:03:00 +01:00
lv_hal_indev_type_t type; /*Input device type*/
2017-12-17 01:54:09 +01:00
bool (*read)(lv_indev_data_t *data); /*Function pointer to read data. Return 'true' if there is still data to be read (buffered)*/
2018-02-23 17:03:00 +01:00
void *user_data; /*Pointer to user defined data, passed in 'lv_indev_data_t' on read*/
2018-06-19 09:49:58 +02:00
} lv_indev_drv_t;
2017-11-19 19:28:45 +01:00
struct _lv_obj_t;
2018-02-24 13:17:39 +01:00
/*Run time data of input devices*/
typedef struct _lv_indev_proc_t {
2017-12-11 12:53:58 +01:00
lv_indev_state_t state;
2017-11-19 19:28:45 +01:00
union {
2018-02-24 13:17:39 +01:00
struct { /*Pointer and button data*/
2017-11-23 21:28:36 +01:00
lv_point_t act_point;
lv_point_t last_point;
lv_point_t vect;
2018-06-19 09:49:58 +02:00
lv_point_t drag_sum; /*Count the dragged pixels to check LV_INDEV_DRAG_LIMIT*/
2017-11-19 19:28:45 +01:00
struct _lv_obj_t * act_obj;
struct _lv_obj_t * last_obj;
/*Flags*/
uint8_t drag_range_out :1;
uint8_t drag_in_prog :1;
uint8_t wait_unil_release :1;
};
2017-11-29 13:08:03 +01:00
struct { /*Keypad data*/
lv_indev_state_t last_state;
uint32_t last_key;
2017-11-29 13:08:03 +01:00
};
2017-11-19 19:28:45 +01:00
};
2017-11-16 10:20:30 +01:00
uint32_t pr_timestamp; /*Pressed time stamp*/
uint32_t longpr_rep_timestamp; /*Long press repeat time stamp*/
/*Flags*/
2017-11-16 10:20:30 +01:00
uint8_t long_pr_sent :1;
uint8_t reset_query :1;
uint8_t disabled :1;
2018-06-19 09:49:58 +02:00
} lv_indev_proc_t;
2017-11-19 19:28:45 +01:00
struct _lv_obj_t;
struct _lv_group_t;
2018-02-24 13:17:39 +01:00
/*The main input device descriptor with driver, runtime data ('proc') and some additional information*/
typedef struct _lv_indev_t {
lv_indev_drv_t driver;
2017-11-29 13:08:03 +01:00
lv_indev_proc_t proc;
2017-12-11 12:53:58 +01:00
uint32_t last_activity_time;
2017-11-19 19:28:45 +01:00
union {
2018-02-24 13:17:39 +01:00
struct _lv_obj_t *cursor; /*Cursor for LV_INPUT_TYPE_POINTER*/
2017-11-19 19:28:45 +01:00
struct _lv_group_t *group; /*Keypad destination group*/
2018-02-24 13:17:39 +01:00
lv_point_t * btn_points; /*Array points assigned to the button ()screen will be pressed here by the buttons*/
2017-11-19 19:28:45 +01:00
};
struct _lv_indev_t *next;
} lv_indev_t;
/**********************
* GLOBAL PROTOTYPES
**********************/
/**
* Initialize an input device driver with default values.
* It is used to surly have known values in the fields ant not memory junk.
* After it you can set the fields.
* @param driver pointer to driver variable to initialize
*/
void lv_indev_drv_init(lv_indev_drv_t *driver);
/**
2017-10-20 22:41:10 +02:00
* Register an initialized input device driver.
* @param driver pointer to an initialized 'lv_indev_drv_t' variable (can be local variable)
* @return pointer to the new input device or NULL on error
*/
lv_indev_t * lv_indev_drv_register(lv_indev_drv_t *driver);
/**
* Get the next input device.
* @param indev pointer to the current input device. NULL to initialize.
2017-11-19 19:28:45 +01:00
* @return the next input devise or NULL if no more. Gives the first input device when the parameter is NULL
*/
lv_indev_t * lv_indev_next(lv_indev_t * indev);
2017-10-20 22:41:10 +02:00
/**
* Read data from an input device.
* @param indev pointer to an input device
* @param data input device will write its data here
* @return false: no more data; true: there more data to read (buffered)
*/
bool lv_indev_read(lv_indev_t * indev, lv_indev_data_t *data);
/**********************
* MACROS
**********************/
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif