2020-12-05 13:08:24 +01:00
|
|
|
#pragma once
|
2017-07-23 02:55:08 -05:00
|
|
|
|
|
|
|
|
// I just want the struct for the save data.
|
2025-04-08 19:46:57 +03:00
|
|
|
#include "rpcsx/fw/ps3/cellSaveData.h"
|
2017-07-23 02:55:08 -05:00
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
#include <QTableWidget>
|
|
|
|
|
|
2025-04-05 22:50:45 +03:00
|
|
|
// Used to display the information of a savedata.
|
|
|
|
|
class save_data_info_dialog : public QDialog
|
2017-07-23 02:55:08 -05:00
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
2021-04-07 23:05:18 +02:00
|
|
|
explicit save_data_info_dialog(SaveDataEntry save, QWidget* parent = nullptr);
|
2025-04-05 22:50:45 +03:00
|
|
|
|
2017-07-23 02:55:08 -05:00
|
|
|
private:
|
|
|
|
|
void UpdateData();
|
|
|
|
|
|
|
|
|
|
SaveDataEntry m_entry;
|
|
|
|
|
QTableWidget* m_list;
|
|
|
|
|
};
|