1998-07-24 15:43:32 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: scoredg.h
|
|
|
|
// Purpose: Forty Thieves patience game
|
|
|
|
// Author: Chris Breeze
|
|
|
|
// Modified by:
|
|
|
|
// Created: 21/07/97
|
|
|
|
// Copyright: (c) 1993-1998 Chris Breeze
|
2004-06-02 05:14:59 -04:00
|
|
|
// Licence: wxWindows licence
|
1998-07-24 15:43:32 -04:00
|
|
|
//---------------------------------------------------------------------------
|
2004-05-25 07:20:37 -04:00
|
|
|
// Last modified: 22nd July 1998 - ported to wxWidgets 2.0
|
1998-07-24 15:43:32 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _SCOREDG_H_
|
|
|
|
#define _SCOREDG_H_
|
|
|
|
|
|
|
|
class ScoreDialog : public wxDialog
|
|
|
|
{
|
|
|
|
public:
|
2004-06-02 05:14:59 -04:00
|
|
|
ScoreDialog(wxWindow* parent, ScoreFile* file);
|
2004-10-05 11:38:40 -04:00
|
|
|
virtual ~ScoreDialog(){};
|
1998-07-24 15:43:32 -04:00
|
|
|
|
2004-06-02 05:14:59 -04:00
|
|
|
void Display();
|
1998-07-24 15:43:32 -04:00
|
|
|
|
|
|
|
protected:
|
2004-06-02 05:14:59 -04:00
|
|
|
void OnCloseWindow(wxCloseEvent& event);
|
1998-07-24 15:43:32 -04:00
|
|
|
|
|
|
|
private:
|
2004-06-02 05:14:59 -04:00
|
|
|
ScoreFile* m_scoreFile;
|
|
|
|
wxButton* m_OK;
|
1999-02-05 18:55:04 -05:00
|
|
|
|
|
|
|
DECLARE_EVENT_TABLE()
|
1998-07-24 15:43:32 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|