Enhanced stock labels usage. Source cleaning.
[wxWidgets.git] / demos / forty / playerdg.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: playerdg.cpp
3 // Purpose: Forty Thieves patience game
4 // Author: Chris Breeze
5 // Modified by:
6 // Created: 21/07/97
7 // RCS-ID: $Id$
8 // Copyright: (c) 1993-1998 Chris Breeze
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifdef __GNUG__
13 #pragma implementation
14 #pragma interface
15 #endif
16
17 // For compilers that support precompilation, includes "wx/wx.h".
18 #include "wx/wxprec.h"
19
20 #ifdef __BORLANDC__
21 #pragma hdrstop
22 #endif
23
24 #ifndef WX_PRECOMP
25 #include "wx/wx.h"
26 #endif
27
28 #include "scorefil.h"
29 #include "playerdg.h"
30
31 const int ID_LISTBOX = 101;
32
33 BEGIN_EVENT_TABLE(PlayerSelectionDialog, wxDialog)
34 EVT_SIZE(PlayerSelectionDialog::OnSize)
35 EVT_BUTTON(wxID_OK, PlayerSelectionDialog::ButtonCallback)
36 EVT_BUTTON(wxID_CANCEL, PlayerSelectionDialog::ButtonCallback)
37 EVT_LISTBOX(ID_LISTBOX, PlayerSelectionDialog::SelectCallback)
38 EVT_CLOSE(PlayerSelectionDialog::OnCloseWindow)
39 END_EVENT_TABLE()
40
41 PlayerSelectionDialog::PlayerSelectionDialog(
42 wxWindow* parent,
43 ScoreFile* file
44 ) :
45 wxDialog(parent, wxID_ANY, _T("Player Selection"), wxDefaultPosition),
46 m_scoreFile(file)
47 {
48 wxStaticText* msg = new wxStaticText(this, wxID_ANY, _T("Please select a name or type a new one:"));
49
50 wxListBox* list = new wxListBox(
51 this, ID_LISTBOX,
52 wxDefaultPosition, wxDefaultSize,
53 0, 0,
54 wxLB_SINGLE
55 );
56
57 wxArrayString players;
58 m_scoreFile->GetPlayerList(players);
59 for (unsigned int i = 0; i < players.Count(); i++)
60 {
61 list->Append(players[i]);
62 }
63
64 m_textField = new wxTextCtrl(this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize);
65
66 m_OK = new wxButton(this, wxID_OK);
67 m_cancel = new wxButton(this, wxID_CANCEL);
68
69 wxBoxSizer *button_sizer = new wxBoxSizer( wxHORIZONTAL );
70 button_sizer->Add( m_OK, 0, wxALL, 10 );
71 button_sizer->Add( m_cancel, 0, wxALL, 10 );
72
73 wxBoxSizer *topsizer = new wxBoxSizer( wxVERTICAL );
74 topsizer->Add( msg, 0, wxALL , 10 );
75 topsizer->Add( list, 1, wxEXPAND | wxLEFT | wxRIGHT, 10 );
76 topsizer->Add( m_textField, 0, wxEXPAND | wxLEFT | wxRIGHT | wxTOP, 10 );
77 topsizer->Add( button_sizer, 0, wxALIGN_LEFT );
78
79 SetSizer( topsizer );
80
81 topsizer->SetSizeHints( this );
82
83 CentreOnParent();
84 }
85
86 void PlayerSelectionDialog::OnSize(wxSizeEvent& WXUNUSED(event))
87 {
88 Layout();
89 }
90
91 const wxString& PlayerSelectionDialog::GetPlayersName()
92 {
93 /*
94 m_player = wxEmptyString;
95 Show(true);
96 */
97 return m_player;
98 }
99
100 void PlayerSelectionDialog::OnCloseWindow(wxCloseEvent& WXUNUSED(event))
101 {
102 m_player = wxEmptyString;
103 EndModal(wxID_CANCEL);
104 }
105
106 void PlayerSelectionDialog::SelectCallback(wxCommandEvent& event)
107 {
108 if (event.GetEventType() == wxEVT_COMMAND_LISTBOX_SELECTED)
109 {
110 // if (event.IsSelection())
111 m_textField->SetValue(event.GetString());
112 }
113 }
114
115 void PlayerSelectionDialog::ButtonCallback(wxCommandEvent& event)
116 {
117 if (event.GetId() == wxID_OK)
118 {
119 wxString name = m_textField->GetValue();
120 if (!name.IsNull() && name.Length() > 0)
121 {
122 if (name.Contains(_T('@')))
123 {
124 wxMessageBox(_T("Names should not contain the '@' character"), _T("Forty Thieves"));
125 }
126 else
127 {
128 m_player = name;
129 EndModal(wxID_OK);
130 }
131 }
132 else
133 {
134 wxMessageBox(_T("Please enter your name"), _T("Forty Thieves"));
135 }
136 }
137 else
138 {
139 m_player = wxEmptyString;
140 EndModal(wxID_CANCEL);
141 }
142 }