LINUX: afs_create infinite fetchStatus loop
[pkg-k5-afs_openafs.git] / src / WINNT / client_exp / copy_acl_dlg.h
blob7e7d38102e20b7d0de586bd8e0ae3942e7dcf212
1 /*
2 * Copyright 2000, International Business Machines Corporation and others.
3 * All Rights Reserved.
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 */
10 class CCopyAclDlg : public CDialog
12 CString m_strToDir;
13 BOOL m_bClear;
14 CString m_strFromDir;
16 // Construction
17 public:
18 CCopyAclDlg(CWnd* pParent = NULL); // standard constructor
20 const CString& GetToDir() { return m_strToDir; }
21 BOOL GetClear() { return m_bClear; }
23 void SetFromDir(const CString& strFromDir) { m_strFromDir = strFromDir; }
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
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
42 // Implementation
43 protected:
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()