ladybird/DevTools/HackStudio/WidgetTool.cpp
Andreas Kling c8637e0206 HackStudio: Allow moving the selected widgets using the arrow keys
This is a nice complement to moving widgets with the mouse. :^)
2019-11-10 22:40:58 +01:00

26 lines
492 B
C++

#include "WidgetTool.h"
#include <AK/LogStream.h>
void WidgetTool::on_mousedown(GMouseEvent& event)
{
(void)event;
dbg() << "WidgetTool::on_mousedown";
}
void WidgetTool::on_mouseup(GMouseEvent& event)
{
(void)event;
dbg() << "WidgetTool::on_mouseup";
}
void WidgetTool::on_mousemove(GMouseEvent& event)
{
(void)event;
dbg() << "WidgetTool::on_mousemove";
}
void WidgetTool::on_keydown(GKeyEvent& event)
{
(void)event;
dbg() << "WidgetTool::on_keydown";
}