winnt-win2000-win98-afs-client-updates-20010623
[openafs.git] / src / WINNT / win9xpanel / Settings.cpp
1 /* Copyright 2000, International Business Machines Corporation and others.
2         All Rights Reserved.
3  
4         This software has been released under the terms of the IBM Public
5         License.  For details, see the LICENSE file in the top-level source
6         directory or online at http://www.openafs.org/dl/license10.html
7 */
8 // Settings.cpp : implementation file
9 //
10
11 #include "stdafx.h"
12 #include "winafsload.h"
13 #include "WinAfsLoadDlg.h"
14 #include "Settings.h"
15 #include "datalog.h"
16
17 #ifdef _DEBUG
18 #define new DEBUG_NEW
19 #undef THIS_FILE
20 static char THIS_FILE[] = __FILE__;
21 #endif
22
23 /////////////////////////////////////////////////////////////////////////////
24 // CSettings dialog
25
26
27 CSettings::CSettings(CWinAfsLoadDlg* pParent /*=NULL*/)
28         : CDialog(CSettings::IDD, pParent)
29 {
30         //{{AFX_DATA_INIT(CSettings)
31         //}}AFX_DATA_INIT
32         m_pParent=pParent;
33
34 }
35
36
37 BEGIN_MESSAGE_MAP(CSettings, CDialog)
38         //{{AFX_MSG_MAP(CSettings)
39         //}}AFX_MSG_MAP
40 END_MESSAGE_MAP()
41
42 /////////////////////////////////////////////////////////////////////////////
43 // CSettings message handlers
44
45
46 BOOL CSettings::OnInitDialog() 
47 {
48         CDialog::OnInitDialog();
49         //set check mark if background window is visable
50         // TODO: Add extra initialization here
51         
52         EnableToolTips(TRUE);
53         return TRUE;  // return TRUE unless you set the focus to a control
54                       // EXCEPTION: OCX Property Pages should return FALSE
55 }
56
57 void CSettings::OnOK() 
58 {
59         // TODO: Add extra validation here
60         CDialog::OnOK();
61 }
62
63
64