]> git.saurik.com Git - wxWidgets.git/blame - demos/forty/scoredg.h
don't define min/max macros in windows.h (closes 1052256)
[wxWidgets.git] / demos / forty / scoredg.h
CommitLineData
63cafd27
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: scoredg.h
3// Purpose: Forty Thieves patience game
4// Author: Chris Breeze
5// Modified by:
6// Created: 21/07/97
7// RCS-ID: $Id$
8// Copyright: (c) 1993-1998 Chris Breeze
010216e3 9// Licence: wxWindows licence
63cafd27 10//---------------------------------------------------------------------------
be5a51fb 11// Last modified: 22nd July 1998 - ported to wxWidgets 2.0
63cafd27
JS
12/////////////////////////////////////////////////////////////////////////////
13#ifndef _SCOREDG_H_
14#define _SCOREDG_H_
15
16class ScoreDialog : public wxDialog
17{
18public:
010216e3 19 ScoreDialog(wxWindow* parent, ScoreFile* file);
254a2129 20 virtual ~ScoreDialog(){};
63cafd27 21
010216e3 22 void Display();
63cafd27
JS
23
24protected:
010216e3 25 void OnCloseWindow(wxCloseEvent& event);
63cafd27
JS
26
27private:
010216e3
WS
28 ScoreFile* m_scoreFile;
29 wxButton* m_OK;
e3065973
JS
30
31DECLARE_EVENT_TABLE()
63cafd27
JS
32};
33
34#endif