]>
Commit | Line | Data |
---|---|---|
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 | ||
15 | class ScoreDialog : public wxDialog | |
16 | { | |
17 | public: | |
18 | ScoreDialog(wxWindow* parent, ScoreFile* file); | |
19 | virtual ~ScoreDialog(){}; | |
20 | ||
21 | void Display(); | |
22 | ||
23 | protected: | |
24 | void OnCloseWindow(wxCloseEvent& event); | |
25 | ||
26 | private: | |
27 | ScoreFile* m_scoreFile; | |
28 | wxButton* m_OK; | |
29 | ||
30 | DECLARE_EVENT_TABLE() | |
31 | }; | |
32 | ||
33 | #endif |