ladybird/LibGUI/GStackWidget.h
Andreas Kling eb610b309e LibGUI: Make class_name() public so you can always call it.
I found myself having to cast to GWidget* all the time when writing some
generic debugging code that just wanted to dump widget info.
2019-03-16 12:57:04 +01:00

22 lines
528 B
C++

#pragma once
#include <LibGUI/GWidget.h>
class GStackWidget : public GWidget {
public:
explicit GStackWidget(GWidget* parent);
virtual ~GStackWidget() override;
GWidget* active_widget() const { return m_active_widget; }
void set_active_widget(GWidget*);
virtual const char* class_name() const override { return "GStackWidget"; }
protected:
virtual void child_event(GChildEvent&) override;
virtual void resize_event(GResizeEvent&) override;
private:
GWidget* m_active_widget { nullptr };
};