EMPVIEW.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // EmpView.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. #if !defined(AFX_EMPVIEW_H__1FF640C9_B507_11D0_BE98_00C04FC99F83__INCLUDED_)
  13. #define AFX_EMPVIEW_H__1FF640C9_B507_11D0_BE98_00C04FC99F83__INCLUDED_
  14. #if _MSC_VER >= 1000
  15. #pragma once
  16. #endif // _MSC_VER >= 1000
  17. /////////////////////////////////////////////////////////////////////////////
  18. // CEmpView view
  19. class CEmpView : public CListView
  20. {
  21. protected:
  22. CEmpView();           // protected constructor used by dynamic creation
  23. DECLARE_DYNCREATE(CEmpView)
  24. // Attributes
  25. public:
  26. CDBVListDoc* GetDocument();
  27. // Operations
  28. public:
  29. void UpdateFilter(CString strCurQuery);
  30. // Overrides
  31. // ClassWizard generated virtual function overrides
  32. //{{AFX_VIRTUAL(CEmpView)
  33. public:
  34. virtual void OnInitialUpdate();
  35. virtual BOOL OnChildNotify(UINT message, WPARAM wParam, LPARAM lParam, LRESULT* pLResult);
  36. protected:
  37. //}}AFX_VIRTUAL
  38. void PrepareCache(int iFrom, int iTo);
  39. void GetDispInfo(LVITEM* pItem);
  40. int FindItem(int iStart, LVFINDINFO* plvfi);
  41. // Implementation
  42. protected:
  43. virtual ~CEmpView();
  44. #ifdef _DEBUG
  45. virtual void AssertValid() const;
  46. virtual void Dump(CDumpContext& dc) const;
  47. #endif
  48. // Generated message map functions
  49. protected:
  50. //{{AFX_MSG(CEmpView)
  51. // NOTE - the ClassWizard will add and remove member functions here.
  52. //}}AFX_MSG
  53. afx_msg void OnColumnClick(UINT id, NMHDR* pNotifyStruct, LRESULT* pResult);
  54. DECLARE_MESSAGE_MAP()
  55. };
  56. #ifndef _DEBUG  // debug version in DBVListView.cpp
  57. inline CDBVListDoc* CEmpView::GetDocument()
  58.    { return (CDBVListDoc*)m_pDocument; }
  59. #endif
  60. /////////////////////////////////////////////////////////////////////////////
  61. //{{AFX_INSERT_LOCATION}}
  62. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  63. #endif // !defined(AFX_EMPVIEW_H__1FF640C9_B507_11D0_BE98_00C04FC99F83__INCLUDED_)