GfxOutBarCtrl.h
上传用户:aokegd
上传日期:2009-12-14
资源大小:1276k
文件大小:7k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // Copyright (c) Iuri Apollonio 1998
  2. // Use & modify as you want & need, and leave those 3 lines.
  3. // http://www.codeguru.com
  4. #if !defined(AFX_GFXOUTBARCTRL_H__28FA2CA4_11B7_11D2_8437_0000B43382FE__INCLUDED_)
  5. #define AFX_GFXOUTBARCTRL_H__28FA2CA4_11B7_11D2_8437_0000B43382FE__INCLUDED_
  6. #if _MSC_VER >= 1000
  7. #pragma once
  8. #endif // _MSC_VER >= 1000
  9. // GfxOutBarCtrl.h : header file
  10. //
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CGfxOutBarCtrl window
  13. #include <afxcoll.h>
  14. #define WM_OUTBAR_NOTIFY WM_USER + 1
  15. #define NM_OB_ITEMCLICK 1
  16. #define NM_OB_ONLABELENDEDIT 2
  17. #define NM_OB_ONGROUPENDEDIT 3
  18. #define NM_OB_DRAGITEM 4
  19. #define NM_FOLDERCHANGE 5
  20. struct OUTBAR_INFO 
  21. {
  22. int index;
  23. const char * cText;
  24. int iDragFrom;
  25. int iDragTo;
  26. };
  27. class CGfxOutBarCtrl : public CWnd
  28. {
  29. // Construction
  30. DECLARE_DYNCREATE(CGfxOutBarCtrl)
  31. public:
  32. CGfxOutBarCtrl();
  33. enum {  fSmallIcon = 1 << 0, fLargeIcon = 1 << 1, fEditGroups = 1 << 2, fEditItems = 1 << 3,
  34. fRemoveGroups = 1 << 4, fRemoveItems = 1 << 5, fAddGroups = 1 << 6, 
  35. fDragItems = 1 << 7, fAnimation = 1 << 8, fSelHighlight = 1 << 9 };
  36. enum { ircIcon = 1, ircLabel = 2, ircAll = 3 };
  37. // Attributes
  38. public:
  39. COLORREF crBackGroundColor, crBackGroundColor1;
  40. COLORREF crTextColor;
  41. COLORREF cr3dFace, crLightBorder, crHilightBorder, crShadowBorder, crDkShadowBorder;
  42. int iFolderHeight;
  43. int xSmallIconLabelOffset, yLargeIconLabelOffset;
  44. int ySmallIconSpacing, yLargeIconSpacing;
  45. int xLeftMargin, yTopMargin;
  46. bool bUpArrow, bDownArrow, bUpPressed, bDownPressed;
  47. CRect rcUpArrow, rcDownArrow;
  48. bool bLooping;
  49. int iHitInternal1, iHitInternal2;
  50. long lAnimationTickCount;
  51. int iLastSel, iSelAnimTiming;
  52. int iSelAnimCount;
  53. DWORD dwFlags;
  54. CPtrArray arFolder;
  55. int iLastFolderHighlighted;
  56. int iLastSelectedFolder;
  57. int iFirstItem;
  58. int iLastItemHighlighted;
  59. bool bPressedHighlight;
  60. int iLastDragItemDraw, iLastDragItemDrawType;
  61. class CBarItem
  62. {
  63. public:
  64. CBarItem(const char * name, const int image, DWORD exData);
  65. virtual  ~CBarItem();
  66. int iImageIndex;
  67. char * cItem;
  68. DWORD dwData;
  69. };
  70. class CBarFolder
  71. {
  72. public:
  73. CBarFolder(const char * name, DWORD exData);
  74. virtual  ~CBarFolder();
  75. int GetItemCount();
  76. int InsertItem(int index, const char * text, const int image, const DWORD exData);
  77. char * cName;
  78. DWORD dwData;
  79. CImageList * pLargeImageList;
  80. CImageList * pSmallImageList;
  81. CPtrArray arItems;
  82. CWnd * pChild;
  83. };
  84. int iSelFolder;
  85. CImageList * pLargeImageList;
  86. CImageList * pSmallImageList;
  87. HCURSOR hHandCursor;
  88. HCURSOR hDragCursor;
  89. HCURSOR hNoDragCursor;
  90. CPen * pBlackPen;
  91. // Operations
  92. public:
  93. enum { htNothing = -1, htFolder, htItem, htUpScroll, htDownScroll};
  94. // Overrides
  95. // ClassWizard generated virtual function overrides
  96. //{{AFX_VIRTUAL(CGfxOutBarCtrl)
  97. //}}AFX_VIRTUAL
  98. // Implementation
  99. public:
  100. void DrawAnimItem(const int xoffset, const int yoffset, const int index);
  101. void SetAnimSelHighlight(const int iTime);
  102. DWORD GetFolderData(int iFolder = -1);
  103. CWnd * GetFolderChild(int iFolder = -1);
  104. int AddFolderBar(const char * pFolder, CWnd * pSon, const DWORD exData = 0);
  105. CString GetItemText(const int index);
  106. void SetAnimationTickCount(const long value) { lAnimationTickCount = value; };
  107. long GetAnimationTickCount() { return lAnimationTickCount; };
  108. void AnimateFolderScroll(const int iFrom, const int iTo);
  109. int GetDragItemRect(const int index, CRect &rect);
  110. void DrawDragArrow(CDC * pDC, const int iFrom, const int iTo);
  111. void SetItemImage(const int index, const int iImage);
  112. void SetItemData(const int index, const DWORD dwData);
  113. int  GetItemImage(const int index) const;
  114. DWORD GetItemData(const int index) const;
  115. bool IsValidItem(const int index) const;
  116. void RemoveItem(const int index);
  117. void SetItemText(const int index, const char * text);
  118. void StartItemEdit(const int index);
  119. void SetFolderText(const int index, const char * text);
  120. void StartGroupEdit(const int index);
  121. void GetLabelRect(const int iFolder, const int iIndex, CRect &rect);
  122. void GetIconRect(const int iFolder, const int iIndex, CRect &rect);
  123. void HighlightItem(const int index, const bool bPressed = false);
  124. void GetVisibleRange(const int iFolder, int &first, int &last);
  125. void DrawItem(CDC * pDC, const int iFolder, CRect rc, const int index, const bool bOnlyImage = false);
  126. CImageList * GetFolderImageList(const int index, const bool bSmall) const;
  127. CSize GetItemSize(const int iFolder, const int index, const int type);
  128. void PaintItems(CDC * pDC, const int iFolder, CRect rc);
  129. CImageList * GetImageList(CImageList * pImageList, int nImageList);
  130. CImageList * SetFolderImageList(const int folder, CImageList * pImageList, int nImageList);
  131. CImageList * SetImageList(CImageList * pImageList, int nImageList);
  132. int GetCountPerPage() const;
  133. void RemoveFolder(const int index);
  134. int GetSelFolder() const;
  135. int GetFolderCount() const;
  136. void SetSelFolder(const int index);
  137. int GetItemCount() const;
  138. int InsertItem(const int folder, const int index, const char * text, const int image = -1, const DWORD exData = 0);
  139. void HighlightFolder(const int index);
  140. int HitTestEx(const CPoint &point, int &index);
  141. void GetInsideRect(CRect &rect) const;
  142. int AddFolder(const char * cFolderName, const DWORD exData);
  143. void GetItemRect(const int iFolder, const int iIndex, CRect &rect);
  144. bool GetFolderRect(const int iIndex, CRect &rect) const;
  145. void ModifyFlag(const DWORD &dwRemove, const DWORD &dwAdd, const UINT redraw = 0);
  146. DWORD GetFlag() const;
  147. void SetSmallIconView(const bool bSet);
  148. bool IsSmallIconView() const;
  149. BOOL Create(DWORD dwStyle, const RECT& rect, CWnd * pParentWnd, UINT nID, const DWORD dwFlag = fDragItems|fEditGroups|fEditItems|fRemoveGroups|fRemoveItems|fAddGroups|fAnimation|fSelHighlight);
  150. virtual ~CGfxOutBarCtrl();
  151. // Generated message map functions
  152. protected:
  153. void DrawFolder(CDC * pDC, const int iIdx, CRect rect, const bool bSelected);
  154. //{{AFX_MSG(CGfxOutBarCtrl)
  155. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  156. afx_msg void OnTimer(UINT nIDEvent);
  157. afx_msg void OnPaint();
  158. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  159. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  160. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  161. afx_msg BOOL OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message);
  162. afx_msg void OnSize(UINT nType, int cx, int cy);
  163. afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
  164. afx_msg void OnGfxLargeicon();
  165. afx_msg void OnUpdateGfxLargeicon(CCmdUI* pCmdUI);
  166. afx_msg void OnGfxSmallicon();
  167. afx_msg void OnUpdateGfxSmallicon(CCmdUI* pCmdUI);
  168. afx_msg void OnGfxRemoveitem();
  169. afx_msg void OnUpdateGfxRemoveitem(CCmdUI* pCmdUI);
  170. afx_msg void OnGfxRenameitem();
  171. afx_msg void OnUpdateGfxRenameitem(CCmdUI* pCmdUI);
  172. //}}AFX_MSG
  173. afx_msg long OnEndLabelEdit(WPARAM wParam, LPARAM lParam);
  174. DECLARE_MESSAGE_MAP()
  175. };
  176. /////////////////////////////////////////////////////////////////////////////
  177. //{{AFX_INSERT_LOCATION}}
  178. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  179. #endif // !defined(AFX_GFXOUTBARCTRL_H__28FA2CA4_11B7_11D2_8437_0000B43382FE__INCLUDED_)