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

ICQ/即时通讯

开发平台:

C/C++

  1. // QQServerView.h : interface of the CQQServerView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_QQSERVERVIEW_H__28C0FCEC_8CD4_11D6_9C0E_0080C8F72DA3__INCLUDED_)
  5. #define AFX_QQSERVERVIEW_H__28C0FCEC_8CD4_11D6_9C0E_0080C8F72DA3__INCLUDED_
  6. #include "QQSocket.h" // Added by ClassView
  7. #if _MSC_VER > 1000
  8. #pragma once
  9. #endif // _MSC_VER > 1000
  10. class CQQServerView : public CListView
  11. {
  12. protected: // create from serialization only
  13. CQQServerView();
  14. DECLARE_DYNCREATE(CQQServerView)
  15. // Attributes
  16. public:
  17. CQQServerDoc* GetDocument();
  18. // Operations
  19. public:
  20. void showMessage(LPCTSTR msg){
  21. CString csTime;
  22. CTime time;
  23. time = CTime::GetCurrentTime();
  24. csTime.Format("%02d:%02d:%02d", time.GetHour(), time.GetMinute(), time.GetSecond());
  25. CListCtrl &theCtrl = GetListCtrl();
  26. int index = theCtrl.InsertItem(theCtrl.GetItemCount(), csTime);
  27. theCtrl.SetItemText(index, 1, msg);
  28. }
  29. // Overrides
  30. // ClassWizard generated virtual function overrides
  31. //{{AFX_VIRTUAL(CQQServerView)
  32. public:
  33. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  34. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  35. virtual void OnInitialUpdate();
  36. //}}AFX_VIRTUAL
  37. // Implementation
  38. public:
  39. virtual ~CQQServerView();
  40. #ifdef _DEBUG
  41. virtual void AssertValid() const;
  42. virtual void Dump(CDumpContext& dc) const;
  43. #endif
  44. protected:
  45. // Generated message map functions
  46. protected:
  47. //{{AFX_MSG(CQQServerView)
  48. //}}AFX_MSG
  49. DECLARE_MESSAGE_MAP()
  50. };
  51. #ifndef _DEBUG  // debug version in QQServerView.cpp
  52. inline CQQServerDoc* CQQServerView::GetDocument()
  53.    { return (CQQServerDoc*)m_pDocument; }
  54. #endif
  55. /////////////////////////////////////////////////////////////////////////////
  56. //{{AFX_INSERT_LOCATION}}
  57. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  58. #endif // !defined(AFX_QQSERVERVIEW_H__28C0FCEC_8CD4_11D6_9C0E_0080C8F72DA3__INCLUDED_)