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

对话框与窗口

开发平台:

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 "GuiLib.h"
  24. #include "GuiPowerPointView.h"
  25. #include "GuiDrawLayer.h"
  26. #ifdef _DEBUG
  27. #undef THIS_FILE
  28. static char THIS_FILE[]=__FILE__;
  29. #define new DEBUG_NEW
  30. #endif
  31. // CGuiPowerPointView
  32. IMPLEMENT_DYNCREATE(CGuiPowerPointView, CView)
  33. CGuiPowerPointView::CGuiPowerPointView()
  34. {
  35. }
  36. CGuiPowerPointView::~CGuiPowerPointView()
  37. {
  38. }
  39. BEGIN_MESSAGE_MAP(CGuiPowerPointView, CView)
  40. ON_WM_SIZE()
  41. ON_WM_CREATE()
  42. END_MESSAGE_MAP()
  43. void CGuiPowerPointView::OnSize(UINT nType, int cx, int cy) 
  44. {
  45. CView::OnSize(nType, cx, cy);
  46. m_tbpp.MoveWindow(0,0,cx,cy);
  47. }
  48. int CGuiPowerPointView::OnCreate(LPCREATESTRUCT lpCreateStruct) 
  49. {
  50. if (CView::OnCreate(lpCreateStruct) == -1)
  51. return -1;
  52. if (!m_tbpp.Create(WS_VISIBLE|WS_CHILD,
  53. CRect(0,0,0,0), this, 0))
  54. return -1;
  55. m_tbpp.SetColorTabs(GuiDrawLayer::GetRGBColorFace());
  56. m_tbpp.SetAutoAjust(TRUE);
  57. m_tbpp.ShowButtonClose(TRUE);
  58. return 0;
  59. }
  60. // CGuiPowerPointView drawing
  61. void CGuiPowerPointView::OnDraw(CDC* pDC)
  62. {
  63. CDocument* pDoc = GetDocument();
  64. // TODO: add draw code here
  65. }
  66. // CGuiPowerPointView diagnostics
  67. #ifdef _DEBUG
  68. void CGuiPowerPointView::AssertValid() const
  69. {
  70. CView::AssertValid();
  71. }
  72. void CGuiPowerPointView::Dump(CDumpContext& dc) const
  73. {
  74. CView::Dump(dc);
  75. }
  76. #endif //_DEBUG
  77. // CGuiPowerPointView message handlers