67 lines
1.6 KiB
C
67 lines
1.6 KiB
C
|
#if !defined(AFX_DLG_HZB_EXPORT_H__5511BEBC_A4A0_4F69_A09B_6494BAD308E5__INCLUDED_)
|
||
|
#define AFX_DLG_HZB_EXPORT_H__5511BEBC_A4A0_4F69_A09B_6494BAD308E5__INCLUDED_
|
||
|
|
||
|
#if _MSC_VER > 1000
|
||
|
#pragma once
|
||
|
#endif // _MSC_VER > 1000
|
||
|
// DLG_HZB_Export.h : header file
|
||
|
//
|
||
|
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
// DLG_HZB_Export dialog
|
||
|
#include "SortList\SortList.h"
|
||
|
|
||
|
typedef struct _SortItem
|
||
|
{
|
||
|
TCHAR szItem[32];
|
||
|
}SortItem;
|
||
|
|
||
|
class DLG_HZB_Export : public CDialog
|
||
|
{
|
||
|
public:
|
||
|
CListCtrl * m_pList;
|
||
|
SortItem * m_pItem;
|
||
|
long m_lItemCount;
|
||
|
long m_lAddJH;
|
||
|
|
||
|
// Construction
|
||
|
public:
|
||
|
void SetListItem( SortItem * pItem , long lCount , long lAddJH=-1 );
|
||
|
void SetParam(CListCtrl *pList);
|
||
|
void InitList();
|
||
|
DLG_HZB_Export(CWnd* pParent = NULL); // standard constructor
|
||
|
|
||
|
// Dialog Data
|
||
|
//{{AFX_DATA(DLG_HZB_Export)
|
||
|
enum { IDD = IDD_HZB_EXPORT };
|
||
|
CSortList m_L_List;
|
||
|
CEdit m_E_FileName;
|
||
|
//}}AFX_DATA
|
||
|
|
||
|
|
||
|
// Overrides
|
||
|
// ClassWizard generated virtual function overrides
|
||
|
//{{AFX_VIRTUAL(DLG_HZB_Export)
|
||
|
protected:
|
||
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
||
|
//}}AFX_VIRTUAL
|
||
|
|
||
|
// Implementation
|
||
|
protected:
|
||
|
|
||
|
// Generated message map functions
|
||
|
//{{AFX_MSG(DLG_HZB_Export)
|
||
|
virtual BOOL OnInitDialog();
|
||
|
afx_msg void OnUserExportSelall();
|
||
|
afx_msg void OnUserExportClear();
|
||
|
virtual void OnOK();
|
||
|
afx_msg void OnUserExportFilenameSel();
|
||
|
//}}AFX_MSG
|
||
|
DECLARE_MESSAGE_MAP()
|
||
|
};
|
||
|
|
||
|
//{{AFX_INSERT_LOCATION}}
|
||
|
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
|
||
|
|
||
|
#endif // !defined(AFX_DLG_HZB_EXPORT_H__5511BEBC_A4A0_4F69_A09B_6494BAD308E5__INCLUDED_)
|