1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- #ifndef SORTHEADERCTRL_H
- #define SORTHEADERCTRL_H
- #if _MSC_VER > 1000
- #pragma once
- #endif
- class CSortHeaderCtrl : public CHeaderCtrl
- {
- public:
- CSortHeaderCtrl();
- public:
- public:
-
-
- public:
- virtual void Serialize(CArchive& ar);
-
- public:
- virtual ~CSortHeaderCtrl();
- void SetSortArrow( const int iColumn, const BOOL bAscending );
-
- protected:
- void DrawItem( LPDRAWITEMSTRUCT lpDrawItemStruct );
- int m_iSortColumn;
- BOOL m_bSortAscending;
-
-
-
- DECLARE_MESSAGE_MAP()
- };
- #endif
|