mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-07-07 05:52:06 +08:00
9a827fea20
* c++ cleanup: standardize file extensions to .cc and .h
* cleanup files_common
old-commit-hash: 81491dc57f
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);
|
|
};
|