mirror of
https://github.com/PCSX2/pcsx2.git
synced 2025-12-16 04:08:48 +00:00
Some checks failed
🐧 Linux Builds / AppImage (push) Has been cancelled
🐧 Linux Builds / Flatpak (push) Has been cancelled
🍎 MacOS Builds / Defaults (push) Has been cancelled
🖥️ Windows Builds / Lint VS Project Files (push) Has been cancelled
🖥️ Windows Builds / CMake (push) Has been cancelled
🖥️ Windows Builds / SSE4 (push) Has been cancelled
🖥️ Windows Builds / AVX2 (push) Has been cancelled
34 lines
781 B
C++
34 lines
781 B
C++
// SPDX-FileCopyrightText: 2002-2025 PCSX2 Dev Team
|
|
// SPDX-License-Identifier: GPL-3.0+
|
|
|
|
#pragma once
|
|
|
|
#include "ui_AboutDialog.h"
|
|
#include <QtWidgets/QDialog>
|
|
|
|
class AboutDialog final : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit AboutDialog(QWidget* parent = nullptr);
|
|
~AboutDialog();
|
|
|
|
static QString getWebsiteUrl();
|
|
static QString getSupportForumsUrl();
|
|
static QString getGitHubRepositoryUrl();
|
|
static QString getLicenseUrl();
|
|
static QString getThirdPartyLicensesUrl();
|
|
static QString getWikiUrl();
|
|
static QString getDocumentationUrl();
|
|
static QString getDiscordServerUrl();
|
|
|
|
static void showHTMLDialog(QWidget* parent, const QString& title, const QString& url);
|
|
|
|
private Q_SLOTS:
|
|
void linksLinkActivated(const QString& link);
|
|
|
|
private:
|
|
Ui::AboutDialog m_ui;
|
|
};
|