mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-07 19:57:45 +03:00
LibGUI: Add GListView::index_at_event_position()
And port GListView::mousedown_event() to it.
This commit is contained in:
parent
b4923938e1
commit
2ccad40a16
Notes:
sideshowbarker
2024-07-19 09:53:25 +09:00
Author: https://github.com/bugaevc Commit: https://github.com/SerenityOS/serenity/commit/2ccad40a163 Pull-request: https://github.com/SerenityOS/serenity/pull/1115
@ -84,7 +84,20 @@ Rect GListView::content_rect(const GModelIndex& index) const
|
||||
return content_rect(index.row());
|
||||
}
|
||||
|
||||
Point GListView::adjusted_position(const Point& position)
|
||||
GModelIndex GListView::index_at_event_position(const Point& point) const
|
||||
{
|
||||
ASSERT(model());
|
||||
|
||||
auto adjusted_position = this->adjusted_position(point);
|
||||
for (int row = 0, row_count = model()->row_count(); row < row_count; ++row) {
|
||||
if (!content_rect(row).contains(adjusted_position))
|
||||
continue;
|
||||
return model()->index(row, m_model_column);
|
||||
}
|
||||
return {};
|
||||
}
|
||||
|
||||
Point GListView::adjusted_position(const Point& position) const
|
||||
{
|
||||
return position.translated(horizontal_scrollbar().value() - frame_thickness(), vertical_scrollbar().value() - frame_thickness());
|
||||
}
|
||||
@ -97,18 +110,15 @@ void GListView::mousedown_event(GMouseEvent& event)
|
||||
if (event.button() != GMouseButton::Left)
|
||||
return;
|
||||
|
||||
auto adjusted_position = this->adjusted_position(event.position());
|
||||
for (int row = 0, row_count = model()->row_count(); row < row_count; ++row) {
|
||||
if (!content_rect(row).contains(adjusted_position))
|
||||
continue;
|
||||
auto index = model()->index(row, m_model_column);
|
||||
auto index = index_at_event_position(event.position());
|
||||
if (index.is_valid()) {
|
||||
if (event.modifiers() & Mod_Ctrl)
|
||||
selection().toggle(index);
|
||||
else
|
||||
selection().set(index);
|
||||
return;
|
||||
} else {
|
||||
selection().clear();
|
||||
}
|
||||
selection().clear();
|
||||
}
|
||||
|
||||
void GListView::paint_event(GPaintEvent& event)
|
||||
|
@ -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; }
|
||||
|
Loading…
Reference in New Issue
Block a user