InitDialog.cpp
上传用户:popouu88
上传日期:2013-02-11
资源大小:2894k
文件大小:2k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. // InitDialog.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "conference.h"
  5. #include "InitDialog.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CInitDialog dialog
  13. CInitDialog::CInitDialog( const char * text , CWnd* pParent /*=NULL*/)
  14. : CDialog(CInitDialog::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CInitDialog)
  17. //}}AFX_DATA_INIT
  18. this->text = text;
  19. }
  20. void CInitDialog::DoDataExchange(CDataExchange* pDX)
  21. {
  22. CDialog::DoDataExchange(pDX);
  23. //{{AFX_DATA_MAP(CInitDialog)
  24. DDX_Control(pDX, IDC_ANIMATE, m_avi);
  25. //}}AFX_DATA_MAP
  26. }
  27. BEGIN_MESSAGE_MAP(CInitDialog, CDialog)
  28. //{{AFX_MSG_MAP(CInitDialog)
  29. ON_WM_CLOSE()
  30. ON_BN_CLICKED(IDCANCEL , OnClose )
  31. //}}AFX_MSG_MAP
  32. END_MESSAGE_MAP()
  33. /////////////////////////////////////////////////////////////////////////////
  34. // CInitDialog message handlers
  35. BOOL CInitDialog::OnInitDialog() 
  36. {
  37. CDialog::OnInitDialog();
  38. this->m_avi.Open( IDR_INIT_AVI );
  39. if( ! this->text.IsEmpty( ) )
  40. {
  41. this->SetWindowText( this->text );
  42. this->SetDlgItemText( IDC_TEXT , this->text );
  43. this->GetDlgItem( IDCANCEL )->ShowWindow( SW_SHOW );
  44. CRect rc;
  45. this->GetDlgItem( IDC_TEXT )->GetWindowRect( &rc );
  46. this->ScreenToClient( &rc );
  47. rc.bottom -= 25;
  48. this->GetDlgItem( IDC_TEXT )->MoveWindow( rc );
  49. }
  50. return TRUE;
  51. }
  52. void CInitDialog::OnClose() 
  53. {
  54. CDialog::OnCancel( );
  55. }