GuiOutLookView.cpp
上传用户:wlkj888
上传日期:2022-08-01
资源大小:806k
文件大小:3k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. /****************************************************************************
  2.  * *  
  3.  * GuiToolKit   *
  4.  *  (MFC extension) *  
  5.  * Created by Francisco Campos G. www.beyondata.com fcampos@beyondata.com *
  6.  *--------------------------------------------------------------------------*    
  7.  * *
  8.  * This program is free software;so you are free to use it any of your *
  9.  * applications (Freeware, Shareware, Commercial),but leave this header *
  10.  * intact. *
  11.  * *
  12.  * These files are provided "as is" without warranty of any kind. *
  13.  * *
  14.  *        GuiToolKit is forever FREE CODE !!!!! *
  15.  * *
  16.  *--------------------------------------------------------------------------*
  17.  * Created by: Francisco Campos G. *
  18.  * Bug Fixes and improvements : (Add your name) *
  19.  * -Francisco Campos *
  20.  * *
  21.  ****************************************************************************/
  22. #include "stdafx.h"
  23. #include "GuiOutLookView.h"
  24. #ifdef _DEBUG
  25. #undef THIS_FILE
  26. static char THIS_FILE[]=__FILE__;
  27. #define new DEBUG_NEW
  28. #endif
  29. //////////////////////////////////////////////////////////////////////
  30. // Construction/Destruction
  31. //////////////////////////////////////////////////////////////////////
  32. IMPLEMENT_DYNCREATE(CGuiOutLookView,CView)
  33. CGuiOutLookView::CGuiOutLookView()
  34. {
  35. }
  36. CGuiOutLookView::~CGuiOutLookView()
  37. {
  38. }
  39. BEGIN_MESSAGE_MAP(CGuiOutLookView, CView)
  40. //{{AFX_MSG_MAP(COutlookBarView)
  41. ON_WM_SIZE()
  42. ON_WM_CREATE()
  43. //}}AFX_MSG_MAP
  44. END_MESSAGE_MAP()
  45. /////////////////////////////////////////////////////////////////////////////
  46. // COutlookBarView drawing
  47. void CGuiOutLookView::OnDraw(CDC* pDC)
  48. {
  49. CDocument* pDoc = GetDocument();
  50. // TODO: add draw code here
  51. }
  52. /////////////////////////////////////////////////////////////////////////////
  53. // COutlookBarView diagnostics
  54. #ifdef _DEBUG
  55. void CGuiOutLookView::AssertValid() const
  56. {
  57. CView::AssertValid();
  58. }
  59. void CGuiOutLookView::Dump(CDumpContext& dc) const
  60. {
  61. CView::Dump(dc);
  62. }
  63. #endif //_DEBUG
  64. /////////////////////////////////////////////////////////////////////////////
  65. // COutlookBarView message handlers
  66. void CGuiOutLookView::OnInitialUpdate() 
  67. {
  68. CView::OnInitialUpdate();
  69. }
  70. void CGuiOutLookView::OnSize(UINT nType, int cx, int cy) 
  71. {
  72. CView::OnSize(nType, cx, cy);
  73. cf.MoveWindow(0,0,cx,cy);
  74. }
  75. int CGuiOutLookView::OnCreate(LPCREATESTRUCT lpCreateStruct) 
  76. {
  77. if (CView::OnCreate(lpCreateStruct) == -1)
  78. return -1;
  79. if (!cf.Create(WS_VISIBLE|WS_CHILD,
  80. CRect(0,0,0,0), this, 0))
  81. return -1;
  82. return 0;
  83. }