Home | History | Annotate | Download | only in rendering
      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 = 0x1,
     31         Active = 0x2,
     32         MouseMove = 0x4,
     33         MouseUp = 0x8,
     34         IgnoreClipping = 0x10
     35     };
     36 
     37     HitTestRequest(int requestType)
     38         : m_requestType(requestType)
     39     {
     40     }
     41 
     42     bool readOnly() const { return m_requestType & ReadOnly; }
     43     bool active() const { return m_requestType & Active; }
     44     bool mouseMove() const { return m_requestType & MouseMove; }
     45     bool mouseUp() const { return m_requestType & MouseUp; }
     46     bool ignoreClipping() const { return m_requestType & IgnoreClipping; }
     47 
     48 private:
     49     int m_requestType;
     50 };
     51 
     52 } // namespace WebCore
     53 
     54 #endif // HitTestRequest_h
     55