2020-10-20 06:37:03 +00:00
|
|
|
// Copyright 2020 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2020-10-20 06:37:03 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <optional>
|
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
|
|
|
|
#include "DolphinQt/Config/Graphics/BalloonTip.h"
|
|
|
|
|
2021-05-04 20:50:23 +00:00
|
|
|
constexpr int TOOLTIP_DELAY = 300;
|
|
|
|
|
2020-10-20 06:37:03 +00:00
|
|
|
template <class Derived>
|
|
|
|
class ToolTipWidget : public Derived
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
using Derived::Derived;
|
|
|
|
|
|
|
|
void SetTitle(QString title) { m_title = std::move(title); }
|
|
|
|
|
|
|
|
void SetDescription(QString description) { m_description = std::move(description); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
void enterEvent(QEvent* event) override
|
|
|
|
{
|
|
|
|
if (m_timer_id)
|
|
|
|
return;
|
2021-05-04 20:50:23 +00:00
|
|
|
m_timer_id = this->startTimer(TOOLTIP_DELAY);
|
2020-10-20 06:37:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void leaveEvent(QEvent* event) override
|
|
|
|
{
|
|
|
|
if (m_timer_id)
|
|
|
|
{
|
|
|
|
this->killTimer(*m_timer_id);
|
|
|
|
m_timer_id.reset();
|
|
|
|
}
|
|
|
|
BalloonTip::HideBalloon();
|
|
|
|
}
|
|
|
|
|
|
|
|
void timerEvent(QTimerEvent* event) override
|
|
|
|
{
|
|
|
|
this->killTimer(*m_timer_id);
|
|
|
|
m_timer_id.reset();
|
|
|
|
|
|
|
|
BalloonTip::ShowBalloon(QIcon(), m_title, m_description,
|
|
|
|
this->parentWidget()->mapToGlobal(GetToolTipPosition()), this);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual QPoint GetToolTipPosition() const = 0;
|
|
|
|
|
|
|
|
std::optional<int> m_timer_id;
|
|
|
|
QString m_title;
|
|
|
|
QString m_description;
|
|
|
|
};
|