3f6cf0e871
Most of the top streaming services now have a link in the stream key label. Upgrading this button to a button clarifies the assistance for the important step of setting up a stream. Creates a new type of button for URL opening simply which also automatically updates the tootip to the current URL. Includes addition of Twitter/Periscope URL to make this feature more complete.
27 lines
433 B
C++
27 lines
433 B
C++
#include "url-push-button.hpp"
|
|
|
|
#include <QUrl>
|
|
#include <QMouseEvent>
|
|
#include <QDesktopServices>
|
|
|
|
void UrlPushButton::setTargetUrl(QUrl url)
|
|
{
|
|
setToolTip(url.toString());
|
|
m_targetUrl = url;
|
|
}
|
|
|
|
QUrl UrlPushButton::targetUrl()
|
|
{
|
|
return m_targetUrl;
|
|
}
|
|
|
|
void UrlPushButton::mousePressEvent(QMouseEvent *event)
|
|
{
|
|
Q_UNUSED(event)
|
|
QUrl openUrl = m_targetUrl;
|
|
if (openUrl.isEmpty())
|
|
return;
|
|
|
|
QDesktopServices::openUrl(openUrl);
|
|
}
|