1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:37:35 +00:00

LibGUI: Add TabWidget::set_property() and handle some properties

This commit is contained in:
Andreas Kling 2020-09-14 16:38:07 +02:00
parent cd0ddf27f3
commit 3355a3e179
2 changed files with 18 additions and 0 deletions

View file

@ -86,6 +86,8 @@ public:
Function<void(Widget&)> on_middle_click;
Function<void(Widget&, const ContextMenuEvent&)> on_context_menu_request;
virtual bool set_property(const StringView& name, const JsonValue& value) override;
protected:
TabWidget();