mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-06-28 10:02:06 +08:00
d8ac1df789
* cleanup includes * remove include <qtwidgets> * more old-commit-hash: 2c6d27f4828bc57e69f86aed0d1f48364233dffb
13 lines
226 B
C++
13 lines
226 B
C++
#pragma once
|
|
|
|
#include <QScrollArea>
|
|
|
|
class ScrollView : public QScrollArea {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ScrollView(QWidget *w = nullptr, QWidget *parent = nullptr);
|
|
protected:
|
|
void hideEvent(QHideEvent *e) override;
|
|
};
|