forked from aiHgithub/Mini-FTPserver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDlgQuit.cpp
executable file
·80 lines (67 loc) · 2.14 KB
/
DlgQuit.cpp
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
// DlgQuit.cpp : implementation file
//
#include "stdafx.h"
#include "FTPserver.h"
#include "FTPserverDlg.h"
#include "DlgQuit.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDlgQuit dialog
CDlgQuit::CDlgQuit(CWnd* pParent /*=NULL*/)
: CDialog(CDlgQuit::IDD, pParent)
{
//{{AFX_DATA_INIT(CDlgQuit)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}
void CDlgQuit::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CDlgQuit)
// NOTE: the ClassWizard will add DDX and DDV calls here
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CDlgQuit, CDialog)
//{{AFX_MSG_MAP(CDlgQuit)
ON_BN_CLICKED(IDC_BTN_CANCEL, OnBtnCancel)
ON_BN_CLICKED(IDC_BTN_EXIT, OnBtnExit)
ON_BN_CLICKED(IDC_BTN_MINSIZE, OnBtnMinsize)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CDlgQuit message handlers
/********************************************************************/
/* */
/* 函数名称 : CDlgQuit::OnBtnMinsize */
/* 作用 : 最小化按钮响应 */
/* */
/********************************************************************/
void CDlgQuit::OnBtnMinsize()
{
((CFTPserverDlg*)m_pWndServer)->ShowWindow(SW_HIDE);
EndDialog(-1);
}
/********************************************************************/
/* */
/* 函数名称 : CDlgQuit::OnBtnExit */
/* 作用 : 退出按钮响应 */
/* */
/********************************************************************/
void CDlgQuit::OnBtnExit()
{
((CFTPserverDlg*)m_pWndServer)->DestroyWindow();
}
/********************************************************************/
/* */
/* 函数名称 : CDlgQuit::OnBtnCancel */
/* 作用 : 取消按钮响应 */
/* */
/********************************************************************/
void CDlgQuit::OnBtnCancel()
{
EndDialog(-1);
}