mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 00:25:12 +00:00
LibGUI: Add remove_tab and on_change to TabWidget
This commit is contained in:
@@ -53,6 +53,7 @@ public:
|
||||
int container_padding() const { return 2; }
|
||||
|
||||
void add_widget(const StringView&, Widget&);
|
||||
void remove_widget(Widget&);
|
||||
|
||||
template<class T, class... Args>
|
||||
T& add_tab(const StringView& title, Args&&... args)
|
||||
@@ -62,6 +63,10 @@ public:
|
||||
return *t;
|
||||
}
|
||||
|
||||
void remove_tab(Widget& tab) { remove_widget(tab); }
|
||||
|
||||
Function<void(const Widget&)> on_change;
|
||||
|
||||
protected:
|
||||
TabWidget();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user