LibGUI: Add GListView::index_at_event_position()

And port GListView::mousedown_event() to it.
This commit is contained in:
Sergey Bugaev 2020-01-22 18:07:23 +03:00 committed by Andreas Kling
parent b4923938e1
commit 2ccad40a16
Notes: sideshowbarker 2024-07-19 09:53:25 +09:00
2 changed files with 20 additions and 9 deletions

View file

@ -49,8 +49,9 @@ public:
void scroll_into_view(const GModelIndex&, Orientation);
Point adjusted_position(const Point&);
Point adjusted_position(const Point&) const;
GModelIndex index_at_event_position(const Point&) const;
virtual Rect content_rect(const GModelIndex&) const override;
int model_column() const { return m_model_column; }