mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-07-10 15:32:10 +08:00
9afa14c47f
* initial commit * class works * cleanup * naming * text window * fixes * alerts are now scrollable * dismiss * fixed placement * realease scrolling * better * better * revert text * naming * parent
12 lines
194 B
C++
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);
|
|
};
|