rssguard/src/librssguard/gui/reusable/resizablestackedwidget.h

16 lines
426 B
C++

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