Develop and Download Open Source Software

Browse Subversion Repository

Annotation of /WinCS/APIReportDlg.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 11 - (hide annotations) (download) (as text)
Wed Feb 10 18:21:00 2010 UTC (14 years, 2 months ago) by sho1get
File MIME type: text/x-chdr
File size: 931 byte(s)


1 sho1get 11 #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     //////////////////////////////////////////////////////////////////////////

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26