Files
dragonpilot/selfdrive/ui/qt/widgets/scrollview.hpp
T
iejMac 9afa14c47f Qt scroller class (#20549)
* initial commit

* class works

* cleanup

* naming

* text window

* fixes

* alerts are now scrollable

* dismiss

* fixed placement

* realease scrolling

* better

* better

* revert text

* naming

* parent
2021-04-01 14:03:31 -07:00

12 lines
194 B
C++

#pragma once
#include <QScroller>
#include <QScrollArea>
class ScrollView : public QScrollArea {
Q_OBJECT
public:
explicit ScrollView(QWidget *w = nullptr, QWidget *parent = nullptr);
};