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 / srvrvw.cpp < prev    next >
C/C++ Source or Header  |  1998-03-26  |  2KB  |  85 lines

  1. // srvrvw.cpp : implementation of the CServerView class
  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 "srvrdoc.h"
  17. #include "srvrvw.h"
  18.  
  19. #ifdef _DEBUG
  20. #undef THIS_FILE
  21. static char BASED_CODE THIS_FILE[] = __FILE__;
  22. #endif
  23.  
  24. /////////////////////////////////////////////////////////////////////////////
  25. // CServerView
  26.  
  27. IMPLEMENT_DYNCREATE(CServerView, CEditView)
  28.  
  29. BEGIN_MESSAGE_MAP(CServerView, CEditView)
  30.     //{{AFX_MSG_MAP(CServerView)
  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. END_MESSAGE_MAP()
  35.  
  36. /////////////////////////////////////////////////////////////////////////////
  37. // CServerView construction/destruction
  38.  
  39. CServerView::CServerView()
  40. {
  41. }
  42.  
  43. CServerView::~CServerView()
  44. {
  45. }
  46.  
  47. /////////////////////////////////////////////////////////////////////////////
  48. // CServerView drawing
  49.  
  50. void CServerView::OnDraw(CDC* pDC)
  51. {
  52.     CServerDoc* pDoc = GetDocument();
  53.     ASSERT_VALID(pDoc);
  54.  
  55. }
  56.  
  57. /////////////////////////////////////////////////////////////////////////////
  58. // CServerView diagnostics
  59.  
  60. #ifdef _DEBUG
  61. void CServerView::AssertValid() const
  62. {
  63.     CEditView::AssertValid();
  64. }
  65.  
  66. void CServerView::Dump(CDumpContext& dc) const
  67. {
  68.     CEditView::Dump(dc);
  69. }
  70.  
  71. CServerDoc* CServerView::GetDocument() // non-debug version is inline
  72. {
  73.     return STATIC_DOWNCAST(CServerDoc, m_pDocument);
  74. }
  75. #endif //_DEBUG
  76.  
  77. void CServerView::Message(LPCTSTR lpszMessage)
  78. {
  79.     CString strTemp = lpszMessage;
  80.     strTemp += _T("\r\n");
  81.     int len = GetWindowTextLength();
  82.     GetEditCtrl().SetSel(len,len);
  83.     GetEditCtrl().ReplaceSel(strTemp);
  84. }
  85.