diff options
Diffstat (limited to 'src/citron/debugger/profiler.h')
-rw-r--r-- | src/citron/debugger/profiler.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/citron/debugger/profiler.h b/src/citron/debugger/profiler.h new file mode 100644 index 000000000..4c8ccd3c2 --- /dev/null +++ b/src/citron/debugger/profiler.h @@ -0,0 +1,27 @@ +// SPDX-FileCopyrightText: 2015 Citra Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +#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; +}; |