mirror of https://github.com/tongzx/nt5src
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
28 lines
426 B
#ifndef RIGHTTOPVIEW_H
|
|
#define RIGHTTOPVIEW_H
|
|
|
|
#include "stdafx.h"
|
|
#include "Document.h"
|
|
|
|
class RightTopView : public CListView
|
|
{
|
|
DECLARE_DYNCREATE( RightTopView )
|
|
|
|
public:
|
|
virtual void OnInitialUpdate();
|
|
|
|
protected:
|
|
Document* GetDocument();
|
|
|
|
afx_msg void OnColumnClick( NMHDR* pNMHDR, LRESULT* pResult );
|
|
|
|
private:
|
|
bool m_sort_ascending;
|
|
|
|
int m_sort_column;
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
#endif
|
|
|