Panel.h
上传用户:connie527
上传日期:2022-04-15
资源大小:4326k
文件大小:2k
源码类别:

行业应用

开发平台:

Visual C++

  1. #if !defined(AFX_PANEL_H__A2DF0530_DC5C_4A75_816F_F4587840F738__INCLUDED_)
  2. #define AFX_PANEL_H__A2DF0530_DC5C_4A75_816F_F4587840F738__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // Panel.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CPanel dialog
  10. #include "PreView.h"
  11. class CPanel : public CDialog
  12. {
  13. //Variable of CPanel
  14. public:
  15. CPreView * m_pList;    //预览窗口
  16. UINT       m_Num;      //记录预览窗口的数量
  17. UINT       m_UnitNum;  //m_Num的开平方
  18. UINT       m_Div;      //预览窗口的间隔
  19. CRect      m_PreRC;    //所有预览窗口的显示区域
  20. // Construction
  21. public:
  22. void ShowAll();
  23. void ShowOnly(int Index);
  24. void RefreshWnd(int preIndex,int curIndex);
  25. BOOL CreatePreWnd(UINT uNum);
  26. CPanel(CWnd* pParent = NULL);   // standard constructor
  27. virtual ~CPanel();
  28. // Dialog Data
  29. //{{AFX_DATA(CPanel)
  30. enum { IDD = IDD_PANEL_DIALOG };
  31. // NOTE: the ClassWizard will add data members here
  32. //}}AFX_DATA
  33. // Overrides
  34. // ClassWizard generated virtual function overrides
  35. //{{AFX_VIRTUAL(CPanel)
  36. protected:
  37. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  38. //}}AFX_VIRTUAL
  39. // Implementation
  40. public:
  41. void UpdateAllPreView();
  42. int IsDbled();
  43. // Generated message map functions
  44. //{{AFX_MSG(CPanel)
  45. virtual void OnOK();
  46. afx_msg void OnSize(UINT nType, int cx, int cy);
  47. afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
  48. //}}AFX_MSG
  49. DECLARE_MESSAGE_MAP()
  50. };
  51. //{{AFX_INSERT_LOCATION}}
  52. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  53. #endif // !defined(AFX_PANEL_H__A2DF0530_DC5C_4A75_816F_F4587840F738__INCLUDED_)