BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
lvgl
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
lvgl
Commits
49a50152
Commit
49a50152
authored
Oct 12, 2017
by
Gabor Kiss-Vamosi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lv_indev: update indev reset behavior
parent
7b24b47a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
8 deletions
+33
-8
lv_indev.c
lv_obj/lv_indev.c
+33
-8
No files found.
lv_obj/lv_indev.c
View file @
49a50152
...
...
@@ -181,9 +181,11 @@ static void indev_proc_task(void * param)
lv_indev_t
*
i
;
i
=
lv_indev_next
(
NULL
);
/*Read and process all indevs*/
while
(
i
)
{
indev_act
=
i
;
/*Handle reset query before processing the point*/
if
(
i
->
state
.
reset_qry
)
{
i
->
state
.
act_obj
=
NULL
;
i
->
state
.
last_obj
=
NULL
;
...
...
@@ -197,9 +199,12 @@ static void indev_proc_task(void * param)
i
->
state
.
reset_qry
=
0
;
}
if
(
i
->
state
.
disable
==
0
)
{
/*Read the data*/
lv_indev_get
(
i
,
&
data
);
i
->
state
.
pressed
=
data
.
state
;
/*Move the cursor if set and moved*/
if
(
i
->
cursor
!=
NULL
&&
(
i
->
state
.
last_point
.
x
!=
data
.
point
.
x
||
i
->
state
.
last_point
.
y
!=
data
.
point
.
y
))
...
...
@@ -207,13 +212,28 @@ static void indev_proc_task(void * param)
lv_obj_set_pos_us
(
i
->
cursor
,
data
.
point
.
x
,
data
.
point
.
y
);
}
/*Process the current point*/
indev_proc_point
(
&
i
->
state
,
data
.
point
.
x
,
data
.
point
.
y
);
}
i
=
lv_indev_next
(
i
);
/*Handle reset query if it happened in during processing*/
if
(
i
->
state
.
reset_qry
)
{
i
->
state
.
act_obj
=
NULL
;
i
->
state
.
last_obj
=
NULL
;
i
->
state
.
drag_range_out
=
0
;
i
->
state
.
drag_in_prog
=
0
;
i
->
state
.
long_press_sent
=
0
;
i
->
state
.
press_time_stamp
=
0
;
i
->
state
.
lpr_rep_time_stamp
=
0
;
i
->
state
.
vect_sum
.
x
=
0
;
i
->
state
.
vect_sum
.
y
=
0
;
i
->
state
.
reset_qry
=
0
;
}
indev_act
=
NULL
;
i
=
lv_indev_next
(
i
);
/*Go to the next indev*/
}
indev_act
=
NULL
;
/*End of indev processing, so no act indev*/
}
/**
...
...
@@ -284,6 +304,7 @@ static void indev_proc_press(lv_indev_state_t * state)
/*If a new object found the previous was lost, so send a signal*/
if
(
state
->
act_obj
!=
NULL
)
{
state
->
act_obj
->
signal_f
(
state
->
act_obj
,
LV_SIGNAL_PRESS_LOST
,
indev_act
);
if
(
state
->
reset_qry
!=
0
)
return
;
}
if
(
pr_obj
!=
NULL
)
{
...
...
@@ -306,7 +327,7 @@ static void indev_proc_press(lv_indev_state_t * state)
if
(
last_top
!=
NULL
)
{
/*Move the last_top object to the foreground*/
lv_obj_t
*
par
=
lv_obj_get_parent
(
last_top
);
lv_obj_t
*
par
=
lv_obj_get_parent
(
last_top
);
/*After list change it will be the new head*/
ll_chg_list
(
&
par
->
child_ll
,
&
par
->
child_ll
,
last_top
);
lv_obj_inv
(
last_top
);
...
...
@@ -314,12 +335,10 @@ static void indev_proc_press(lv_indev_state_t * state)
/*Send a signal about the press*/
pr_obj
->
signal_f
(
pr_obj
,
LV_SIGNAL_PRESSED
,
indev_act
);
if
(
state
->
reset_qry
!=
0
)
return
;
}
}
/* The reset can be set in the signal function.
* In case of reset query ignore the remaining parts.*/
if
(
state
->
reset_qry
==
0
)
{
state
->
act_obj
=
pr_obj
;
/*Save the pressed object*/
state
->
last_obj
=
state
->
act_obj
;
/*Refresh the last_obj*/
...
...
@@ -330,14 +349,17 @@ static void indev_proc_press(lv_indev_state_t * state)
/*If there is active object and it can be dragged run the drag*/
if
(
state
->
act_obj
!=
NULL
)
{
state
->
act_obj
->
signal_f
(
state
->
act_obj
,
LV_SIGNAL_PRESSING
,
indev_act
);
if
(
state
->
reset_qry
!=
0
)
return
;
indev_drag
(
state
);
if
(
state
->
reset_qry
!=
0
)
return
;
/*If there is no drag then check for long press time*/
if
(
state
->
drag_in_prog
==
0
&&
state
->
long_press_sent
==
0
)
{
/*Send a signal about the long press if enough time elapsed*/
if
(
lv_tick_elaps
(
state
->
press_time_stamp
)
>
LV_INDEV_LONG_PRESS_TIME
)
{
pr_obj
->
signal_f
(
pr_obj
,
LV_SIGNAL_LONG_PRESS
,
indev_act
);
if
(
state
->
reset_qry
!=
0
)
return
;
/*Mark the signal sending to do not send it again*/
state
->
long_press_sent
=
1
;
...
...
@@ -351,12 +373,12 @@ static void indev_proc_press(lv_indev_state_t * state)
/*Send a signal about the long press repeate if enough time elapsed*/
if
(
lv_tick_elaps
(
state
->
lpr_rep_time_stamp
)
>
LV_INDEV_LONG_PRESS_REP_TIME
)
{
pr_obj
->
signal_f
(
pr_obj
,
LV_SIGNAL_LONG_PRESS_REP
,
indev_act
);
if
(
state
->
reset_qry
!=
0
)
return
;
state
->
lpr_rep_time_stamp
=
lv_tick_get
();
}
}
}
}
}
/**
...
...
@@ -376,6 +398,7 @@ static void disi_proc_release(lv_indev_state_t * state)
/*Forgot the act obj and send a released signal */
if
(
state
->
act_obj
!=
NULL
)
{
state
->
act_obj
->
signal_f
(
state
->
act_obj
,
LV_SIGNAL_RELEASED
,
indev_act
);
if
(
state
->
reset_qry
!=
0
)
return
;
state
->
act_obj
=
NULL
;
state
->
press_time_stamp
=
0
;
state
->
lpr_rep_time_stamp
=
0
;
...
...
@@ -385,6 +408,7 @@ static void disi_proc_release(lv_indev_state_t * state)
* In case of reset query ignore the remaining parts.*/
if
(
state
->
last_obj
!=
NULL
&&
state
->
reset_qry
==
0
)
{
indev_drag_throw
(
state
);
if
(
state
->
reset_qry
!=
0
)
return
;
}
}
...
...
@@ -475,6 +499,7 @@ static void indev_drag(lv_indev_state_t * state)
if
(
lv_obj_get_x
(
drag_obj
)
!=
act_x
||
lv_obj_get_y
(
drag_obj
)
!=
act_y
)
{
if
(
state
->
drag_range_out
!=
0
)
{
/*Send the drag begin signal on first move*/
drag_obj
->
signal_f
(
drag_obj
,
LV_SIGNAL_DRAG_BEGIN
,
indev_act
);
if
(
state
->
reset_qry
!=
0
)
return
;
}
state
->
drag_in_prog
=
1
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment