Top1.h
上传用户:szcysw
上传日期:2013-03-11
资源大小:6752k
文件大小:2k
源码类别:

界面编程

开发平台:

Visual C++

  1. #if !defined(AFX_TOP_H__69C29E69_DC35_437E_9CB6_0BC0732FE992__INCLUDED_)
  2. #define AFX_TOP_H__69C29E69_DC35_437E_9CB6_0BC0732FE992__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // Top.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CTop view
  10. /*
  11. CTop 视图
  12. 1、根据选择的内容动态生成HTML文件
  13. 2、接收WM_RECONSTRUCT消息,进行显示列表项的重组
  14. 3、对外发送的消息WM_INTERACTIVE_WITH_FRAME
  15. */
  16. #include <afxcview.h>
  17. class CTop : public CListView
  18. {
  19. protected:
  20. CTop();           
  21. DECLARE_DYNCREATE(CTop)
  22. public:
  23. //临时目录名
  24. CString htmlpath;
  25. //记录用户输入的查询关键词
  26. CString KeyWord[100];
  27. BOOL IsFuzzyFind;
  28. //当前选择的类、子类
  29. CString Detail_old;
  30. //删除目录函数
  31. void DeleteTree(CString szBeDeletePath);
  32. //判断文件是否存在
  33. BOOL IsFileExist(CString strFileName);
  34. //动态生成HTML文件
  35. CString DynaCrateHtml(CString fileindex,CString content,CString title); 
  36. virtual void OnInitialUpdate();
  37. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  38. public:
  39. // Overrides
  40. // ClassWizard generated virtual function overrides
  41. //{{AFX_VIRTUAL(CTop)
  42. protected:
  43. virtual void OnDraw(CDC* pDC);      // overridden to draw this view
  44. //}}AFX_VIRTUAL
  45. // Implementation
  46. protected:
  47. virtual ~CTop();
  48. ///afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  49. #ifdef _DEBUG
  50. virtual void AssertValid() const;
  51. virtual void Dump(CDumpContext& dc) const;
  52. #endif
  53. protected:
  54. //{{AFX_MSG(CTop)
  55. //重新生成视图
  56. afx_msg  void ReconstructListView(WPARAM Query_Mode,LPARAM detail);
  57. afx_msg void OnItemchanged(NMHDR* pNMHDR, LRESULT* pResult);
  58. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  59. //}}AFX_MSG
  60. DECLARE_MESSAGE_MAP()
  61. };
  62. /////////////////////////////////////////////////////////////////////////////
  63. //{{AFX_INSERT_LOCATION}}
  64. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  65. #endif // !defined(AFX_TOP_H__69C29E69_DC35_437E_9CB6_0BC0732FE992__INCLUDED_)