Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
40 lines (32 sloc)
840 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef __PLAYERDATADIALOG | |
#define __PLAYERDATADIALOG | |
#include <wx/wx.h> | |
#include <wx/dialog.h> | |
// Statsgen Includes | |
#include "GenericOKCancelDialog.h" | |
#include "PlayerDataEditorPanel.h" | |
#include "PlayerDataList.h" | |
#include "WindowIDs.h" | |
class PlayerDataDialog : public GenericOKCancelDialog | |
{ | |
public: | |
PlayerDataDialog(wxWindow *parent, | |
wxWindowID id, | |
const wxString &title, | |
const wxPoint &pos, | |
const wxSize &size, | |
long style, | |
const wxString &name, | |
PlayerDataList *playerDataList, | |
wxString &defaultPlayerData, | |
wxString &playerDataTitle); | |
virtual ~PlayerDataDialog(); | |
virtual void OnSave(wxCommandEvent& event); | |
virtual void OnQuit(wxCommandEvent& event); | |
virtual bool DisplayDialog(); | |
protected: | |
private: | |
PlayerDataEditorPanel *panel; | |
PlayerDataList *playerDataList; | |
}; | |
#endif |