ladybird/DevTools/HackStudio
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
..
CursorTool.cpp LibGUI: Remove some header dependencies from Widget.h 2020-02-14 23:53:11 +01:00
CursorTool.h LibGUI: Add forwarding header 2020-02-16 09:41:56 +01:00
Editor.cpp Userspace: Use Core::Object::add() when building interfaces 2020-02-23 11:10:52 +01:00
Editor.h Userspace: Use Core::Object::add() when building interfaces 2020-02-23 11:10:52 +01:00
EditorWrapper.cpp Userspace: Use Core::Object::add() when building interfaces 2020-02-23 11:10:52 +01:00
EditorWrapper.h Userspace: Use Core::Object::add() when building interfaces 2020-02-23 11:10:52 +01:00
FindInFilesWidget.cpp Userspace: Use Core::Object::add() when building interfaces 2020-02-23 11:10:52 +01:00
FindInFilesWidget.h Userspace: Use Core::Object::add() when building interfaces 2020-02-23 11:10:52 +01:00
FormEditorWidget.cpp LibGUI: Make GUI::Frame have the 2px sunken container look by default 2020-02-23 11:10:52 +01:00
FormEditorWidget.h Userspace: Use Core::Object::add() when building interfaces 2020-02-23 11:10:52 +01:00
FormWidget.cpp Userspace: Use Core::Object::add() when building interfaces 2020-02-23 11:10:52 +01:00
FormWidget.h Userspace: Use Core::Object::add() when building interfaces 2020-02-23 11:10:52 +01:00
Locator.cpp Userspace: Use Core::Object::add() when building interfaces 2020-02-23 11:10:52 +01:00
Locator.h Userspace: Use Core::Object::add() when building interfaces 2020-02-23 11:10:52 +01:00
main.cpp LibGUI: Add helper for constructing new TabWidget tabs 2020-02-23 12:27:53 +01:00
Makefile LibGUI+HackStudio: Move syntax highlighting from HackStudio to LibGUI 2020-02-07 20:07:15 +01:00
ProcessStateWidget.cpp Userspace: Use Core::Object::add() when building interfaces 2020-02-23 11:10:52 +01:00
ProcessStateWidget.h Userspace: Use Core::Object::add() when building interfaces 2020-02-23 11:10:52 +01:00
Project.cpp LibCore: Remove leading C from filenames 2020-02-06 15:04:03 +01:00
Project.h LibGUI: Remove leading G from filenames 2020-02-06 20:33:02 +01:00
ProjectFile.cpp LibGUI: Add forwarding header 2020-02-16 09:41:56 +01:00
ProjectFile.h LibGUI: Add forwarding header 2020-02-16 09:41:56 +01:00
TerminalWrapper.cpp Userspace: Use Core::Object::add() when building interfaces 2020-02-23 11:10:52 +01:00
TerminalWrapper.h Userspace: Use Core::Object::add() when building interfaces 2020-02-23 11:10:52 +01:00
Tool.cpp Meta: Add license header to source files 2020-01-18 09:45:54 +01:00
Tool.h LibGUI: Add forwarding header 2020-02-16 09:41:56 +01:00
WidgetTool.cpp LibGUI: Put all classes in the GUI namespace and remove the leading G 2020-02-02 15:15:33 +01:00
WidgetTool.h LibGUI: Put all classes in the GUI namespace and remove the leading G 2020-02-02 15:15:33 +01:00
WidgetTreeModel.cpp LibGUI: Remove leading G from filenames 2020-02-06 20:33:02 +01:00
WidgetTreeModel.h LibGUI: Remove leading G from filenames 2020-02-06 20:33:02 +01:00