1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-22 12:47:44 +00:00
astra/launcher/desktop/include/bannerwidget.h
2022-08-15 11:14:37 -04:00

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