70d26c3f4f
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5300 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
32 lines
874 B
C++
32 lines
874 B
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: forty.h
|
|
// Purpose: Forty Thieves patience game
|
|
// Author: Chris Breeze
|
|
// Modified by:
|
|
// Created: 21/07/97
|
|
// RCS-ID: $Id$
|
|
// Copyright: (c) 1993-1998 Chris Breeze
|
|
// Licence: wxWindows licence
|
|
//---------------------------------------------------------------------------
|
|
// Last modified: 22nd July 1998 - ported to wxWindows 2.0
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
#ifndef _FORTY_H_
|
|
#define _FORTY_H_
|
|
|
|
class FortyApp: public wxApp
|
|
{
|
|
public:
|
|
bool OnInit();
|
|
|
|
static const wxColour& BackgroundColour();
|
|
static const wxColour& TextColour();
|
|
static const wxBrush& BackgroundBrush();
|
|
|
|
private:
|
|
static wxColour* m_backgroundColour;
|
|
static wxColour* m_textColour;
|
|
static wxBrush* m_backgroundBrush;
|
|
};
|
|
|
|
#endif
|