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

Unified Diff: ui/events/scoped_target_handler.h

Issue 1411833006: Refactoring to make adding ink drop animations easier (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Refactor ink drop animations (comments in c/b/ui/views/) Created 5 years, 1 month 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/events/scoped_target_handler.h
diff --git a/ui/events/scoped_target_handler.h b/ui/events/scoped_target_handler.h
new file mode 100644
index 0000000000000000000000000000000000000000..c40447ae7781e17ee090a36d403d3b38a328d6b0
--- /dev/null
+++ b/ui/events/scoped_target_handler.h
@@ -0,0 +1,54 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef UI_EVENTS_SCOPED_TARGET_HANDLER_H_
+#define UI_EVENTS_SCOPED_TARGET_HANDLER_H_
+
+#include "base/macros.h"
+#include "ui/events/event_handler.h"
+#include "ui/events/events_export.h"
+
+namespace ui {
+
+class EventTarget;
+
+// An EventHandler that replaces an EventTarget's target handler with itself
+// to pass events to both the original handlers and an additional new
+// EventHandler.
+class EVENTS_EXPORT ScopedTargetHandler : public EventHandler {
+ public:
+ ScopedTargetHandler(EventTarget* target, EventHandler* new_handler);
+ ~ScopedTargetHandler() override;
+
+ // ui::EventHandler:
+ void OnEvent(ui::Event* event) override;
+ void OnKeyEvent(ui::KeyEvent* event) override;
+ void OnMouseEvent(ui::MouseEvent* event) override;
+ void OnScrollEvent(ui::ScrollEvent* event) override;
+ void OnTouchEvent(ui::TouchEvent* event) override;
+ void OnGestureEvent(ui::GestureEvent* event) override;
+ void OnCancelMode(ui::CancelModeEvent* event) override;
+
+ private:
+ // If non-null the destructor sets this to true. This is set while handling
+ // an event and used to detect if |this| has been deleted.
+ bool* destroyed_flag_;
+
+ // An EventTarget that has its target handler replaced with |this| for a life
+ // time of |this|.
+ EventTarget* target_;
+
+ // An EventHandler that gets restored on |target_| when |this| is destroyed.
+ EventHandler* original_handler_;
+
+ // A new handler that gets events in addition to the |original_handler_| or
+ // |target_|.
+ EventHandler* new_handler_;
+
+ DISALLOW_COPY_AND_ASSIGN(ScopedTargetHandler);
+};
+
+} // namespace ui
+
+#endif // UI_EVENTS_SCOPED_TARGET_HANDLER_H_

Powered by Google App Engine
This is Rietveld 408576698