added savegame viewer

This commit is contained in:
Rafael 2016-03-23 02:08:16 +01:00
parent 69494fc100
commit c126840e4c
10 changed files with 304 additions and 25 deletions

27
SavegameDialog.h Executable file
View file

@ -0,0 +1,27 @@
#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, bool readOk);
~SavegameDialog();
private slots:
void on_cmdClose_clicked();
private:
Ui::SavegameDialog *ui;
QString savegameLabStr;
};
#endif // SAVEGAMEDIALOG_H