Browse Subversion Repository
Contents of /WinCS/APIReportDlg.h
Parent Directory
| Revision Log
| 1 |
#pragma once |
| 2 |
#include "afxcmn.h" |
| 3 |
#include "afxwin.h" |
| 4 |
|
| 5 |
////////////////////////////////////////////////////////////////////////// |
| 6 |
|
| 7 |
class CAPIReportDlg : public CDialog, CStringConvert |
| 8 |
{ |
| 9 |
DECLARE_DYNAMIC(CAPIReportDlg) |
| 10 |
|
| 11 |
public: |
| 12 |
CAPIReportDlg(CWnd* pParent = NULL); |
| 13 |
virtual ~CAPIReportDlg(); |
| 14 |
enum { IDD = IDD_API_REPORT_DIALOG }; |
| 15 |
|
| 16 |
void SetReportList(const CalcReportList &list) { m_list.Copy(list); } |
| 17 |
void SetLog(BOOL fSave) { m_fSaveLog = fSave; } |
| 18 |
|
| 19 |
protected: |
| 20 |
DECLARE_MESSAGE_MAP() |
| 21 |
virtual void DoDataExchange(CDataExchange* pDX); |
| 22 |
virtual BOOL OnInitDialog(); |
| 23 |
|
| 24 |
afx_msg void OnBnClickedListPluginReportLog(); |
| 25 |
afx_msg void OnBnClickedBtnPluginReportClose() { OnOK(); } |
| 26 |
|
| 27 |
public: |
| 28 |
CListCtrl m_xReportList; |
| 29 |
CButton m_xBtnLog; |
| 30 |
|
| 31 |
protected: |
| 32 |
CalcReportList m_list; |
| 33 |
HICON m_hIcon; |
| 34 |
BOOL m_fSaveLog; |
| 35 |
}; |
| 36 |
|
| 37 |
|
| 38 |
////////////////////////////////////////////////////////////////////////// |
|