GfxOutBarCtrl.h
上传用户:guangzhiyw
上传日期:2007-01-09
资源大小:495k
文件大小:8k
源码类别:

ICQ/即时通讯

开发平台:

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