2024-07-30 11:42:36 +00:00
|
|
|
// SPDX-FileCopyrightText: 2002-2024 PCSX2 Dev Team
|
|
|
|
// SPDX-License-Identifier: GPL-3.0+
|
2022-06-16 00:44:14 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "ui_InputRecordingViewer.h"
|
|
|
|
|
|
|
|
#include "pcsx2/Recording/InputRecordingFile.h"
|
|
|
|
|
|
|
|
class InputRecordingViewer final : public QMainWindow
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit InputRecordingViewer(QWidget* parent = nullptr);
|
|
|
|
~InputRecordingViewer() = default;
|
|
|
|
|
|
|
|
private Q_SLOTS:
|
|
|
|
void openFile();
|
2022-11-26 19:40:17 +00:00
|
|
|
void closeFile();
|
2022-06-16 00:44:14 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::InputRecordingViewer m_ui;
|
|
|
|
|
|
|
|
InputRecordingFile m_file;
|
2022-11-26 19:40:17 +00:00
|
|
|
bool m_file_open;
|
2022-06-16 00:44:14 +00:00
|
|
|
|
|
|
|
void loadTable();
|
2022-11-26 19:40:17 +00:00
|
|
|
QTableWidgetItem* createRowItem(std::tuple<u8, u8> analog);
|
|
|
|
QTableWidgetItem* createRowItem(bool pressed);
|
|
|
|
QTableWidgetItem* createRowItem(std::tuple<bool, u8> buttonInfo);
|
2022-06-16 00:44:14 +00:00
|
|
|
};
|