Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(304)

Unified Diff: ui/chromeos/touch_exploration_controller.cc

Issue 333623003: Added split tap to TouchExplorationController (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@VLOG
Patch Set: all comments addressed Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ui/chromeos/touch_exploration_controller.cc
diff --git a/ui/chromeos/touch_exploration_controller.cc b/ui/chromeos/touch_exploration_controller.cc
index 7028d787d95b0039a719776191f3fc23311d36c1..65c8442d97c1ab9a1e1cd5fbb94fb0fa131e4d19 100644
--- a/ui/chromeos/touch_exploration_controller.cc
+++ b/ui/chromeos/touch_exploration_controller.cc
@@ -130,6 +130,8 @@ ui::EventRewriteStatus TouchExplorationController::RewriteEvent(
return InTouchExploration(touch_event, rewritten_event);
case PASSTHROUGH_MINUS_ONE:
return InPassthroughMinusOne(touch_event, rewritten_event);
+ case TE_SECOND_PRESS:
+ return InTouchExplSecondPress(touch_event, rewritten_event);
}
NOTREACHED();
@@ -198,11 +200,15 @@ ui::EventRewriteStatus TouchExplorationController::InSingleTapReleased(
if (type == ui::ET_TOUCH_PRESSED) {
// This is the second tap in a double-tap (or double tap-hold).
// Rewrite at location of last touch exploration.
- ui::TouchEvent* rewritten_press_event = new ui::TouchEvent(
- ui::ET_TOUCH_PRESSED,
- last_touch_exploration_location_,
- event.touch_id(),
- event.time_stamp());
+ // If there is no touch exploration yet, discard instead.
+ if (last_touch_exploration_ == NULL) {
dmazzoni 2014/06/16 18:21:19 A scoped_ptr has a "!" operator, so instead of tes
evy 2014/06/16 20:34:20 The release was supposed to be discarded! Added th
+ return ui::EVENT_REWRITE_DISCARD;
+ }
+ ui::TouchEvent* rewritten_press_event =
+ new ui::TouchEvent(ui::ET_TOUCH_PRESSED,
+ last_touch_exploration_->location(),
+ event.touch_id(),
+ event.time_stamp());
rewritten_press_event->set_flags(event.flags());
rewritten_event->reset(rewritten_press_event);
state_ = DOUBLE_TAP_PRESSED;
@@ -226,7 +232,7 @@ ui::EventRewriteStatus TouchExplorationController::InDoubleTapPressed(
// Rewrite at location of last touch exploration.
ui::TouchEvent* rewritten_release_event = new ui::TouchEvent(
ui::ET_TOUCH_RELEASED,
- last_touch_exploration_location_,
+ last_touch_exploration_->location(),
event.touch_id(),
event.time_stamp());
rewritten_release_event->set_flags(event.flags());
@@ -244,10 +250,20 @@ ui::EventRewriteStatus TouchExplorationController::InTouchExploration(
const ui::TouchEvent& event, scoped_ptr<ui::Event>* rewritten_event) {
const ui::EventType type = event.type();
if (type == ui::ET_TOUCH_PRESSED) {
-
- // Ignore any additional fingers when we're already in touch exploration
- // mode. TODO(evy, lisayin): Support "split-tap" here instead.
- return ui::EVENT_REWRITE_DISCARD;
+ // Split-tap
dmazzoni 2014/06/16 18:21:19 Nit: Make this a sentence, like "Handle split-tap"
evy 2014/06/16 20:34:20 Done.
+ initial_press_.reset(new TouchEvent(event));
+ if (tap_timer_.IsRunning())
+ tap_timer_.Stop();
+ ui::TouchEvent* rewritten_touch_event =
+ new ui::TouchEvent(ui::ET_TOUCH_PRESSED,
+ last_touch_exploration_->location(),
+ event.touch_id(),
+ event.time_stamp());
+ rewritten_touch_event->set_flags(event.flags());
+ rewritten_event->reset(rewritten_touch_event);
+ state_ = TE_SECOND_PRESS;
+ VLOG_STATE();
+ return ui::EVENT_REWRITE_REWRITTEN;
} else if (type == ui::ET_TOUCH_RELEASED || type == ui::ET_TOUCH_CANCELLED) {
if (current_touch_ids_.size() == 0)
ResetToNoFingersDown();
@@ -258,7 +274,7 @@ ui::EventRewriteStatus TouchExplorationController::InTouchExploration(
// Rewrite as a mouse-move event.
*rewritten_event = CreateMouseMoveEvent(event.location(), event.flags());
- last_touch_exploration_location_ = event.location();
+ last_touch_exploration_.reset(new TouchEvent(event));
return ui::EVENT_REWRITE_REWRITTEN;
}
@@ -309,6 +325,48 @@ ui::EventRewriteStatus TouchExplorationController::InPassthroughMinusOne(
return ui::EVENT_REWRITE_CONTINUE;
}
+ui::EventRewriteStatus TouchExplorationController::InTouchExplSecondPress(
+ const ui::TouchEvent& event,
+ scoped_ptr<ui::Event>* rewritten_event) {
+ ui::EventType type = event.type();
+ gfx::PointF location = event.location_f();
+ if (type == ui::ET_TOUCH_PRESSED) {
+ return ui::EVENT_REWRITE_DISCARD;
+ } else if (type == ui::ET_TOUCH_MOVED) {
+ // Currently this is a discard, but could be something like rotor
+ // in the future.
+ return ui::EVENT_REWRITE_DISCARD;
+ } else if (type == ui::ET_TOUCH_RELEASED || type == ui::ET_TOUCH_CANCELLED) {
+ // If the touch exploration finger is lifted, there is no option to return
+ // to touch explore anymore. The remaining finger acts as a pending
+ // tap or long tap for the last touch explore location.
+ if (event.touch_id() == last_touch_exploration_->touch_id()){
+ state_ = DOUBLE_TAP_PRESSED;
+ VLOG_STATE();
+ return EVENT_REWRITE_DISCARD;
+ }
+
+ // Continue to release the touch only if the touch explore finger is the
+ // only finger remaining.
+ if (current_touch_ids_.size() != 1)
+ return EVENT_REWRITE_DISCARD;
+
+ // Rewrite at location of last touch exploration.
+ ui::TouchEvent* rewritten_release_event = new ui::TouchEvent(
+ ui::ET_TOUCH_RELEASED,
+ last_touch_exploration_->location(),
+ initial_press_->touch_id(),
+ event.time_stamp());
+ rewritten_release_event->set_flags(event.flags());
+ rewritten_event->reset(rewritten_release_event);
+ state_ = TOUCH_EXPLORATION;
+ VLOG_STATE();
+ return ui::EVENT_REWRITE_REWRITTEN;
+ }
+ NOTREACHED() << "Unexpected event type received.";
+ return ui::EVENT_REWRITE_CONTINUE;
+}
+
void TouchExplorationController::OnTapTimerFired() {
if (state_ != SINGLE_TAP_RELEASED && state_ != SINGLE_TAP_PRESSED)
return;
@@ -324,7 +382,7 @@ void TouchExplorationController::OnTapTimerFired() {
scoped_ptr<ui::Event> mouse_move = CreateMouseMoveEvent(
initial_press_->location(), initial_press_->flags());
DispatchEvent(mouse_move.get());
- last_touch_exploration_location_ = initial_press_->location();
+ last_touch_exploration_.reset(new TouchEvent(*initial_press_));
}
void TouchExplorationController::DispatchEvent(ui::Event* event) {
@@ -406,6 +464,8 @@ const char* TouchExplorationController::EnumStateToString(State state) {
return "TOUCH_EXPLORATION";
case PASSTHROUGH_MINUS_ONE:
return "PASSTHROUGH_MINUS_ONE";
+ case TE_SECOND_PRESS:
+ return "TE_SECOND_PRESS";
}
return "Not a state";
}

Powered by Google App Engine
This is Rietveld 408576698