///////////////////////////////////////////////////////////////////////////// // Name: wmotioncalibrationx.cpp // Purpose: // Author: Cesar Mauri Loba (cesar at crea-si dot com) // Modified by: // Created: // Copyright: (C) 2008 Cesar Mauri Loba - CREA Software Systems // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . ///////////////////////////////////////////////////////////////////////////// // For compilers that support precompilation, includes "wx/wx.h". #include "wx/wxprec.h" #ifdef __BORLANDC__ #pragma hdrstop #endif #ifndef WX_PRECOMP #include "wx/wx.h" #endif ////@begin includes ////@end includes #include "wmotioncalibrationx.h" ////@begin XPM images #include "resources/usermoveh64.xpm" ////@end XPM images #define TIMER_ID 1234 /*! * WMotionCalibrationX type definition */ IMPLEMENT_DYNAMIC_CLASS( WMotionCalibrationX, wxDialog ) DECLARE_EVENT_TYPE(wxEVT_FACE_NOT_DETECTED, -1) DECLARE_EVENT_TYPE(wxEVT_FACE_DETECTED, -1) DEFINE_EVENT_TYPE(wxEVT_FACE_NOT_DETECTED) DEFINE_EVENT_TYPE(wxEVT_FACE_DETECTED) /*! * WMotionCalibrationX event table definition */ BEGIN_EVENT_TABLE( WMotionCalibrationX, wxDialog ) ////@begin WMotionCalibrationX event table entries ////@end WMotionCalibrationX event table entries EVT_COMMAND (wxID_ANY, wxEVT_FACE_NOT_DETECTED, WMotionCalibrationX::OnFaceNotDetected) EVT_COMMAND (wxID_ANY, wxEVT_FACE_DETECTED, WMotionCalibrationX::OnFaceDetected) END_EVENT_TABLE() /*! * WMotionCalibrationX constructors */ WMotionCalibrationX::WMotionCalibrationX() { Init(); } WMotionCalibrationX::WMotionCalibrationX( wxWindow* parent, wxWindowID id, const wxString& caption, const wxPoint& pos, const wxSize& size, long style ) { Init(); Create(parent, id, caption, pos, size, style); } /*! * WMotionCalibrationX creator */ bool WMotionCalibrationX::Create( wxWindow* parent, wxWindowID id, const wxString& caption, const wxPoint& pos, const wxSize& size, long style ) { ////@begin WMotionCalibrationX creation SetExtraStyle(wxWS_EX_BLOCK_EVENTS); wxDialog::Create( parent, id, caption, pos, size, style ); CreateControls(); if (GetSizer()) { GetSizer()->SetSizeHints(this); } Centre(); ////@end WMotionCalibrationX creation return true; } /*! * WMotionCalibrationX destructor */ WMotionCalibrationX::~WMotionCalibrationX() { ////@begin WMotionCalibrationX destruction ////@end WMotionCalibrationX destruction } /*! * Member initialisation */ void WMotionCalibrationX::Init() { ////@begin WMotionCalibrationX member initialisation m_staticText = NULL; m_staticTextFaceNotDetected = NULL; ////@end WMotionCalibrationX member initialisation } /*! * Control creation for WMotionCalibrationX */ void WMotionCalibrationX::CreateControls() { ////@begin WMotionCalibrationX content construction WMotionCalibrationX* itemDialog1 = this; wxBoxSizer* itemBoxSizer2 = new wxBoxSizer(wxVERTICAL); itemDialog1->SetSizer(itemBoxSizer2); wxStaticBitmap* itemStaticBitmap3 = new wxStaticBitmap( itemDialog1, wxID_STATIC, itemDialog1->GetBitmapResource(wxT("resources/usermoveh64.xpm")), wxDefaultPosition, wxSize(64, 64), 0 ); itemBoxSizer2->Add(itemStaticBitmap3, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5); m_staticText = new wxStaticText( itemDialog1, wxID_STATIC, _("Move your head left and right."), wxDefaultPosition, wxDefaultSize, 0 ); itemBoxSizer2->Add(m_staticText, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5); m_staticTextFaceNotDetected = new wxStaticText( itemDialog1, wxID_STATIC, _("Your face is not detected. This may produce wrong calibration results."), wxDefaultPosition, wxDefaultSize, 0 ); m_staticTextFaceNotDetected->SetForegroundColour(wxColour(128, 0, 0)); itemBoxSizer2->Add(m_staticTextFaceNotDetected, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5); ////@end WMotionCalibrationX content construction } /*! * Should we show tooltips? */ bool WMotionCalibrationX::ShowToolTips() { return true; } /*! * Get bitmap resources */ wxBitmap WMotionCalibrationX::GetBitmapResource( const wxString& name ) { // Bitmap retrieval ////@begin WMotionCalibrationX bitmap retrieval wxUnusedVar(name); if (name == wxT("resources/usermoveh64.xpm")) { wxBitmap bitmap(usermoveh64); return bitmap; } return wxNullBitmap; ////@end WMotionCalibrationX bitmap retrieval } /*! * Get icon resources */ wxIcon WMotionCalibrationX::GetIconResource( const wxString& name ) { // Icon retrieval ////@begin WMotionCalibrationX icon retrieval wxUnusedVar(name); return wxNullIcon; ////@end WMotionCalibrationX icon retrieval } void WMotionCalibrationX::OnFaceNotDetected( wxCommandEvent& ) { m_staticTextFaceNotDetected->Show(true); } void WMotionCalibrationX::OnFaceDetected( wxCommandEvent& ) { m_staticTextFaceNotDetected->Show(false); } void WMotionCalibrationX::SetFaceDetected( bool isFaceDetected ) { if (isFaceDetected) { wxCommandEvent event (wxEVT_FACE_DETECTED); wxPostEvent(this, event); } else { wxCommandEvent event (wxEVT_FACE_NOT_DETECTED); wxPostEvent(this, event); } }