Sophie

Sophie

distrib > Mandriva > mes5 > x86_64 > by-pkgid > ec9ca887d430b19d033c790063f793df > files > 845

lib64wxgtk2.8-devel-2.8.8-1.4mdvmes5.x86_64.rpm

/////////////////////////////////////////////////////////////////////////////
// Name:        scoredg.h
// Purpose:     Forty Thieves patience game
// Author:      Chris Breeze
// Modified by:
// Created:     21/07/97
// RCS-ID:      $Id: scoredg.h 29660 2004-10-05 15:38:40Z ABX $
// 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:
    ScoreFile* m_scoreFile;
    wxButton* m_OK;

DECLARE_EVENT_TABLE()
};

#endif