rpcsx/rpcs3/rpcs3qt/save_data_info_dialog.h

22 lines
421 B
C
Raw Normal View History

2020-12-05 13:08:24 +01:00
#pragma once
// I just want the struct for the save data.
#include "Emu/Cell/Modules/cellSaveData.h"
#include <QDialog>
#include <QTableWidget>
//Used to display the information of a savedata.
class save_data_info_dialog :public QDialog
{
Q_OBJECT
public:
2021-04-07 23:05:18 +02:00
explicit save_data_info_dialog(SaveDataEntry save, QWidget* parent = nullptr);
private:
void UpdateData();
SaveDataEntry m_entry;
QTableWidget* m_list;
};