mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 23:47:45 +00:00
LibWeb: Specialize hit testing for text cursor purposes
The text cursor follows slightly different "intuitive" rules than the regular hit testing. Clicking past the right edge of a text box should still "hit" the text box, and place the cursor at its end, for example. We solve this by adding a HitTestType enum that is passed to hit_test() and determines whether past-the-edge candidates are considered.
This commit is contained in:
parent
5cee150a91
commit
e2b4fef6c7
11 changed files with 38 additions and 27 deletions
|
@ -41,7 +41,7 @@ public:
|
|||
const StackingContext* parent() const { return m_parent; }
|
||||
|
||||
void paint(PaintContext&, LayoutNode::PaintPhase);
|
||||
HitTestResult hit_test(const Gfx::IntPoint&) const;
|
||||
HitTestResult hit_test(const Gfx::IntPoint&, HitTestType) const;
|
||||
|
||||
void dump(int indent = 0) const;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue