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

金融证券系统

开发平台:

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. #pragma once
  14. // CGuiPowerPointView view
  15. #include "GuiTabPowerPoint.h"
  16. #include "GuiLib.h"
  17. class GUILIBDLLEXPORT CGuiPowerPointView : public CView
  18. {
  19. DECLARE_DYNCREATE(CGuiPowerPointView)
  20. protected:
  21. CGuiTabPowerPoint m_tbpp;
  22. protected:
  23. CGuiPowerPointView();           // protected constructor used by dynamic creation
  24. virtual ~CGuiPowerPointView();
  25. public:
  26. virtual void OnDraw(CDC* pDC);      // overridden to draw this view
  27. #ifdef _DEBUG
  28. virtual void AssertValid() const;
  29. virtual void Dump(CDumpContext& dc) const;
  30. #endif
  31. public:
  32. DECLARE_MESSAGE_MAP()
  33. afx_msg void OnSize(UINT nType, int cx, int cy);
  34. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  35. };