| 59 | explicit ScrollAreaCustom(QWidget *parent = nullptr); |
| 60 | void addWidget(QWidget* newWidget, bool setAnimation = true); |
| 61 | void addWidgets(QVector<QWidget*> widgets){for(int i = 0; i < widgets.size(); i++)addWidget(widgets[i], false);} |
| 62 | void removeWidget(QWidget* w = nullptr); |
| 63 | void scrollToTop(); |
| 64 | void updateHeight(); |