|
@@ -2,6 +2,7 @@
|
|
|
#include "EventLoop.h"
|
|
|
#include "Event.h"
|
|
|
#include "Widget.h"
|
|
|
+#include "WindowManager.h"
|
|
|
#include <AK/Assertions.h>
|
|
|
|
|
|
static AbstractScreen* s_the;
|
|
@@ -24,9 +25,40 @@ AbstractScreen::AbstractScreen(unsigned width, unsigned height)
|
|
|
{
|
|
|
ASSERT(!s_the);
|
|
|
s_the = this;
|
|
|
+
|
|
|
+ m_cursor_location = rect().center();
|
|
|
+
|
|
|
+ PS2MouseDevice::the().set_client(this);
|
|
|
}
|
|
|
|
|
|
AbstractScreen::~AbstractScreen()
|
|
|
{
|
|
|
}
|
|
|
|
|
|
+void AbstractScreen::did_receive_mouse_data(int dx, int dy, bool left_button, bool right_button)
|
|
|
+{
|
|
|
+ auto prev_location = m_cursor_location;
|
|
|
+ m_cursor_location.moveBy(dx, dy);
|
|
|
+ if (m_cursor_location.x() >= width())
|
|
|
+ m_cursor_location.setX(width() - 1);
|
|
|
+ if (m_cursor_location.y() >= height())
|
|
|
+ m_cursor_location.setY(height() - 1);
|
|
|
+ if (m_cursor_location != prev_location) {
|
|
|
+ auto event = make<MouseEvent>(Event::MouseMove, m_cursor_location.x(), m_cursor_location.y());
|
|
|
+ EventLoop::main().postEvent(&WindowManager::the(), move(event));
|
|
|
+ }
|
|
|
+ bool prev_left_button = m_left_mouse_button_pressed;
|
|
|
+ bool prev_right_button = m_right_mouse_button_pressed;
|
|
|
+ m_left_mouse_button_pressed = left_button;
|
|
|
+ m_right_mouse_button_pressed = right_button;
|
|
|
+ if (prev_left_button != left_button) {
|
|
|
+ auto event = make<MouseEvent>(left_button ? Event::MouseDown : Event::MouseUp, m_cursor_location.x(), m_cursor_location.y(), MouseButton::Left);
|
|
|
+ EventLoop::main().postEvent(&WindowManager::the(), move(event));
|
|
|
+ }
|
|
|
+ if (prev_right_button != right_button) {
|
|
|
+ auto event = make<MouseEvent>(right_button ? Event::MouseDown : Event::MouseUp, m_cursor_location.x(), m_cursor_location.y(), MouseButton::Right);
|
|
|
+ EventLoop::main().postEvent(&WindowManager::the(), move(event));
|
|
|
+ }
|
|
|
+ if (m_cursor_location != prev_location)
|
|
|
+ WindowManager::the().redraw_cursor();
|
|
|
+}
|