Backported from dd9c743041
.
Co-authored-by: PabloMK7 <hackyglitch2@gmail.com>
Co-authored-by: Shinmegumi <shinmegumi@eden-emu.dev>
Co-authored-by: Gamer64 <76565986+Gamer64ytb@users.noreply.github.com>
Reviewed-on: #179
Co-authored-by: Gamer64 <gamer64@eden-emu.dev>
Co-committed-by: Gamer64 <gamer64@eden-emu.dev>
33 lines
728 B
C++
33 lines
728 B
C++
// SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
// SPDX-FileCopyrightText: 2015 Citra Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#if MICROPROFILE_ENABLED
|
|
|
|
#include <QWidget>
|
|
|
|
class QAction;
|
|
class QHideEvent;
|
|
class QShowEvent;
|
|
|
|
class MicroProfileDialog : public QWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit MicroProfileDialog(QWidget* parent = nullptr);
|
|
|
|
/// Returns a QAction that can be used to toggle visibility of this dialog.
|
|
QAction* toggleViewAction();
|
|
|
|
protected:
|
|
void showEvent(QShowEvent* ev) override;
|
|
void hideEvent(QHideEvent* ev) override;
|
|
|
|
private:
|
|
QAction* toggle_view_action = nullptr;
|
|
};
|
|
#endif
|