]> git.saurik.com Git - wxWidgets.git/blame_incremental - demos/forty/scoredg.h
wxMessageBox off the main thread lost result code.
[wxWidgets.git] / demos / forty / scoredg.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: scoredg.h
3// Purpose: Forty Thieves patience game
4// Author: Chris Breeze
5// Modified by:
6// Created: 21/07/97
7// Copyright: (c) 1993-1998 Chris Breeze
8// Licence: wxWindows licence
9//---------------------------------------------------------------------------
10// Last modified: 22nd July 1998 - ported to wxWidgets 2.0
11/////////////////////////////////////////////////////////////////////////////
12#ifndef _SCOREDG_H_
13#define _SCOREDG_H_
14
15class ScoreDialog : public wxDialog
16{
17public:
18 ScoreDialog(wxWindow* parent, ScoreFile* file);
19 virtual ~ScoreDialog(){};
20
21 void Display();
22
23protected:
24 void OnCloseWindow(wxCloseEvent& event);
25
26private:
27 ScoreFile* m_scoreFile;
28 wxButton* m_OK;
29
30DECLARE_EVENT_TABLE()
31};
32
33#endif