
These will be used to draw out new widgets on a FormWidget, or in the case of CursorTool, to select and manipulate existing widgets.
20 lines
385 B
C++
20 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";
|
|
}
|