home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / advanced / chatsrvr / chatsrvr.cpp < prev    next >
C/C++ Source or Header  |  1998-03-26  |  4KB  |  144 lines

  1. // chatsrvr.cpp : Defines the class behaviors for the application.
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. #include "stdafx.h"
  14. #include "chatsrvr.h"
  15.  
  16. #include "mainfrm.h"
  17. #include "srvrdoc.h"
  18. #include "srvrvw.h"
  19.  
  20. #ifdef _DEBUG
  21. #undef THIS_FILE
  22. static char BASED_CODE THIS_FILE[] = __FILE__;
  23. #endif
  24.  
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CServerApp
  27.  
  28. BEGIN_MESSAGE_MAP(CServerApp, CWinApp)
  29.     //{{AFX_MSG_MAP(CServerApp)
  30.     ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  31.         // NOTE - the ClassWizard will add and remove mapping macros here.
  32.         //    DO NOT EDIT what you see in these blocks of generated code!
  33.     //}}AFX_MSG_MAP
  34.     // Standard file based document commands
  35.     ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  36.     ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  37. END_MESSAGE_MAP()
  38.  
  39. /////////////////////////////////////////////////////////////////////////////
  40. // CServerApp construction
  41.  
  42. CServerApp::CServerApp()
  43. {
  44. }
  45.  
  46. /////////////////////////////////////////////////////////////////////////////
  47. // The one and only CServerApp object
  48.  
  49. CServerApp theApp;
  50.  
  51. /////////////////////////////////////////////////////////////////////////////
  52. // CServerApp initialization
  53.  
  54. BOOL CServerApp::InitInstance()
  55. {
  56.     if (!AfxSocketInit())
  57.     {
  58.         AfxMessageBox(IDP_SOCKETS_INIT_FAILED);
  59.         return FALSE;
  60.     }
  61.  
  62.     // Standard initialization
  63.     // If you are not using these features and wish to reduce the size
  64.     //  of your final executable, you should remove from the following
  65.     //  the specific initialization routines you do not need.
  66.  
  67.     // Initialize static members of CSocketThread
  68.  
  69. #ifdef _WIN32
  70.     Enable3dControls();
  71. #endif
  72.  
  73.     LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  74.  
  75.     // Register the application's document templates.  Document templates
  76.     //  serve as the connection between documents, frame windows and views.
  77.  
  78.     CSingleDocTemplate* pDocTemplate;
  79.     pDocTemplate = new CSingleDocTemplate(
  80.         IDR_MAINFRAME,
  81.         RUNTIME_CLASS(CServerDoc),
  82.         RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  83.         RUNTIME_CLASS(CServerView));
  84.     AddDocTemplate(pDocTemplate);
  85.  
  86.     // create a new (empty) document
  87.     OnFileNew();
  88.  
  89.     return TRUE;
  90. }
  91.  
  92. int CServerApp::ExitInstance()
  93. {
  94.     return CWinApp::ExitInstance();
  95. }
  96.  
  97. /////////////////////////////////////////////////////////////////////////////
  98. // CAboutDlg dialog used for App About
  99.  
  100. class CAboutDlg : public CDialog
  101. {
  102. public:
  103.     CAboutDlg();
  104.  
  105. // Dialog Data
  106.     //{{AFX_DATA(CAboutDlg)
  107.     enum { IDD = IDD_ABOUTBOX };
  108.     //}}AFX_DATA
  109.  
  110. // Implementation
  111. protected:
  112.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  113.     //{{AFX_MSG(CAboutDlg)
  114.         // No message handlers
  115.     //}}AFX_MSG
  116.     DECLARE_MESSAGE_MAP()
  117. };
  118.  
  119. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  120. {
  121.     //{{AFX_DATA_INIT(CAboutDlg)
  122.     //}}AFX_DATA_INIT
  123. }
  124.  
  125. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  126. {
  127.     CDialog::DoDataExchange(pDX);
  128.     //{{AFX_DATA_MAP(CAboutDlg)
  129.     //}}AFX_DATA_MAP
  130. }
  131.  
  132. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  133.     //{{AFX_MSG_MAP(CAboutDlg)
  134.         // No message handlers
  135.     //}}AFX_MSG_MAP
  136. END_MESSAGE_MAP()
  137.  
  138. // App command to run the dialog
  139. void CServerApp::OnAppAbout()
  140. {
  141.     CAboutDlg aboutDlg;
  142.     aboutDlg.DoModal();
  143. }
  144.