82 lines
1.9 KiB
C
82 lines
1.9 KiB
C
|
#if !defined(AFX_LISTDLG_H__669BCE69_70B5_4E94_AB49_A804C882694A__INCLUDED_)
|
|||
|
#define AFX_LISTDLG_H__669BCE69_70B5_4E94_AB49_A804C882694A__INCLUDED_
|
|||
|
|
|||
|
#if _MSC_VER > 1000
|
|||
|
#pragma once
|
|||
|
#endif // _MSC_VER > 1000
|
|||
|
// ListDlg.h : header file
|
|||
|
//
|
|||
|
|
|||
|
/////////////////////////////////////////////////////////////////////////////
|
|||
|
// CListDlg dialog
|
|||
|
|
|||
|
#include "..\public\reportctrl\ReportCtrl.h"
|
|||
|
#include "DLG_Process.h"
|
|||
|
#include "TabDlg.h"
|
|||
|
|
|||
|
class CMainFrame;
|
|||
|
class CProcessSocket;
|
|||
|
class CListDlg : public CDialog
|
|||
|
{
|
|||
|
protected:
|
|||
|
CMainFrame * m_pMainFrame;
|
|||
|
CProcessSocket * m_pSocket;
|
|||
|
CImageList m_Image;
|
|||
|
CCorpName m_Corp;
|
|||
|
|
|||
|
BOOL m_bRefresh;
|
|||
|
BOOL m_bInit; //<2F>Ƿ<EFBFBD><C7B7>ѳ<EFBFBD>ʼ<EFBFBD><CABC>
|
|||
|
|
|||
|
DLG_Process m_Process;
|
|||
|
BOOL m_bProcess;
|
|||
|
// Construction
|
|||
|
public:
|
|||
|
void Close();
|
|||
|
BOOL ProcessSocket(Socket_Head *pHead);
|
|||
|
BOOL RefreshInfo();
|
|||
|
BOOL ReHide();
|
|||
|
BOOL ReShow(BOOL bRefresh=false);
|
|||
|
CListDlg(CWnd* pParent = NULL); // standard constructor
|
|||
|
|
|||
|
// Dialog Data
|
|||
|
//{{AFX_DATA(CListDlg)
|
|||
|
enum { IDD = IDD_LIST };
|
|||
|
CEdit m_E_CorpID;
|
|||
|
CButton m_S_S1;
|
|||
|
CComboBox m_L_Corp;
|
|||
|
CReportCtrl m_wndList;
|
|||
|
int m_lCorp;
|
|||
|
COleDateTime m_tBegin;
|
|||
|
COleDateTime m_tEnd;
|
|||
|
int m_lMobileType;
|
|||
|
BOOL m_bOld;
|
|||
|
int m_lMsgType;
|
|||
|
//}}AFX_DATA
|
|||
|
|
|||
|
|
|||
|
// Overrides
|
|||
|
// ClassWizard generated virtual function overrides
|
|||
|
//{{AFX_VIRTUAL(CListDlg)
|
|||
|
protected:
|
|||
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|||
|
//}}AFX_VIRTUAL
|
|||
|
|
|||
|
// Implementation
|
|||
|
protected:
|
|||
|
|
|||
|
// Generated message map functions
|
|||
|
//{{AFX_MSG(CListDlg)
|
|||
|
virtual BOOL OnInitDialog();
|
|||
|
afx_msg void OnSize(UINT nType, int cx, int cy);
|
|||
|
afx_msg void OnListQuery();
|
|||
|
afx_msg void OnDblclkListList(NMHDR* pNMHDR, LRESULT* pResult);
|
|||
|
afx_msg void OnListQuery2();
|
|||
|
//}}AFX_MSG
|
|||
|
DECLARE_MESSAGE_MAP()
|
|||
|
};
|
|||
|
|
|||
|
//{{AFX_INSERT_LOCATION}}
|
|||
|
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
|
|||
|
|
|||
|
#endif // !defined(AFX_LISTDLG_H__669BCE69_70B5_4E94_AB49_A804C882694A__INCLUDED_)
|