mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-07-03 04:22:09 +08:00
5dddcac027
* git stat * first panel and button reset * progress * toggles parent + list * check if label nullptr * style * fixes * fixes * remove line * white space * tabs and spaces old-commit-hash: 928fbecec0d88fff684f3eecf1306393ef21be05
14 lines
238 B
C++
14 lines
238 B
C++
#pragma once
|
|
|
|
#include <QScroller>
|
|
#include <QScrollArea>
|
|
|
|
class ScrollView : public QScrollArea {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ScrollView(QWidget *w = nullptr, QWidget *parent = nullptr);
|
|
protected:
|
|
void hideEvent(QHideEvent *e);
|
|
};
|