GuiPowerPointView.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 "GuiLib.h"
  15. #include "GuiPowerPointView.h"
  16. #include "GuiDrawLayer.h"
  17. // CGuiPowerPointView
  18. IMPLEMENT_DYNCREATE(CGuiPowerPointView, CView)
  19. CGuiPowerPointView::CGuiPowerPointView()
  20. {
  21. }
  22. CGuiPowerPointView::~CGuiPowerPointView()
  23. {
  24. }
  25. BEGIN_MESSAGE_MAP(CGuiPowerPointView, CView)
  26. ON_WM_SIZE()
  27. ON_WM_CREATE()
  28. END_MESSAGE_MAP()
  29. void CGuiPowerPointView::OnSize(UINT nType, int cx, int cy) 
  30. {
  31. CView::OnSize(nType, cx, cy);
  32. m_tbpp.MoveWindow(0,0,cx,cy);
  33. }
  34. int CGuiPowerPointView::OnCreate(LPCREATESTRUCT lpCreateStruct) 
  35. {
  36. if (CView::OnCreate(lpCreateStruct) == -1)
  37. return -1;
  38. if (!m_tbpp.Create(WS_VISIBLE|WS_CHILD,
  39. CRect(0,0,0,0), this, 0))
  40. return -1;
  41. m_tbpp.SetColorTabs(GuiDrawLayer::GetRGBColorFace());
  42. m_tbpp.SetAutoAjust(TRUE);
  43. m_tbpp.ShowButtonClose(TRUE);
  44. return 0;
  45. }
  46. // CGuiPowerPointView drawing
  47. void CGuiPowerPointView::OnDraw(CDC* pDC)
  48. {
  49. CDocument* pDoc = GetDocument();
  50. // TODO: add draw code here
  51. }
  52. // CGuiPowerPointView diagnostics
  53. #ifdef _DEBUG
  54. void CGuiPowerPointView::AssertValid() const
  55. {
  56. CView::AssertValid();
  57. }
  58. void CGuiPowerPointView::Dump(CDumpContext& dc) const
  59. {
  60. CView::Dump(dc);
  61. }
  62. #endif //_DEBUG
  63. // CGuiPowerPointView message handlers