Chromium Code Reviews| Index: ui/views/animation/toolbar_ink_drop_delegate.h |
| diff --git a/ui/views/animation/toolbar_ink_drop_delegate.h b/ui/views/animation/toolbar_ink_drop_delegate.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..85b39745d948023c9aa5bc1bfdc2627c057a6f65 |
| --- /dev/null |
| +++ b/ui/views/animation/toolbar_ink_drop_delegate.h |
| @@ -0,0 +1,57 @@ |
| +// 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_VIEWS_ANIMATION_TOOLBAR_INK_DROP_DELEGATE_H_ |
| +#define UI_VIEWS_ANIMATION_TOOLBAR_INK_DROP_DELEGATE_H_ |
| + |
| +#include "base/macros.h" |
| +#include "base/memory/scoped_ptr.h" |
| +#include "ui/events/event_handler.h" |
| +#include "ui/views/animation/ink_drop_delegate.h" |
| +#include "ui/views/views_export.h" |
| + |
| +namespace ui { |
| +class EventTarget; |
| +class ScopedTargetHandler; |
| +} |
| + |
| +namespace views { |
| + |
| +class InkDropAnimationController; |
| +class InkDropHost; |
| + |
| +// An InkDropDelegate that handles animations for toolbar buttons. |
| +class VIEWS_EXPORT ToolbarInkDropDelegate : public InkDropDelegate, |
|
sadrul
2015/11/25 22:38:58
I would call this ButtonInkDropDelegate
varkha
2015/11/26 00:05:46
Done.
|
| + public ui::EventHandler { |
| + public: |
| + ToolbarInkDropDelegate(InkDropHost* ink_drop_host, ui::EventTarget* target); |
| + ~ToolbarInkDropDelegate() override; |
| + |
| + // InkDropDelegate: |
| + void SetInkDropSize(int large_size, |
| + int large_corner_radius, |
| + int small_size, |
| + int small_corner_radius) override; |
| + void OnBoundsChanged() override; |
| + void OnAction(InkDropState state) override; |
| + |
| + // ui::EventHandler: |
| + void OnGestureEvent(ui::GestureEvent* event) override; |
| + |
| + private: |
| + // An instance of ScopedTargetHandler allowing |this| to handling events. |
| + scoped_ptr<ui::ScopedTargetHandler> target_handler_; |
| + |
| + // Parent InkDropHost (typically a View) that hosts the ink ripple animations. |
| + InkDropHost* ink_drop_host_; |
| + |
| + // Animation controller for the ink drop ripple effect. |
| + scoped_ptr<InkDropAnimationController> ink_drop_animation_controller_; |
| + |
| + DISALLOW_COPY_AND_ASSIGN(ToolbarInkDropDelegate); |
| +}; |
| + |
| +} // namespace views |
| + |
| +#endif // UI_VIEWS_ANIMATION_TOOLBAR_INK_DROP_DELEGATE_H_ |