blob: b31ca81b8abe63ebea50740d2ae896b8a2c8094c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
/**
* @file lv_event_private.h
*
*/
#ifndef LV_EVENT_PRIVATE_H
#define LV_EVENT_PRIVATE_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#include "lv_event.h"
/*********************
* DEFINES
*********************/
/**********************
* TYPEDEFS
**********************/
struct lv_event_dsc_t {
lv_event_cb_t cb;
void * user_data;
uint32_t filter;
};
struct lv_event_t {
void * current_target;
void * original_target;
lv_event_code_t code;
void * user_data;
void * param;
lv_event_t * prev;
uint8_t deleted : 1;
uint8_t stop_processing : 1;
uint8_t stop_bubbling : 1;
};
/**********************
* GLOBAL PROTOTYPES
**********************/
/**********************
* GLOBAL PROTOTYPES
**********************/
void lv_event_push(lv_event_t * e);
void lv_event_pop(lv_event_t * e);
/**
* Nested events can be called and one of them might belong to an object that is being deleted.
* Mark this object's `event_temp_data` deleted to know that its `lv_obj_send_event` should return `LV_RESULT_INVALID`
* @param target pointer to an event target which was deleted
*/
void lv_event_mark_deleted(void * target);
/**********************
* MACROS
**********************/
#ifdef __cplusplus
} /*extern "C"*/
#endif
#endif /*LV_EVENT_PRIVATE_H*/
|