DriverCombo.h
上传用户:tjfeida
上传日期:2013-03-10
资源大小:1917k
文件大小:2k
源码类别:

Ftp客户端

开发平台:

Visual C++

  1. #if !defined(AFX_DRIVERCOMBO_H__79F3C1C3_4306_40CE_A63B_7287910859CD__INCLUDED_)
  2. #define AFX_DRIVERCOMBO_H__79F3C1C3_4306_40CE_A63B_7287910859CD__INCLUDED_
  3. /*********************************************
  4. **该文件是属于WolfFTP工程中的。如果有什么问题
  5. **请联系
  6. **         tablejiang@21cn.com
  7. **或者访问
  8. **         http://wolfftp.51.net
  9. **以得到最新的支持。
  10. *********************************************/
  11. #if _MSC_VER > 1000
  12. #pragma once
  13. #endif // _MSC_VER > 1000
  14. // DriverCombo.h : header file
  15. //
  16. /***********************************************************
  17. ** @Description:
  18. ** Use this ctrl you can display the system drivers and path .
  19. ** with the system default icon .
  20. **
  21. ** @Note:
  22. ** use SetDisplayStr( ) function display the path ,
  23. ** use GetNowPath( ) get the current list path .
  24. **
  25. **
  26. ** @Author: Table.JHM.太子
  27. ** e-mail:  tablejiang@21cn.com
  28. ** Date:  2001 3 26
  29. *************************************************************/
  30. /////////////////////////////////////////////////////////////////////////////
  31. // CDriverCombo window
  32. class CDriverCombo : public CComboBoxEx
  33. {
  34. // Construction
  35. public:
  36. CDriverCombo();
  37. virtual ~CDriverCombo();
  38. // Attributes
  39. public:
  40. // Operations
  41. public:
  42. // Overrides
  43. // ClassWizard generated virtual function overrides
  44. //{{AFX_VIRTUAL(CDriverCombo)
  45. //}}AFX_VIRTUAL
  46. // Implementation
  47. public:
  48. BOOL SetDisplayStr( LPCTSTR szPath );
  49. CString GetNowPath( );
  50. // Generated message map functions
  51. protected:
  52. //{{AFX_MSG(CDriverCombo)
  53. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  54. //}}AFX_MSG
  55. DECLARE_MESSAGE_MAP()
  56. protected:
  57. int FindInsertPos( CString strPath );
  58. BOOL AddDriver( );
  59. BOOL AddDirectory(  CString strPath  );
  60. BOOL DeleteDirectory( );
  61. BOOL DeleteAllItem( );
  62. BOOL InsertPathItem( int iPos  );
  63. CString GetDisplayPath(LPCTSTR strPath) ;
  64. BOOL GetSysImgList( );
  65. BOOL InitCombox( );
  66. BOOL AddItem( LPCTSTR pDriver , int level , int iPos );
  67. CImageList m_ImageList ; //system default image list .
  68. CString m_NowDriver ; //now display driver;
  69. CString m_NowDisplayPath ; //now display path .
  70. int m_nItem ;
  71. int m_nLevel ;
  72. };
  73. /////////////////////////////////////////////////////////////////////////////
  74. //{{AFX_INSERT_LOCATION}}
  75. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  76. #endif // !defined(AFX_DRIVERCOMBO_H__79F3C1C3_4306_40CE_A63B_7287910859CD__INCLUDED_)