Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(850)

Unified Diff: Source/core/input/EventHandler.h

Issue 1113323002: [Reland] Refactor the selection code in EventHandler (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/html/HTMLLabelElement.cpp ('k') | Source/core/input/EventHandler.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/input/EventHandler.h
diff --git a/Source/core/input/EventHandler.h b/Source/core/input/EventHandler.h
index 1f6e8c0e2715590451970975ac97e5e98926feb5..dfa22fffd7eff42a3a4b6216f14c4a196b072167 100644
--- a/Source/core/input/EventHandler.h
+++ b/Source/core/input/EventHandler.h
@@ -27,7 +27,6 @@
#define EventHandler_h
#include "core/CoreExport.h"
-#include "core/editing/TextGranularity.h"
#include "core/events/TextEventInputType.h"
#include "core/layout/HitTestRequest.h"
#include "core/page/DragActions.h"
@@ -76,12 +75,11 @@ class LayoutObject;
class ScrollableArea;
class Scrollbar;
class ScrollState;
+class SelectionController;
class TextEvent;
-class VisibleSelection;
class WheelEvent;
class Widget;
-enum AppendTrailingWhitespace { ShouldAppendTrailingWhitespace, DontAppendTrailingWhitespace };
enum class DragInitiator;
class CORE_EXPORT EventHandler : public NoBaseWillBeGarbageCollectedFinalized<EventHandler> {
@@ -198,31 +196,20 @@ public:
PassRefPtr<UserGestureToken> takeLastMouseDownGestureToken() { return m_lastMouseDownUserGestureToken.release(); }
int clickCount() { return m_clickCount; }
- bool mouseDownWasSingleClickInSelection() { return m_mouseDownWasSingleClickInSelection; }
+
+ SelectionController& selectionController() const { return *m_selectionController; }
private:
static DragState& dragState();
DataTransfer* createDraggingDataTransfer() const;
- bool updateSelectionForMouseDownDispatchingSelectStart(Node*, const VisibleSelection&, TextGranularity);
- void selectClosestWordFromHitTestResult(const HitTestResult&, AppendTrailingWhitespace);
- void selectClosestMisspellingFromHitTestResult(const HitTestResult&, AppendTrailingWhitespace);
- void selectClosestWordFromMouseEvent(const MouseEventWithHitTestResults&);
- void selectClosestMisspellingFromMouseEvent(const MouseEventWithHitTestResults&);
- void selectClosestWordOrLinkFromMouseEvent(const MouseEventWithHitTestResults&);
-
bool handleMouseMoveOrLeaveEvent(const PlatformMouseEvent&, HitTestResult* hoveredNode = nullptr, bool onlyUpdateScrollbars = false, bool forceLeave = false);
bool handleMousePressEvent(const MouseEventWithHitTestResults&);
- bool handleMousePressEventSingleClick(const MouseEventWithHitTestResults&);
- bool handleMousePressEventDoubleClick(const MouseEventWithHitTestResults&);
- bool handleMousePressEventTripleClick(const MouseEventWithHitTestResults&);
bool handleMouseFocus(const MouseEventWithHitTestResults&);
bool handleMouseDraggedEvent(const MouseEventWithHitTestResults&);
bool handleMouseReleaseEvent(const MouseEventWithHitTestResults&);
- bool handlePasteGlobalSelection(const PlatformMouseEvent&);
-
HitTestRequest::HitTestRequestType getHitTypeForGestureType(PlatformEvent::Type);
void applyTouchAdjustment(PlatformGestureEvent*, HitTestResult*);
bool handleGestureTap(const GestureEventWithHitTestResults&);
@@ -241,8 +228,6 @@ private:
void cursorUpdateTimerFired(Timer<EventHandler>*);
void activeIntervalTimerFired(Timer<EventHandler>*);
- bool mouseDownMayStartSelect() const { return m_mouseDownMayStartSelect; }
-
void fakeMouseMoveEventTimerFired(Timer<EventHandler>*);
void cancelFakeMouseMoveEvent();
bool isCursorVisible() const;
@@ -308,8 +293,6 @@ private:
void defaultEscapeEventHandler(KeyboardEvent*);
void defaultArrowEventHandler(WebFocusType, KeyboardEvent*);
- void updateSelectionForMouseDrag(const HitTestResult&);
-
void updateLastScrollbarUnderMouse(Scrollbar*, bool);
void setFrameWasScrolledByUser();
@@ -342,11 +325,8 @@ private:
bool m_capturesDragging;
RefPtrWillBeMember<Node> m_mousePressNode;
- bool m_mouseDownMayStartSelect;
bool m_mouseDownMayStartDrag;
- bool m_mouseDownWasSingleClickInSelection;
- enum SelectionInitiationState { HaveNotStartedSelection, PlacedCaret, ExtendedSelection };
- SelectionInitiationState m_selectionInitiationState;
+ const OwnPtrWillBeMember<SelectionController> m_selectionController;
LayoutPoint m_dragStartPos;
« no previous file with comments | « Source/core/html/HTMLLabelElement.cpp ('k') | Source/core/input/EventHandler.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698