]> git.saurik.com Git - wxWidgets.git/blame - demos/forty/scoredg.h
Remove DoSetSizeHints() call from Create()
[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
63cafd27 7// Copyright: (c) 1993-1998 Chris Breeze
010216e3 8// Licence: wxWindows licence
63cafd27 9//---------------------------------------------------------------------------
be5a51fb 10// Last modified: 22nd July 1998 - ported to wxWidgets 2.0
63cafd27
JS
11/////////////////////////////////////////////////////////////////////////////
12#ifndef _SCOREDG_H_
13#define _SCOREDG_H_
14
15class ScoreDialog : public wxDialog
16{
17public:
010216e3 18 ScoreDialog(wxWindow* parent, ScoreFile* file);
254a2129 19 virtual ~ScoreDialog(){};
63cafd27 20
010216e3 21 void Display();
63cafd27
JS
22
23protected:
010216e3 24 void OnCloseWindow(wxCloseEvent& event);
63cafd27
JS
25
26private:
010216e3
WS
27 ScoreFile* m_scoreFile;
28 wxButton* m_OK;
e3065973
JS
29
30DECLARE_EVENT_TABLE()
63cafd27
JS
31};
32
33#endif