• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2006 Apple Computer, Inc.
3  * Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public License
16  * along with this library; see the file COPYING.LIB.  If not, write to
17  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18  * Boston, MA 02110-1301, USA.
19  *
20 */
21 
22 #ifndef HitTestRequest_h
23 #define HitTestRequest_h
24 
25 namespace WebCore {
26 
27 class HitTestRequest {
28 public:
29     enum RequestType {
30         ReadOnly = 1 << 1,
31         Active = 1 << 2,
32         MouseMove = 1 << 3,
33         MouseUp = 1 << 4,
34         IgnoreClipping = 1 << 5,
35         SVGClipContent = 1 << 6
36     };
37 
38     typedef unsigned HitTestRequestType;
39 
HitTestRequest(HitTestRequestType requestType)40     HitTestRequest(HitTestRequestType requestType)
41         : m_requestType(requestType)
42     {
43     }
44 
readOnly()45     bool readOnly() const { return m_requestType & ReadOnly; }
active()46     bool active() const { return m_requestType & Active; }
mouseMove()47     bool mouseMove() const { return m_requestType & MouseMove; }
mouseUp()48     bool mouseUp() const { return m_requestType & MouseUp; }
ignoreClipping()49     bool ignoreClipping() const { return m_requestType & IgnoreClipping; }
svgClipContent()50     bool svgClipContent() const { return m_requestType & SVGClipContent; }
51 
52 private:
53     HitTestRequestType m_requestType;
54 };
55 
56 } // namespace WebCore
57 
58 #endif // HitTestRequest_h
59