DialogBitmapImages.h
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:3k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // DialogBitmapImages.h : header file
  2. //
  3. // This file is a part of the XTREME TOOLKIT PRO MFC class library.
  4. // (c)1998-2008 Codejock Software, All Rights Reserved.
  5. //
  6. // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
  7. // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
  8. // CONSENT OF CODEJOCK SOFTWARE.
  9. //
  10. // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
  11. // IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
  12. // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
  13. // SINGLE COMPUTER.
  14. //
  15. // CONTACT INFORMATION:
  16. // support@codejock.com
  17. // http://www.codejock.com
  18. //
  19. /////////////////////////////////////////////////////////////////////////////
  20. #if !defined(AFX_DIALOGBITMAPIMAGES_H__95DB1801_C68B_4A6E_AE44_8FD7373BE65A__INCLUDED_)
  21. #define AFX_DIALOGBITMAPIMAGES_H__95DB1801_C68B_4A6E_AE44_8FD7373BE65A__INCLUDED_
  22. #if _MSC_VER > 1000
  23. #pragma once
  24. #endif // _MSC_VER > 1000
  25. struct CImage;
  26. class CResourceManager;
  27. class CDialogBitmapImagesHost;
  28. class CComboBoxMask : public CComboBox
  29. {
  30. virtual LRESULT WindowProc(UINT message,WPARAM wParam,LPARAM lParam);
  31. };
  32. struct CImage
  33. {
  34. public:
  35. XTPImageState imageState;
  36. CXTPImageManagerIcon* pIcon;
  37. UINT nID;
  38. int nIndex;
  39. CDialogBitmapImagesHost* pParent;
  40. public:
  41. CXTPImageManagerIconHandle& GetHandle();
  42. };
  43. class CDialogBitmapImagesHost : public CDialog
  44. {
  45. public:
  46. CDialogBitmapImagesHost(UINT nIDTemplate, CResourceManager* pResourceManager);
  47. public:
  48. virtual void OnImageChanged(CImage* /*pImage*/) {
  49. }
  50. public:
  51. CResourceManager* m_pResourceManager;
  52. XTPImageState m_imageState;
  53. CArray<CImage, CImage&> m_arrImages;
  54. CImage* m_pSelected;
  55. CSize m_szIcons;
  56. COLORREF m_clrMask;
  57. };
  58. /////////////////////////////////////////////////////////////////////////////
  59. // CDialogBitmapImages window
  60. class CDialogBitmapImages : public CWnd
  61. {
  62. // Construction
  63. public:
  64. CDialogBitmapImages();
  65. // Attributes
  66. public:
  67. // Operations
  68. public:
  69. CImage* HitTest(CPoint point);
  70. CPoint GetTopLeftPoint();
  71. void OnImageCountChanged();
  72. BOOL m_bScrollVisible[2];
  73. BOOL m_bAllowEdit;
  74. // Overrides
  75. // ClassWizard generated virtual function overrides
  76. //{{AFX_VIRTUAL(CDialogBitmapImages)
  77. //}}AFX_VIRTUAL
  78. // Implementation
  79. public:
  80. virtual ~CDialogBitmapImages();
  81. int GetScrollOffset(int nBar);
  82. // Generated message map functions
  83. protected:
  84. //{{AFX_MSG(CDialogBitmapImages)
  85. afx_msg void OnPaint();
  86. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  87. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  88. afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
  89. afx_msg UINT OnGetDlgCode();
  90. afx_msg void OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
  91. //}}AFX_MSG
  92. DECLARE_MESSAGE_MAP()
  93. };
  94. /////////////////////////////////////////////////////////////////////////////
  95. //{{AFX_INSERT_LOCATION}}
  96. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  97. #endif // !defined(AFX_DIALOGBITMAPIMAGES_H__95DB1801_C68B_4A6E_AE44_8FD7373BE65A__INCLUDED_)