winnt-dont-display-ibm-legal-message-20040326
[openafs.git] / src / WINNT / client_exp / clear_acl_dlg.cpp
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 extern "C" {
11 #include <afs/param.h>
12 #include <afs/stds.h>
13 }
14
15 #include "stdafx.h"
16 #include "afs_shl_ext.h"
17 #include "clear_acl_dlg.h"
18
19 #ifdef _DEBUG
20 #define new DEBUG_NEW
21 #undef THIS_FILE
22 static char THIS_FILE[] = __FILE__;
23 #endif
24
25 /////////////////////////////////////////////////////////////////////////////
26 // CClearAclDlg dialog
27
28
29 CClearAclDlg::CClearAclDlg(CWnd* pParent /*=NULL*/)
30         : CDialog()
31 {
32         InitModalIndirect (TaLocale_GetDialogResource (CClearAclDlg::IDD), pParent);
33
34         //{{AFX_DATA_INIT(CClearAclDlg)
35         m_bNegative = FALSE;
36         m_bNormal = FALSE;
37         //}}AFX_DATA_INIT
38 }
39
40
41 void CClearAclDlg::DoDataExchange(CDataExchange* pDX)
42 {
43         CDialog::DoDataExchange(pDX);
44         //{{AFX_DATA_MAP(CClearAclDlg)
45         DDX_Check(pDX, IDC_NEGATIVE, m_bNegative);
46         DDX_Check(pDX, IDC_NORMAL, m_bNormal);
47         //}}AFX_DATA_MAP
48 }
49
50
51 BEGIN_MESSAGE_MAP(CClearAclDlg, CDialog)
52         //{{AFX_MSG_MAP(CClearAclDlg)
53                 // NOTE: the ClassWizard will add message map macros here
54         //}}AFX_MSG_MAP
55 END_MESSAGE_MAP()
56
57 /////////////////////////////////////////////////////////////////////////////
58 // CClearAclDlg message handlers
59
60 void CClearAclDlg::GetSettings(BOOL& bNormal, BOOL& bNegative)
61 {
62         bNormal = m_bNormal;
63         bNegative = m_bNegative;
64 }
65