GuiOutLookView.cpp
上传用户:zhanglf88
上传日期:2013-11-19
资源大小:6036k
文件大小:2k
源码类别:

金融证券系统

开发平台:

Visual C++

  1. //-----------------------------------------------------------------------//
  2. // This is a part of the GuiLib MFC Extention.  //
  3. // Autor  :  Francisco Campos  //
  4. // (C) 2002 Francisco Campos <www.beyondata.com> All rights reserved     //
  5. // This code is provided "as is", with absolutely no warranty expressed  //
  6. // or implied. Any use is at your own risk.  //
  7. // You must obtain the author's consent before you can include this code //
  8. // in a software library.  //
  9. // If the source code in  this file is used in any application  //
  10. // then acknowledgement must be made to the author of this program  //
  11. // fcampos@tutopia.com  //
  12. //-----------------------------------------------------------------------//
  13. #include "stdafx.h"
  14. #include "GuiOutLookView.h"
  15. #ifdef _DEBUG
  16. #undef THIS_FILE
  17. static char THIS_FILE[]=__FILE__;
  18. #define new DEBUG_NEW
  19. #endif
  20. //////////////////////////////////////////////////////////////////////
  21. // Construction/Destruction
  22. //////////////////////////////////////////////////////////////////////
  23. IMPLEMENT_DYNCREATE(CGuiOutLookView,CView)
  24. CGuiOutLookView::CGuiOutLookView()
  25. {
  26. }
  27. CGuiOutLookView::~CGuiOutLookView()
  28. {
  29. }
  30. BEGIN_MESSAGE_MAP(CGuiOutLookView, CView)
  31. //{{AFX_MSG_MAP(COutlookBarView)
  32. ON_WM_SIZE()
  33. ON_WM_CREATE()
  34. //}}AFX_MSG_MAP
  35. END_MESSAGE_MAP()
  36. /////////////////////////////////////////////////////////////////////////////
  37. // COutlookBarView drawing
  38. void CGuiOutLookView::OnDraw(CDC* pDC)
  39. {
  40. CDocument* pDoc = GetDocument();
  41. // TODO: add draw code here
  42. }
  43. /////////////////////////////////////////////////////////////////////////////
  44. // COutlookBarView diagnostics
  45. #ifdef _DEBUG
  46. void CGuiOutLookView::AssertValid() const
  47. {
  48. CView::AssertValid();
  49. }
  50. void CGuiOutLookView::Dump(CDumpContext& dc) const
  51. {
  52. CView::Dump(dc);
  53. }
  54. #endif //_DEBUG
  55. /////////////////////////////////////////////////////////////////////////////
  56. // COutlookBarView message handlers
  57. void CGuiOutLookView::OnInitialUpdate() 
  58. {
  59. CView::OnInitialUpdate();
  60. }
  61. void CGuiOutLookView::OnSize(UINT nType, int cx, int cy) 
  62. {
  63. CView::OnSize(nType, cx, cy);
  64. cf.MoveWindow(0,0,cx,cy);
  65. }
  66. int CGuiOutLookView::OnCreate(LPCREATESTRUCT lpCreateStruct) 
  67. {
  68. if (CView::OnCreate(lpCreateStruct) == -1)
  69. return -1;
  70. if (!cf.Create(WS_VISIBLE|WS_CHILD,
  71. CRect(0,0,0,0), this, 0))
  72. return -1;
  73. return 0;
  74. }