| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 bool handleMousePressEvent(const MouseEventWithHitTestResults&); | 210 bool handleMousePressEvent(const MouseEventWithHitTestResults&); |
| 211 bool handleMousePressEventSingleClick(const MouseEventWithHitTestResults&); | 211 bool handleMousePressEventSingleClick(const MouseEventWithHitTestResults&); |
| 212 bool handleMousePressEventDoubleClick(const MouseEventWithHitTestResults&); | 212 bool handleMousePressEventDoubleClick(const MouseEventWithHitTestResults&); |
| 213 bool handleMousePressEventTripleClick(const MouseEventWithHitTestResults&); | 213 bool handleMousePressEventTripleClick(const MouseEventWithHitTestResults&); |
| 214 bool handleMouseDraggedEvent(const MouseEventWithHitTestResults&); | 214 bool handleMouseDraggedEvent(const MouseEventWithHitTestResults&); |
| 215 bool handleMouseReleaseEvent(const MouseEventWithHitTestResults&); | 215 bool handleMouseReleaseEvent(const MouseEventWithHitTestResults&); |
| 216 | 216 |
| 217 void handleKeyboardSelectionMovement(KeyboardEvent*); | 217 void handleKeyboardSelectionMovement(KeyboardEvent*); |
| 218 | 218 |
| 219 Cursor selectCursor(const MouseEventWithHitTestResults&, Scrollbar*); | 219 Cursor selectCursor(const MouseEventWithHitTestResults&, Scrollbar*); |
| 220 #if ENABLE(PAN_SCROLLING) |
| 220 void setPanScrollCursor(); | 221 void setPanScrollCursor(); |
| 222 #endif |
| 221 | 223 |
| 222 void hoverTimerFired(Timer<EventHandler>*); | 224 void hoverTimerFired(Timer<EventHandler>*); |
| 223 | 225 |
| 224 static bool canMouseDownStartSelect(Node*); | 226 static bool canMouseDownStartSelect(Node*); |
| 225 static bool canMouseDragExtendSelect(Node*); | 227 static bool canMouseDragExtendSelect(Node*); |
| 226 | 228 |
| 227 void handleAutoscroll(RenderObject*); | 229 void handleAutoscroll(RenderObject*); |
| 228 void startAutoscrollTimer(); | 230 void startAutoscrollTimer(); |
| 229 void setAutoscrollRenderer(RenderObject*); | 231 void setAutoscrollRenderer(RenderObject*); |
| 230 void autoscrollTimerFired(Timer<EventHandler>*); | 232 void autoscrollTimerFired(Timer<EventHandler>*); |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 345 bool m_sendingEventToSubview; | 347 bool m_sendingEventToSubview; |
| 346 int m_activationEventNumber; | 348 int m_activationEventNumber; |
| 347 #endif | 349 #endif |
| 348 | 350 |
| 349 }; | 351 }; |
| 350 | 352 |
| 351 } // namespace WebCore | 353 } // namespace WebCore |
| 352 | 354 |
| 353 #endif // EventHandler_h | 355 #endif // EventHandler_h |
| 354 | 356 |
| OLD | NEW |