mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-07-06 14:16:39 +08:00
a2e14a8a0c
* initial commit * class works * cleanup * naming * text window * fixes * alerts are now scrollable * dismiss * fixed placement * realease scrolling * better * better * revert text * naming * parent old-commit-hash: 9afa14c47fa40023cf1abb1956d7e2815aab9409
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);
|
|
};
|