death to trailing whitespace
[openafs.git] / src / WINNT / client_exp / make_symbolic_link_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 CMakeSymbolicLinkDlg : public CDialog
11 {
12         void CheckEnableOk();
13
14 // Construction
15 public:
16         CMakeSymbolicLinkDlg(CWnd* pParent = NULL);   // standard constructor
17         void Setbase(const char *msg){m_sBase=msg;}
18 // Dialog Data
19         //{{AFX_DATA(CMakeSymbolicLinkDlg)
20         enum { IDD = IDD_SYMBOLICLINK_ADD };
21         CButton m_OK;
22         CEdit   m_Name;
23         CEdit   m_Dir;
24         CString m_strName;
25         CString m_strDir;
26         //}}AFX_DATA
27
28
29 // Overrides
30         // ClassWizard generated virtual function overrides
31         //{{AFX_VIRTUAL(CMakeSymbolicLinkDlg)
32         protected:
33         virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
34         //}}AFX_VIRTUAL
35
36 // Implementation
37 protected:
38         CString m_sBase;        //Base directory
39         // Generated message map functions
40         //{{AFX_MSG(CMakeSymbolicLinkDlg)
41         afx_msg void OnChangeDir();
42         afx_msg void OnChangeName();
43         virtual void OnOK();
44         virtual BOOL OnInitDialog();
45         //}}AFX_MSG
46         DECLARE_MESSAGE_MAP()
47 };