Initial IBM OpenAFS 1.0 tree
[openafs.git] / src / WINNT / client_exp / partition_info_dlg.h
1 /*
2  * Copyright (C) 1997  Transarc Corporation.
3  * All rights reserved.
4  *
5  */
6
7 // partition_info_dlg.h : header file
8 //
9
10 /////////////////////////////////////////////////////////////////////////////
11 // CPartitionInfoDlg dialog
12
13 class CPartitionInfoDlg : public CDialog
14 {
15         LONG m_nSize;
16         LONG m_nFree;
17         
18 // Construction
19 public:
20         CPartitionInfoDlg(CWnd* pParent = NULL);   // standard constructor
21
22         void SetValues(LONG nSize, LONG nFree)  { m_nSize = nSize; m_nFree = nFree; }
23
24 // Dialog Data
25         //{{AFX_DATA(CPartitionInfoDlg)
26         enum { IDD = IDD_PARTITION_INFO };
27         CEdit   m_Size;
28         CEdit   m_PercentUsed;
29         CEdit   m_Free;
30         //}}AFX_DATA
31
32
33 // Overrides
34         // ClassWizard generated virtual function overrides
35         //{{AFX_VIRTUAL(CPartitionInfoDlg)
36         protected:
37         virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
38         //}}AFX_VIRTUAL
39
40 // Implementation
41 protected:
42
43         // Generated message map functions
44         //{{AFX_MSG(CPartitionInfoDlg)
45         virtual BOOL OnInitDialog();
46         afx_msg void OnHelp();
47         //}}AFX_MSG
48         DECLARE_MESSAGE_MAP()
49 };