| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Apple Computer, Inc. | 2 * Copyright (C) 2006 Apple Computer, Inc. |
| 3 * Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies) | 3 * Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies) |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 | 89 |
| 90 const HitTestLocation& hitTestLocation() const { return m_hitTestLocation; } | 90 const HitTestLocation& hitTestLocation() const { return m_hitTestLocation; } |
| 91 | 91 |
| 92 void setInnerNode(Node*); | 92 void setInnerNode(Node*); |
| 93 void setInnerNonSharedNode(Node*); | 93 void setInnerNonSharedNode(Node*); |
| 94 void setURLElement(Element*); | 94 void setURLElement(Element*); |
| 95 void setScrollbar(Scrollbar*); | 95 void setScrollbar(Scrollbar*); |
| 96 void setIsFirstLetter(bool b) { m_isFirstLetter = b; } | 96 void setIsFirstLetter(bool b) { m_isFirstLetter = b; } |
| 97 void setIsOverWidget(bool b) { m_isOverWidget = b; } | 97 void setIsOverWidget(bool b) { m_isOverWidget = b; } |
| 98 | 98 |
| 99 Frame* targetFrame() const; | |
| 100 bool isSelected() const; | 99 bool isSelected() const; |
| 101 String spellingToolTip(TextDirection&) const; | 100 String spellingToolTip(TextDirection&) const; |
| 102 String title(TextDirection&) const; | 101 String title(TextDirection&) const; |
| 103 const AtomicString& altDisplayString() const; | 102 const AtomicString& altDisplayString() const; |
| 104 String titleDisplayString() const; | 103 String titleDisplayString() const; |
| 105 Image* image() const; | 104 Image* image() const; |
| 106 IntRect imageRect() const; | 105 IntRect imageRect() const; |
| 107 KURL absoluteImageURL() const; | 106 KURL absoluteImageURL() const; |
| 108 KURL absoluteMediaURL() const; | 107 KURL absoluteMediaURL() const; |
| 109 KURL absoluteLinkURL() const; | 108 KURL absoluteLinkURL() const; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 RefPtr<Scrollbar> m_scrollbar; | 141 RefPtr<Scrollbar> m_scrollbar; |
| 143 bool m_isOverWidget; // Returns true if we are over a widget (and not in the
border/padding area of a RenderWidget for example). | 142 bool m_isOverWidget; // Returns true if we are over a widget (and not in the
border/padding area of a RenderWidget for example). |
| 144 bool m_isFirstLetter; | 143 bool m_isFirstLetter; |
| 145 | 144 |
| 146 mutable OwnPtr<NodeSet> m_rectBasedTestResult; | 145 mutable OwnPtr<NodeSet> m_rectBasedTestResult; |
| 147 }; | 146 }; |
| 148 | 147 |
| 149 } // namespace WebCore | 148 } // namespace WebCore |
| 150 | 149 |
| 151 #endif // HitTestResult_h | 150 #endif // HitTestResult_h |
| OLD | NEW |