CategoryNewDlg.h
上传用户:lds876
上传日期:2013-05-25
资源大小:567k
文件大小:2k
源码类别:

P2P编程

开发平台:

Visual C++

  1. #if !defined(AFX_CATEGORYNEWDLG_H__FC9BE489_B459_4E16_A216_B34DDF8C3249__INCLUDED_)
  2. #define AFX_CATEGORYNEWDLG_H__FC9BE489_B459_4E16_A216_B34DDF8C3249__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // CategoryNewDlg.h : header file
  7. //
  8. #include "ButtonEx.h"
  9. #include "ctrlext.h"
  10. class CCategoryBarWnd;
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CCategoryNewDlg dialog
  13. class CCategoryNewDlg : public CDialog
  14. {
  15. // Construction
  16. public:
  17. CCategoryNewDlg(CImageList* pctlImage, 
  18. CCategoryBarWnd* pCategoryBarWnd, 
  19. bool bNewOrMoveto, HTREEITEM hItemSel, CWnd* pParent = NULL);   // standard constructor
  20. // Dialog Data
  21. //{{AFX_DATA(CCategoryNewDlg)
  22. enum { IDD = IDD_DIALOG_NEW_CATEGORY };
  23. CButtonEx m_btnBrowseDir;
  24. CButtonEx m_btnCancel;
  25. CButtonEx m_btnOK;
  26. CTreeCtrlEx m_treeCatetory;
  27. CString m_strCategoryDir;
  28. CString m_strCategoryName;
  29. //}}AFX_DATA
  30. CImageList* m_pctlImage;
  31. bool m_bNewOrMoveto;
  32. HTREEITEM m_ItemSel;
  33. CCategoryBarWnd* m_pCategoryBarWnd;
  34. // Overrides
  35. // ClassWizard generated virtual function overrides
  36. //{{AFX_VIRTUAL(CCategoryNewDlg)
  37. protected:
  38. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  39. //}}AFX_VIRTUAL
  40. // Implementation
  41. protected:
  42. // Generated message map functions
  43. //{{AFX_MSG(CCategoryNewDlg)
  44. virtual BOOL OnInitDialog();
  45. afx_msg void OnChangeEditCategoryName();
  46. afx_msg void OnSelchangedTreeCategory(NMHDR* pNMHDR, LRESULT* pResult);
  47. afx_msg void OnChangeEditCategoryDir();
  48. virtual void OnOK();
  49. afx_msg void OnButtonFolderSel();
  50. //}}AFX_MSG
  51. DECLARE_MESSAGE_MAP()
  52. private:
  53. CTreeCursor GetCorrespondingCursor(CTreeCursor& curItem);
  54. long GetTreeData(CTreeCursor& curItem);
  55. void CopyTree(CTreeCursor& curSrc, CTreeCursor& curTarget);
  56. bool m_bAutoFill;
  57. CImageList m_ctlImage;
  58. };
  59. //{{AFX_INSERT_LOCATION}}
  60. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  61. #endif // !defined(AFX_CATEGORYNEWDLG_H__FC9BE489_B459_4E16_A216_B34DDF8C3249__INCLUDED_)