summaryrefslogtreecommitdiffstats
path: root/ui/views/view_targeter_delegate.h
blob: 134a8799ce9a04968a48f71ee36bb151d3f90365 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Copyright 2014 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_VIEW_TARGETER_DELEGATE_H_
#define UI_VIEWS_VIEW_TARGETER_DELEGATE_H_

#include "base/macros.h"
#include "ui/views/views_export.h"

namespace gfx {
class Rect;
}

namespace views {
class View;

// Defines the default behaviour for hit-testing a rectangular region against
// the bounds of a View. Subclasses of View wishing to define custom
// hit-testing behaviour can extend this class.
class VIEWS_EXPORT ViewTargeterDelegate {
 public:
  ViewTargeterDelegate() {}
  virtual ~ViewTargeterDelegate() {}

  // Returns true if the bounds of |target| intersects |rect|, where |rect|
  // is in the local coodinate space of |target|. Overrides of this method by
  // a View subclass should enforce DCHECK_EQ(this, target).
  virtual bool DoesIntersectRect(const View* target,
                                 const gfx::Rect& rect) const;

 private:
  DISALLOW_COPY_AND_ASSIGN(ViewTargeterDelegate);
};

}  // namespace views

#endif  // UI_VIEWS_VIEW_TARGETER_DELEGATE_H_