// Last modified: 22nd July 1998 - ported to wxWidgets 2.0
/////////////////////////////////////////////////////////////////////////////
-#ifdef __GNUG__
-#pragma implementation
-#pragma interface
-#endif
-
// For compilers that support precompilation, includes "wx/wx.h".
#include "wx/wxprec.h"
{
if (src == dest)
{
- wxMessageBox(_T("Game::DoMove() src == dest"), _T("Debug message"),
+ wxMessageBox(wxT("Game::DoMove() src == dest"), wxT("Debug message"),
wxOK | wxICON_EXCLAMATION);
}
m_moves[m_moveIndex].src = src;
}
else
{
- wxMessageBox(_T("Game::DoMove() Undo buffer full"), _T("Debug message"),
+ wxMessageBox(wxT("Game::DoMove() Undo buffer full"), wxT("Debug message"),
wxOK | wxICON_EXCLAMATION);
}
// Redraw the score box to update games won
DisplayScore(dc);
- if (wxMessageBox(_T("Do you wish to play again?"),
- _T("Well Done, You have won!"), wxYES_NO | wxICON_QUESTION) == wxYES)
+ if (wxMessageBox(wxT("Do you wish to play again?"),
+ wxT("Well Done, You have won!"), wxYES_NO | wxICON_QUESTION) == wxYES)
{
Deal();
canvas->Refresh();
m_pack->GetTopCardPos(x, y);
x += 12 * CardWidth - 105;
- int w, h;
+ wxCoord w, h;
{
- long width, height;
- dc.GetTextExtent(_T("Average score:m_x"), &width, &height);
+ wxCoord width, height;
+ dc.GetTextExtent(wxT("Average score:m_x"), &width, &height);
w = width;
h = height;
}
dc.DrawRectangle(x + w, y, 20, 4 * h);
wxString str;
- str.Printf(_T("%d"), m_currentScore);
- dc.DrawText(_T("Score:"), x, y);
+ str.Printf(wxT("%d"), m_currentScore);
+ dc.DrawText(wxT("Score:"), x, y);
dc.DrawText(str, x + w, y);
y += h;
- str.Printf(_T("%d"), m_numGames);
- dc.DrawText(_T("Games played:"), x, y);
+ str.Printf(wxT("%d"), m_numGames);
+ dc.DrawText(wxT("Games played:"), x, y);
dc.DrawText(str, x + w, y);
y += h;
- str.Printf(_T("%d"), m_numWins);
- dc.DrawText(_T("Games won:"), x, y);
+ str.Printf(wxT("%d"), m_numWins);
+ dc.DrawText(wxT("Games won:"), x, y);
dc.DrawText(str, x + w, y);
y += h;
{
average = (2 * (m_currentScore + m_totalScore) + m_numGames ) / (2 * m_numGames);
}
- str.Printf(_T("%d"), average);
- dc.DrawText(_T("Average score:"), x, y);
+ str.Printf(wxT("%d"), average);
+ dc.DrawText(wxT("Average score:"), x, y);
dc.DrawText(str, x + w, y);
}
Pile::Redraw(dc);
wxString str;
- str.Printf(_T("%d "), m_topCard + 1);
+ str.Printf(wxT("%d "), m_topCard + 1);
dc.SetBackgroundMode( wxSOLID );
dc.SetTextBackground(FortyApp::BackgroundColour());
}
else
{
- wxMessageBox(_T("Pack::AddCard() Undo error"), _T("Forty Thieves: Warning"),
+ wxMessageBox(wxT("Pack::AddCard() Undo error"), wxT("Forty Thieves: Warning"),
wxOK | wxICON_EXCLAMATION);
}
card->TurnCard(facedown);
{
delete m_cards[m_topCard];
}
-};
+}
//------------------------------------------------------//