Open Source Snapmatic and Savegame viewer/editor for GTA V
https://gta5view.syping.de/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
548 B
29 lines
548 B
#ifndef SAVEGAMEDIALOG_H
|
|
#define SAVEGAMEDIALOG_H
|
|
|
|
#include "SavegameData.h"
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class SavegameDialog;
|
|
}
|
|
|
|
class SavegameDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit SavegameDialog(QWidget *parent = 0);
|
|
void setSavegameData(SavegameData *savegame, QString sgdPath, bool readOk);
|
|
~SavegameDialog();
|
|
|
|
private slots:
|
|
void on_cmdClose_clicked();
|
|
void on_cmdCopy_clicked();
|
|
|
|
private:
|
|
Ui::SavegameDialog *ui;
|
|
QString savegameLabStr;
|
|
QString sgdPath;
|
|
};
|
|
|
|
#endif // SAVEGAMEDIALOG_H
|
|
|