You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
88 lines
2.9 KiB
C++
88 lines
2.9 KiB
C++
/*
|
|
* All or portions of this file Copyright (c) Amazon.com, Inc. or its affiliates or
|
|
* its licensors.
|
|
*
|
|
* For complete copyright and license terms please see the LICENSE at the root of this
|
|
* distribution (the "License"). All use of this software is governed by the License,
|
|
* or, if provided, by the license below or the license accompanying this file. Do not
|
|
* remove or modify any license notices. This file is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
*
|
|
*/
|
|
|
|
#include "KeepInTouchView.h"
|
|
#include "NewsShared/Qt/ui_KeepInTouchView.h"
|
|
|
|
#include <QMap>
|
|
#include <QUrl>
|
|
#include <QString>
|
|
#include <QDesktopServices>
|
|
|
|
namespace News
|
|
{
|
|
KeepInTouchView::KeepInTouchView(QWidget* parent)
|
|
: QWidget(parent)
|
|
, m_ui(new Ui::KeepInTouchViewWidget())
|
|
{
|
|
m_ui->setupUi(this);
|
|
|
|
m_ui->twich_container->setCursor(Qt::PointingHandCursor);
|
|
m_ui->twitter_container->setCursor(Qt::PointingHandCursor);
|
|
m_ui->youtube_container->setCursor(Qt::PointingHandCursor);
|
|
m_ui->facebook_container->setCursor(Qt::PointingHandCursor);
|
|
|
|
m_ui->twich_container->installEventFilter(this);
|
|
m_ui->twitter_container->installEventFilter(this);
|
|
m_ui->youtube_container->installEventFilter(this);
|
|
m_ui->facebook_container->installEventFilter(this);
|
|
}
|
|
|
|
bool KeepInTouchView::eventFilter(QObject *watched, QEvent *event)
|
|
{
|
|
if (event->type() == QEvent::MouseButtonRelease)
|
|
{
|
|
if (watched == m_ui->twich_container)
|
|
{
|
|
return LaunchSocialMediaUrl(SocialMediaType::Twitch);
|
|
}
|
|
else if (watched == m_ui->twitter_container)
|
|
{
|
|
return LaunchSocialMediaUrl(SocialMediaType::Twitter);
|
|
}
|
|
else if (watched == m_ui->youtube_container)
|
|
{
|
|
return LaunchSocialMediaUrl(SocialMediaType::YouTube);
|
|
}
|
|
else if (watched == m_ui->facebook_container)
|
|
{
|
|
return LaunchSocialMediaUrl(SocialMediaType::Facebook);
|
|
}
|
|
}
|
|
|
|
return QWidget::eventFilter(watched, event);
|
|
}
|
|
|
|
bool KeepInTouchView::LaunchSocialMediaUrl(SocialMediaType type)
|
|
{
|
|
static const QMap<SocialMediaType, const char*> socialMediaTypeToUrlMap =
|
|
{
|
|
{ SocialMediaType::Twitch, m_twitchUrl },
|
|
{ SocialMediaType::Twitter, m_twitterUrl },
|
|
{ SocialMediaType::YouTube, m_youtubeUrl },
|
|
{ SocialMediaType::Facebook, m_facebookUrl }
|
|
};
|
|
|
|
if (socialMediaTypeToUrlMap.contains(type) == false)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
QString link = socialMediaTypeToUrlMap[type];
|
|
Q_EMIT linkActivatedSignal(link);
|
|
|
|
return QDesktopServices::openUrl(QUrl(link));
|
|
}
|
|
}
|
|
|
|
#include "NewsShared/Qt/moc_KeepInTouchView.cpp"
|