Upstream version 6.35.121.0
[platform/framework/web/crosswalk.git] / src / ui / aura / window_targeter.h
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef UI_AURA_WINDOW_TARGETER_H_
6 #define UI_AURA_WINDOW_TARGETER_H_
7
8 #include "ui/aura/aura_export.h"
9 #include "ui/events/event_targeter.h"
10
11 namespace aura {
12
13 class Window;
14
15 class AURA_EXPORT WindowTargeter : public ui::EventTargeter {
16  public:
17   WindowTargeter();
18   virtual ~WindowTargeter();
19
20  protected:
21   bool WindowCanAcceptEvent(aura::Window* window,
22                             const ui::LocatedEvent& event) const;
23
24   // Returns whether the location of the event is in an actionable region of the
25   // window. Note that the location etc. of |event| is in the |window|'s
26   // parent's coordinate system.
27   virtual bool EventLocationInsideBounds(aura::Window* window,
28                                          const ui::LocatedEvent& event) const;
29
30   // ui::EventTargeter:
31   virtual ui::EventTarget* FindTargetForEvent(ui::EventTarget* root,
32                                               ui::Event* event) OVERRIDE;
33   virtual ui::EventTarget* FindTargetForLocatedEvent(
34       ui::EventTarget* root,
35       ui::LocatedEvent* event) OVERRIDE;
36   virtual bool SubtreeShouldBeExploredForEvent(
37       ui::EventTarget* target,
38       const ui::LocatedEvent& event) OVERRIDE;
39
40  private:
41   Window* FindTargetForKeyEvent(Window* root_window,
42                                 const ui::KeyEvent& event);
43   Window* FindTargetInRootWindow(Window* root_window,
44                                  const ui::LocatedEvent& event);
45
46   DISALLOW_COPY_AND_ASSIGN(WindowTargeter);
47 };
48
49 }  // namespace aura
50
51 #endif  // UI_AURA_WINDOW_TARGETER_H_