mirror of
https://github.com/redstrate/Astra.git
synced 2025-04-22 12:47:44 +00:00
17 lines
No EOL
235 B
C++
17 lines
No EOL
235 B
C++
#pragma once
|
|
|
|
#include <QLabel>
|
|
#include <QUrl>
|
|
|
|
class BannerWidget : public QLabel {
|
|
public:
|
|
BannerWidget();
|
|
|
|
void setUrl(QUrl url);
|
|
|
|
protected:
|
|
void mousePressEvent(QMouseEvent* event) override;
|
|
|
|
private:
|
|
QUrl url;
|
|
}; |