Initial IBM OpenAFS 1.0 tree
[openafs.git] / src / WINNT / client_exp / results_dlg.h
1 /*
2  * Copyright (C) 1997  Transarc Corporation.
3  * All rights reserved.
4  *
5  */
6
7 // results_dlg.h : header file
8 //
9
10 /////////////////////////////////////////////////////////////////////////////
11 // CResultsDlg dialog
12
13 class CResultsDlg : public CDialog
14 {
15         CStringArray m_Files;
16         CStringArray m_Results;
17         CString m_strDlgTitle;
18         CString m_strResultsTitle;
19         DWORD m_nHelpID;
20
21 // Construction
22 public:
23         CResultsDlg(DWORD nHelpID, CWnd* pParent = NULL);   // standard constructor
24
25         void SetContents(const CString& strDlgTitle, const CString& strResultsTitle, const CStringArray& files, const CStringArray& results);
26
27 // Dialog Data
28         //{{AFX_DATA(CResultsDlg)
29         enum { IDD = IDD_RESULTS };
30         CStatic m_ResultsLabel;
31         CListBox        m_List;
32         //}}AFX_DATA
33
34
35 // Overrides
36         // ClassWizard generated virtual function overrides
37         //{{AFX_VIRTUAL(CResultsDlg)
38         protected:
39         virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
40         //}}AFX_VIRTUAL
41
42 // Implementation
43 protected:
44
45         // Generated message map functions
46         //{{AFX_MSG(CResultsDlg)
47         virtual BOOL OnInitDialog();
48         afx_msg void OnHelp();
49         //}}AFX_MSG
50         DECLARE_MESSAGE_MAP()
51 };