mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
21 lines
385 B
C++
21 lines
385 B
C++
|
|
#include "CursorTool.h"
|
||
|
|
#include <AK/LogStream.h>
|
||
|
|
|
||
|
|
void CursorTool::on_mousedown(GMouseEvent& event)
|
||
|
|
{
|
||
|
|
(void)event;
|
||
|
|
dbg() << "CursorTool::on_mousedown";
|
||
|
|
}
|
||
|
|
|
||
|
|
void CursorTool::on_mouseup(GMouseEvent& event)
|
||
|
|
{
|
||
|
|
(void)event;
|
||
|
|
dbg() << "CursorTool::on_mouseup";
|
||
|
|
}
|
||
|
|
|
||
|
|
void CursorTool::on_mousemove(GMouseEvent& event)
|
||
|
|
{
|
||
|
|
(void)event;
|
||
|
|
dbg() << "CursorTool::on_mousemove";
|
||
|
|
}
|