open source driving agent
 
 
 
 
 
 

13 lines
238 B

#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);
};