~ubuntu-branches/ubuntu/warty/openafs/warty

« back to all changes in this revision

Viewing changes to src/WINNT/client_exp/klog_dlg.h

  • Committer: Bazaar Package Importer
  • Author(s): Sam Hartman
  • Date: 2004-01-10 16:37:33 UTC
  • Revision ID: james.westby@ubuntu.com-20040110163733-jvr0n1uahshlb1uu
Tags: upstream-1.2.11
ImportĀ upstreamĀ versionĀ 1.2.11

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
#include "resource.h"
 
11
 
 
12
/////////////////////////////////////////////////////////////////////////////
 
13
// CKlogDlg dialog
 
14
 
 
15
class CKlogDlg : public CDialog
 
16
{
 
17
        void CheckEnableOk();
 
18
        
 
19
// Construction
 
20
public:
 
21
        CKlogDlg(CWnd* pParent = NULL); // standard constructor
 
22
 
 
23
        void SetCellName(const CString& strCellName)    { m_strCellName = strCellName; }
 
24
 
 
25
// Dialog Data
 
26
        //{{AFX_DATA(CKlogDlg)
 
27
        enum { IDD = IDD_KLOG_DIALOG };
 
28
        CButton m_OK;
 
29
        CString m_strName;
 
30
        CString m_strPassword;
 
31
        CString m_strCellName;
 
32
        //}}AFX_DATA
 
33
 
 
34
        // ClassWizard generated virtual function overrides
 
35
        //{{AFX_VIRTUAL(CKlogDlg)
 
36
        protected:
 
37
        virtual void DoDataExchange(CDataExchange* pDX);        // DDX/DDV support
 
38
        //}}AFX_VIRTUAL
 
39
 
 
40
// Implementation
 
41
protected:
 
42
        HICON m_hIcon;
 
43
 
 
44
        // Generated message map functions
 
45
        //{{AFX_MSG(CKlogDlg)
 
46
        virtual BOOL OnInitDialog();
 
47
        virtual void OnOK();
 
48
        afx_msg void OnChangeName();
 
49
        afx_msg void OnChangeCellName();
 
50
        afx_msg void OnChangePassword();
 
51
        afx_msg void OnHelp();
 
52
        //}}AFX_MSG
 
53
        DECLARE_MESSAGE_MAP()
 
54
};