QQClient.cpp
上传用户:hysujiao87
上传日期:2007-12-02
资源大小:156k
文件大小:3k
源码类别:

ICQ/即时通讯

开发平台:

C/C++

  1. // QQClient.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "QQClient.h"
  5. #include "QQClientDlg.h"
  6. #include "StartupDlg.h"
  7. #include "RegistryDlg.h"
  8. #include "QQSocket.h"
  9. #ifdef _DEBUG
  10. #define new DEBUG_NEW
  11. #undef THIS_FILE
  12. static char THIS_FILE[] = __FILE__;
  13. #endif
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CQQClientApp
  16. BEGIN_MESSAGE_MAP(CQQClientApp, CWinApp)
  17. //{{AFX_MSG_MAP(CQQClientApp)
  18. // NOTE - the ClassWizard will add and remove mapping macros here.
  19. //    DO NOT EDIT what you see in these blocks of generated code!
  20. //}}AFX_MSG
  21. ON_COMMAND(ID_HELP, CWinApp::OnHelp)
  22. END_MESSAGE_MAP()
  23. /////////////////////////////////////////////////////////////////////////////
  24. // CQQClientApp construction
  25. CQQClientApp::CQQClientApp()
  26. {
  27. // TODO: add construction code here,
  28. // Place all significant initialization in InitInstance
  29. m_hThread = NULL;
  30. }
  31. /////////////////////////////////////////////////////////////////////////////
  32. // The one and only CQQClientApp object
  33. CQQClientApp theApp;
  34. CEvent g_eventEnd;
  35. /////////////////////////////////////////////////////////////////////////////
  36. // CQQClientApp initialization
  37. BOOL CQQClientApp::InitInstance()
  38. {
  39. if (!AfxSocketInit())
  40. {
  41. AfxMessageBox(IDP_SOCKETS_INIT_FAILED);
  42. return FALSE;
  43. }
  44. AfxEnableControlContainer();
  45. // Standard initialization
  46. // If you are not using these features and wish to reduce the size
  47. //  of your final executable, you should remove from the following
  48. //  the specific initialization routines you do not need.
  49. #ifdef _AFXDLL
  50. // Enable3dControls(); // Call this when using MFC in a shared DLL
  51. #else
  52. // Enable3dControlsStatic(); // Call this when linking to MFC statically
  53. #endif
  54. CStartupDlg startupDlg;
  55. //Create the timer thread.
  56. int response = startupDlg.DoModal();
  57. if (response != IDOK)
  58. return FALSE;
  59. CQQClientDlg dlg(startupDlg._serverIP);
  60. dlg._serverIP = startupDlg._serverIP;
  61. dlg._userID = startupDlg._userID;
  62. dlg._nickname = startupDlg._nickname;
  63. m_pMainWnd = &dlg;
  64. int nResponse = dlg.DoModal();
  65. if (nResponse == IDOK)
  66. {
  67. // TODO: Place code here to handle when the dialog is
  68. //  dismissed with OK
  69. }
  70. else if (nResponse == IDCANCEL)
  71. {
  72. // TODO: Place code here to handle when the dialog is
  73. //  dismissed with Cancel
  74. }
  75. // Since the dialog has been closed, return FALSE so that we exit the
  76. //  application, rather than start the application's message pump.
  77. return FALSE;
  78. }
  79. int CQQClientApp::ExitInstance() 
  80. {
  81. // TODO: Add your specialized code here and/or call the base class
  82. return CWinApp::ExitInstance();
  83. }