wxWidgets/demos/forty/scoredg.h
Maarten Bent 2aadfd882a Fix unused private field warnings in Forty demo
Fix drawing score list without wxUSE_GRID.
2020-07-23 22:55:10 +02:00

31 lines
806 B
C++

/////////////////////////////////////////////////////////////////////////////
// Name: scoredg.h
// Purpose: Forty Thieves patience game
// Author: Chris Breeze
// Modified by:
// Created: 21/07/97
// Copyright: (c) 1993-1998 Chris Breeze
// Licence: wxWindows licence
//---------------------------------------------------------------------------
// Last modified: 22nd July 1998 - ported to wxWidgets 2.0
/////////////////////////////////////////////////////////////////////////////
#ifndef _SCOREDG_H_
#define _SCOREDG_H_
class ScoreDialog : public wxDialog
{
public:
ScoreDialog(wxWindow* parent, ScoreFile* file);
virtual ~ScoreDialog(){}
void Display();
protected:
void OnCloseWindow(wxCloseEvent& event);
private:
wxDECLARE_EVENT_TABLE();
};
#endif