2025-03-10 11:41:05 +00:00

30 lines
688 B
C++

// Copyright Citra Emulator Project / Azahar Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#if MICROPROFILE_ENABLED
#include <QWidget>
#include "common/common_types.h"
#include "common/microprofile.h"
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* event) override;
void hideEvent(QHideEvent* event) override;
private:
QAction* toggle_view_action = nullptr;
};
#endif