ladybird/DevTools
Andreas Kling 6c5100b644 LibGUI: Add helper for constructing new TabWidget tabs
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);
2020-02-23 12:27:53 +01:00
..
FormCompiler LibGUI: Remove parent parameter to GUI::Widget constructor 2020-02-23 12:27:53 +01:00
HackStudio LibGUI: Add helper for constructing new TabWidget tabs 2020-02-23 12:27:53 +01:00
Inspector Inspector: Use Core::Object::add() 2020-02-23 12:27:53 +01:00
IPCCompiler AK: Use size_t for ByteBuffer sizes 2020-02-20 13:20:34 +01:00
ProfileViewer LibGUI: Remove parent parameter to GUI::Widget constructor 2020-02-23 12:27:53 +01:00
VisualBuilder LibGUI: Remove parent parameter to GUI::Widget constructor 2020-02-23 12:27:53 +01:00
Makefile Build: clean up build system, use one shared Makefile 2019-12-20 20:20:54 +01:00