-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfigurationDialog.h
More file actions
executable file
·85 lines (73 loc) · 2.4 KB
/
ConfigurationDialog.h
File metadata and controls
executable file
·85 lines (73 loc) · 2.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/**
* This file is a part of IC Login (c) Daniel Bratell 2000
*
* That the source code is publicized on Internet does not mean that
* it's free to use. You are allowed to be inspired by it, but if you
* do patches of your own you must submit them to the original author.
*
* Also, you mustn't redistribute the source code. If you want to
* make other people see it, point them to
*
* http://www.lysator.liu.se/~bratell/iclogin/
*
* Original Author: Daniel Bratell <bratell@lysator.liu.se>
*/
#if !defined(AFX_CONFIGURATIONDIALOG_H__973E90AE_53C4_4B50_8F10_B432EBFF7C18__INCLUDED_)
#define AFX_CONFIGURATIONDIALOG_H__973E90AE_53C4_4B50_8F10_B432EBFF7C18__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// ConfigurationDialog.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CConfigurationDialog dialog
class CConfigurationDialog : public CDialog
{
// Construction
public:
CConfigurationDialog(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CConfigurationDialog)
enum { IDD = IDD_CONFIGURATION };
CButton m_okbutton;
CButton m_restartdhcp;
CButton m_startupmethod;
CButton m_servicepopuperror;
CButton m_noautostart;
CButton m_logtofile;
CButton m_cleanregistrybutton;
CButton m_starthidden;
CStatic m_loginatintervalunit;
CEdit m_loginatintervalfield;
CButton m_loginatinterval;
CButton m_loginatstartup;
CButton m_hidepassword;
CEdit m_usernamefield;
CEdit m_passwordfield;
CStatic m_usernamelabel;
CStatic m_passwordlabel;
//}}AFX_DATA
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CConfigurationDialog)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
void DisableIfWriteProtected();
// Generated message map functions
//{{AFX_MSG(CConfigurationDialog)
virtual BOOL OnInitDialog();
afx_msg void OnHidepassword();
virtual void OnOK();
afx_msg void OnKillfocusLoginintervalfield();
afx_msg void OnCleanregistrybutton();
afx_msg BOOL OnToolTipNotify(UINT id, NMHDR *pNMHDR, LRESULT *pResult);
afx_msg void OnStartupMethod();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_CONFIGURATIONDIALOG_H__973E90AE_53C4_4B50_8F10_B432EBFF7C18__INCLUDED_)