mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-07-23 10:35:03 +00:00
39 lines
852 B
C++
39 lines
852 B
C++
// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <QDesktopServices>
|
|
#include <QDialog>
|
|
#include <QLabel>
|
|
#include <QPixmap>
|
|
#include <QUrl>
|
|
#include "gui_settings.h"
|
|
|
|
namespace Ui {
|
|
class AboutDialog;
|
|
}
|
|
|
|
class AboutDialog : public QDialog {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit AboutDialog(std::shared_ptr<gui_settings> gui_settings, QWidget* parent = nullptr);
|
|
~AboutDialog();
|
|
bool eventFilter(QObject* obj, QEvent* event);
|
|
|
|
private:
|
|
Ui::AboutDialog* ui;
|
|
|
|
void preloadImages();
|
|
void updateImagesForCurrentTheme();
|
|
void applyHoverEffect(QLabel* label);
|
|
void removeHoverEffect(QLabel* label);
|
|
|
|
bool isDarkTheme() const;
|
|
|
|
QPixmap originalImages[5];
|
|
QPixmap invertedImages[5];
|
|
std::shared_ptr<gui_settings> m_gui_settings;
|
|
};
|