+// ----------------------------------------------------------------------------
+// escape/affirmatives button handling
+// ----------------------------------------------------------------------------
+
+void wxDialogBase::AcceptAndClose()
+{
+ if ( Validate() && TransferDataFromWindow() )
+ {
+ EndDialog(wxID_OK);
+ }
+}
+
+void wxDialogBase::SetAffirmativeId(int affirmativeId)
+{
+ if ( affirmativeId == m_affirmativeId )
+ return;
+
+ // disconnect the handler for the old affirmative button
+ if ( m_affirmativeId != wxID_NONE && m_affirmativeId != wxID_OK )
+ {
+ if ( !Disconnect
+ (
+ m_affirmativeId,
+ wxEVT_COMMAND_BUTTON_CLICKED,
+ wxCommandEventHandler(wxDialogBase::OnAffirmativeButton)
+ ) )
+ {
+ wxFAIL_MSG( _T("failed to disconnect old ok handler") );
+ }
+ }
+ //else: wxID_OK is always handled
+
+ // connect the handler to the new button
+ if ( affirmativeId != wxID_NONE )
+ {
+ Connect(m_affirmativeId,
+ wxEVT_COMMAND_BUTTON_CLICKED,
+ wxCommandEventHandler(wxDialogBase::OnAffirmativeButton));
+ }
+ //else: no affirmative button
+
+ m_affirmativeId = affirmativeId;
+}
+
+void wxDialogBase::SetEscapeId(int escapeId)
+{
+ if ( escapeId == m_escapeId )
+ return;
+
+ if ( m_escapeId != wxID_ANY &&
+ m_escapeId != wxID_CANCEL &&
+ m_escapeId != wxID_ANY )
+ {
+ if ( !Disconnect
+ (
+ m_escapeId,
+ wxEVT_COMMAND_BUTTON_CLICKED,
+ wxCommandEventHandler(wxDialogBase::OnCancelButton)
+ ) )
+ {
+ wxFAIL_MSG( _T("failed to disconnect old cancel handler") );
+ }
+ }
+ //else: wxID_CANCEL is always handled
+
+ // connect the handler to the new button
+ if ( escapeId != wxID_NONE )
+ {
+ Connect(m_escapeId,
+ wxEVT_COMMAND_BUTTON_CLICKED,
+ wxCommandEventHandler(wxDialogBase::OnCancelButton));
+ }
+
+ m_escapeId = escapeId;
+}
+