DragCaption.h
上传用户:rxhxxy
上传日期:2007-01-02
资源大小:72k
文件大小:1k
源码类别:

TreeView控件

开发平台:

Visual C++

  1. #ifndef _DRAGCAPTION_H
  2. #define _DRAGCAPTION_H
  3. class CDragCaption : public CStatic {
  4. public:
  5. DECLARE_DYNAMIC(CDragCaption)
  6. CDragCaption(LPCTSTR lpText = NULL, BOOL bDeleteOnDestroy=FALSE);
  7. ~CDragCaption() { }
  8. BOOL SubclassDlgItem(UINT nID, CWnd* pParent) {
  9. return CStatic::SubclassDlgItem(nID, pParent);
  10. }
  11. COLORREF m_color;
  12. // Default colors you can change
  13. // These are global, so they're the same for all links.
  14. static COLORREF g_colorUnvisited;
  15. static COLORREF g_colorVisited;
  16. protected:
  17. CFont m_font;
  18. BOOL m_bDeleteOnDestroy; // delete object when window destroyed?
  19. virtual void PostNcDestroy();
  20. // message handlers
  21. DECLARE_MESSAGE_MAP()
  22. afx_msg UINT OnNcHitTest(CPoint point);
  23. afx_msg HBRUSH  CtlColor(CDC* pDC, UINT nCtlColor);
  24. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  25. };
  26. #endif _DRAGCAPTION_H