added savegame viewer
This commit is contained in:
parent
69494fc100
commit
c126840e4c
10 changed files with 304 additions and 25 deletions
27
SavegameDialog.h
Executable file
27
SavegameDialog.h
Executable 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue