// For license of this file, see /LICENSE.md. #ifndef RESIZABLESTACKEDWIDGET_H #define RESIZABLESTACKEDWIDGET_H #include class ResizableStackedWidget : public QStackedWidget { public: explicit ResizableStackedWidget(QWidget* parent = nullptr); virtual QSize sizeHint() const; virtual QSize minimumSizeHint() const; }; #endif // RESIZABLESTACKEDWIDGET_H