GuiOutLookView.h
上传用户: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. #if !defined(AFX_GUIOUTLOOKVIEW_H__C539A48F_9650_4AE2_861F_D208728C60A1__INCLUDED_)
  23. #define AFX_GUIOUTLOOKVIEW_H__C539A48F_9650_4AE2_861F_D208728C60A1__INCLUDED_
  24. #if _MSC_VER > 1000
  25. #pragma once
  26. #endif // _MSC_VER > 1000
  27. #include "GuiFolder.h"
  28. class GUILIBDLLEXPORT CGuiOutLookView : public CView  
  29. {
  30. public:
  31. DECLARE_DYNCREATE(CGuiOutLookView)
  32. //*********************************************
  33. CGuiOutLookView();
  34. virtual ~CGuiOutLookView();
  35. //*********************************************
  36. public:
  37. CGuiFolder cf;
  38. protected:
  39. virtual void OnInitialUpdate();
  40. virtual void OnDraw(CDC* pDC);      // overridden to draw this view
  41. protected:
  42. #ifdef _DEBUG
  43. virtual void AssertValid() const;
  44. virtual void Dump(CDumpContext& dc) const;
  45. #endif
  46. protected:
  47. //{{AFX_MSG(CGuiOutLookView)
  48. afx_msg void OnSize(UINT nType, int cx, int cy);
  49. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  50. //}}AFX_MSG
  51. DECLARE_MESSAGE_MAP()
  52. };
  53. #endif // !defined(AFX_GUIOUTLOOKVIEW_H__C539A48F_9650_4AE2_861F_D208728C60A1__INCLUDED_)