mirror of
https://github.com/RGBCube/serenity
synced 2025-05-25 19:35:07 +00:00

SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
32 lines
641 B
C++
32 lines
641 B
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include "WidgetTool.h"
|
|
#include <AK/Format.h>
|
|
|
|
namespace HackStudio {
|
|
|
|
void WidgetTool::on_mousedown([[maybe_unused]] GUI::MouseEvent& event)
|
|
{
|
|
dbgln("WidgetTool::on_mousedown");
|
|
}
|
|
|
|
void WidgetTool::on_mouseup([[maybe_unused]] GUI::MouseEvent& event)
|
|
{
|
|
dbgln("WidgetTool::on_mouseup");
|
|
}
|
|
|
|
void WidgetTool::on_mousemove([[maybe_unused]] GUI::MouseEvent& event)
|
|
{
|
|
dbgln("WidgetTool::on_mousemove");
|
|
}
|
|
|
|
void WidgetTool::on_keydown([[maybe_unused]] GUI::KeyEvent& event)
|
|
{
|
|
dbgln("WidgetTool::on_keydown");
|
|
}
|
|
|
|
}
|