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

对话框与窗口

开发平台:

Visual C++

  1. #pragma once
  2. /****************************************************************************
  3.  * *  
  4.  * GuiToolKit   *
  5.  *  (MFC extension) *  
  6.  * Created by Francisco Campos G. www.beyondata.com fcampos@beyondata.com *
  7.  *--------------------------------------------------------------------------*    
  8.  * *
  9.  * This program is free software;so you are free to use it any of your *
  10.  * applications (Freeware, Shareware, Commercial),but leave this header *
  11.  * intact. *
  12.  * *
  13.  * These files are provided "as is" without warranty of any kind. *
  14.  * *
  15.  *        GuiToolKit is forever FREE CODE !!!!! *
  16.  * *
  17.  *--------------------------------------------------------------------------*
  18.  * Created by: Francisco Campos G. *
  19.  * Bug Fixes and improvements : (Add your name) *
  20.  * -Francisco Campos *
  21.  * *
  22.  ****************************************************************************/
  23. #pragma once
  24. #include "GuiWorkTab.h"
  25. class GUILIBDLLEXPORT CGuiViewWorkTab : public CView
  26. {
  27. DECLARE_DYNCREATE(CGuiViewWorkTab)
  28. protected:
  29. CGuiWorkTab m_guiWorktab;
  30. protected:
  31. CGuiViewWorkTab();           // protected constructor used by dynamic creation
  32. virtual ~CGuiViewWorkTab();
  33. public:
  34. virtual void OnDraw(CDC* pDC);      // overridden to draw this view
  35. /*#ifdef _DEBUG
  36. virtual void AssertValid() const;
  37. virtual void Dump(CDumpContext& dc) const;
  38. #endif
  39. */
  40. protected:
  41. DECLARE_MESSAGE_MAP()
  42. public:
  43. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  44. afx_msg void OnSize(UINT nType, int cx, int cy);
  45. };