mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
6c5100b644
This patch adds the following convenience helper: auto tab_widget = GUI::TabWidget::construct(); auto my_widget = tab_widget->add_tab<GUI::Widget>("My tab", ...); The above is equivalent to: auto tab_widget = GUI::TabWidget::construct(); auto my_widget = GUI::Widget::construct(...); tab_widget->add_widget("My tab", my_widget); |
||
---|---|---|
.. | ||
FormCompiler | ||
HackStudio | ||
Inspector | ||
IPCCompiler | ||
ProfileViewer | ||
VisualBuilder | ||
Makefile |