1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 20:28:11 +00:00

LibGUI: Add DynamicWidgetContainter

Add a new widget "DynamicWidgetContainer" that is used to group it's
child widgets within an collapsable and detachable container. The
DynmnicWidgetContainer is able to persist it's view state if a config
domain has been provided. Having that set will allow the widget to
restore it's view state automatically.
This commit is contained in:
Torstennator 2023-09-15 12:06:01 +02:00 committed by Andrew Kaster
parent 38974b4128
commit b65e711929
10 changed files with 777 additions and 0 deletions

View file

@ -0,0 +1,38 @@
/*
* Copyright (c) 2023, Torsten Engelmann <engelTorsten@gmx.de>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibGUI/LabelWithEventDispatcher.h>
REGISTER_WIDGET(GUI, LabelWithEventDispatcher)
namespace GUI {
void LabelWithEventDispatcher::update_cursor(Gfx::StandardCursor cursor)
{
if (override_cursor() == cursor)
return;
set_override_cursor(cursor);
update();
}
void LabelWithEventDispatcher::doubleclick_event(MouseEvent& event)
{
if (on_double_click)
on_double_click(event);
}
void LabelWithEventDispatcher::mouseup_event(MouseEvent& event)
{
if (on_mouseup_event)
on_mouseup_event(event);
}
void LabelWithEventDispatcher::mousemove_event(MouseEvent& event)
{
if (on_mousemove_event)
on_mousemove_event(event);
}
}