death to trailing whitespace
[openafs.git] / src / WINNT / client_exp / results_dlg.h
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  *
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  */
9
10 class CResultsDlg : public CDialog
11 {
12         CStringArray m_Files;
13         CStringArray m_Results;
14         CString m_strDlgTitle;
15         CString m_strResultsTitle;
16         DWORD m_nHelpID;
17
18 // Construction
19 public:
20         CResultsDlg(DWORD nHelpID, CWnd* pParent = NULL);   // standard constructor
21
22         void SetContents(const CString& strDlgTitle, const CString& strResultsTitle, const CStringArray& files, const CStringArray& results);
23
24 // Dialog Data
25         //{{AFX_DATA(CResultsDlg)
26         enum { IDD = IDD_RESULTS };
27         CStatic m_ResultsLabel;
28         CListBox        m_List;
29         //}}AFX_DATA
30
31
32 // Overrides
33         // ClassWizard generated virtual function overrides
34         //{{AFX_VIRTUAL(CResultsDlg)
35         protected:
36         virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
37         //}}AFX_VIRTUAL
38
39 // Implementation
40 protected:
41
42         // Generated message map functions
43         //{{AFX_MSG(CResultsDlg)
44         virtual BOOL OnInitDialog();
45         afx_msg void OnHelp();
46         //}}AFX_MSG
47         DECLARE_MESSAGE_MAP()
48 };