mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
LibGUI: Register the 'ColorInput' and 'Frame' widgets
This commit is contained in:
parent
9bcc168b9b
commit
6902a09e47
Notes:
sideshowbarker
2024-07-19 02:14:10 +09:00
Author: https://github.com/alimpfard Commit: https://github.com/SerenityOS/serenity/commit/6902a09e479 Pull-request: https://github.com/SerenityOS/serenity/pull/3592 Reviewed-by: https://github.com/awesomekling
1 changed files with 3 additions and 0 deletions
|
@ -31,6 +31,7 @@
|
|||
#include <LibGUI/BoxLayout.h>
|
||||
#include <LibGUI/Button.h>
|
||||
#include <LibGUI/CheckBox.h>
|
||||
#include <LibGUI/ColorInput.h>
|
||||
#include <LibGUI/Event.h>
|
||||
#include <LibGUI/GroupBox.h>
|
||||
#include <LibGUI/Label.h>
|
||||
|
@ -58,6 +59,8 @@ namespace GUI {
|
|||
|
||||
REGISTER_WIDGET(GUI, Button)
|
||||
REGISTER_WIDGET(GUI, CheckBox)
|
||||
REGISTER_WIDGET(GUI, ColorInput)
|
||||
REGISTER_WIDGET(GUI, Frame)
|
||||
REGISTER_WIDGET(GUI, GroupBox)
|
||||
REGISTER_WIDGET(GUI, HorizontalSplitter)
|
||||
REGISTER_WIDGET(GUI, Label)
|
||||
|
|
Loading…
Reference in a new issue