Windows: Build afs_shl_ext.dll with talocaleU.lib
[openafs.git] / src / WINNT / client_exp / copy_acl_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 CCopyAclDlg : public CDialog
11 {
12         CString m_strToDir;
13         BOOL m_bClear;
14         CString m_strFromDir;
15
16 // Construction
17 public:
18         CCopyAclDlg(CWnd* pParent = NULL);   // standard constructor
19
20         const CString& GetToDir()               { return m_strToDir; }
21         BOOL GetClear()                                 { return m_bClear; }
22
23         void SetFromDir(const CString& strFromDir)      { m_strFromDir = strFromDir; }
24
25 // Dialog Data
26         //{{AFX_DATA(CCopyAclDlg)
27         enum { IDD = IDD_COPY_ACL };
28         CButton m_Ok;
29         CEdit   m_FromDir;
30         CEdit   m_ToDir;
31         CButton m_Clear;
32         //}}AFX_DATA
33
34
35 // Overrides
36         // ClassWizard generated virtual function overrides
37         //{{AFX_VIRTUAL(CCopyAclDlg)
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(CCopyAclDlg)
47         virtual void OnOK();
48         virtual BOOL OnInitDialog();
49         afx_msg void OnChangeToDir();
50         afx_msg void OnBrowse();
51         afx_msg void OnHelp();
52         //}}AFX_MSG
53         DECLARE_MESSAGE_MAP()
54 };