mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-01 16:58:52 +00:00
LibGfx: Move StandardCursor enum to LibGfx
This enum existed both in LibGUI and WindowServer which was silly and error-prone.
This commit is contained in:
parent
c063a02979
commit
0f9be82826
Notes:
sideshowbarker
2024-07-19 02:47:24 +09:00
Author: https://github.com/awesomekling
Commit: 0f9be82826
23 changed files with 127 additions and 111 deletions
|
@ -180,7 +180,7 @@ void HeaderView::mousemove_event(MouseEvent& event)
|
|||
bool found_hovered_header = false;
|
||||
for (int i = 0; i < section_count; ++i) {
|
||||
if (section_resize_grabbable_rect(i).contains(event.position())) {
|
||||
window()->set_override_cursor(StandardCursor::ResizeColumn);
|
||||
window()->set_override_cursor(Gfx::StandardCursor::ResizeColumn);
|
||||
set_hovered_section(-1);
|
||||
return;
|
||||
}
|
||||
|
@ -192,7 +192,7 @@ void HeaderView::mousemove_event(MouseEvent& event)
|
|||
if (!found_hovered_header)
|
||||
set_hovered_section(-1);
|
||||
}
|
||||
window()->set_override_cursor(StandardCursor::None);
|
||||
window()->set_override_cursor(Gfx::StandardCursor::None);
|
||||
}
|
||||
|
||||
void HeaderView::mouseup_event(MouseEvent& event)
|
||||
|
@ -200,7 +200,7 @@ void HeaderView::mouseup_event(MouseEvent& event)
|
|||
if (event.button() == MouseButton::Left) {
|
||||
if (m_in_section_resize) {
|
||||
if (!section_resize_grabbable_rect(m_resizing_section).contains(event.position()))
|
||||
window()->set_override_cursor(StandardCursor::None);
|
||||
window()->set_override_cursor(Gfx::StandardCursor::None);
|
||||
m_in_section_resize = false;
|
||||
return;
|
||||
}
|
||||
|
@ -337,7 +337,7 @@ void HeaderView::leave_event(Core::Event& event)
|
|||
{
|
||||
Widget::leave_event(event);
|
||||
set_hovered_section(-1);
|
||||
window()->set_override_cursor(StandardCursor::None);
|
||||
window()->set_override_cursor(Gfx::StandardCursor::None);
|
||||
}
|
||||
|
||||
Gfx::TextAlignment HeaderView::section_alignment(int section) const
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue