Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
426 B

  1. #ifndef RIGHTTOPVIEW_H
  2. #define RIGHTTOPVIEW_H
  3. #include "stdafx.h"
  4. #include "Document.h"
  5. class RightTopView : public CListView
  6. {
  7. DECLARE_DYNCREATE( RightTopView )
  8. public:
  9. virtual void OnInitialUpdate();
  10. protected:
  11. Document* GetDocument();
  12. afx_msg void OnColumnClick( NMHDR* pNMHDR, LRESULT* pResult );
  13. private:
  14. bool m_sort_ascending;
  15. int m_sort_column;
  16. DECLARE_MESSAGE_MAP()
  17. };
  18. #endif