Thinking Different




ConnectDlg 다이얼로그

 

이전에서 구성한 ConnectDlg 다이얼로그 클래스 소스 코드를 작성하겠습니다.

 

각각 리소스 변수를 생성하고 변수에 입력된 값을 저장하는 클래스 입니다.

 

 

ConnectDlg.h

 

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
#pragma once
 
 
// ConnectDlg 대화 상자
 
class ConnectDlg : public CDialogEx
{
    DECLARE_DYNAMIC(ConnectDlg)
 
public:
    ConnectDlg(CWnd* pParent = nullptr);   // 표준 생성자입니다.
    virtual ~ConnectDlg();
 
// 대화 상자 데이터입니다.
#ifdef AFX_DESIGN_TIME
    enum { IDD = IDD_DIALOG_CONNECT };
#endif
 
protected:
    virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV 지원입니다.
 
    DECLARE_MESSAGE_MAP()
 
public:
    const TCHAR* GetIpAddress() { return strIPAddr.GetString(); }
    const int GetPort() { return port; }
    const TCHAR* GetNick() { return Nick.GetString(); }
 
private:
    void getIpAddr();
    void getNick();
    void getPort();
 
public:
    CIPAddressCtrl m_ctrlIpaddr;
    CEdit m_ctrlPort;
    CEdit m_ctrlNick;
 
    int port = 0;
    CString Nick;
    CString strIPAddr;
    afx_msg void OnBnClickedOk();
    virtual BOOL OnInitDialog();
};
cs

 

 

 

ConnectDlg.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
// ConnectDlg.cpp: 구현 파일
//
 
#include "pch.h"
#include "MFCChatClient.h"
#include "ConnectDlg.h"
#include "afxdialogex.h"
 
 
// ConnectDlg 대화 상자
 
IMPLEMENT_DYNAMIC(ConnectDlg, CDialogEx)
 
ConnectDlg::ConnectDlg(CWnd* pParent /*=nullptr*/)
    : CDialogEx(IDD_DIALOG_CONNECT, pParent)
{
 
}
 
ConnectDlg::~ConnectDlg()
{
}
 
void ConnectDlg::DoDataExchange(CDataExchange* pDX)
{
    CDialogEx::DoDataExchange(pDX);
    DDX_Control(pDX, IDC_IPADDRESS, m_ctrlIpaddr);
    DDX_Control(pDX, IDC_EDIT_PORT, m_ctrlPort);
    DDX_Control(pDX, IDC_EDIT_NICK, m_ctrlNick);
}
 
BEGIN_MESSAGE_MAP(ConnectDlg, CDialogEx)
    ON_BN_CLICKED(IDOK, &ConnectDlg::OnBnClickedOk)
END_MESSAGE_MAP()
 
 
// ConnectDlg 메시지 처리기
BOOL ConnectDlg::OnInitDialog()
{
    CDialogEx::OnInitDialog();
 
    m_ctrlIpaddr.SetAddress(127001);
    m_ctrlPort.SetWindowTextA(_T("31400"));
 
    return TRUE;  // return TRUE unless you set the focus to a control
                  // 예외: OCX 속성 페이지는 FALSE를 반환해야 합니다.
}
 
void ConnectDlg::OnBnClickedOk()
{
    getIpAddr();
    getPort();
    getNick();
    
    CDialogEx::OnOK();
}
 
void ConnectDlg::getIpAddr()
{
    BYTE ipFirst, ipSecond, ipThird, ipForth;
    m_ctrlIpaddr.GetAddress(ipFirst, ipSecond, ipThird, ipForth);
    strIPAddr.Format(_T("%d.%d.%d.%d"), ipFirst, ipSecond, ipThird, ipForth);
}
 
void ConnectDlg::getNick()
{
    m_ctrlNick.GetWindowTextA(Nick);
}
 
void ConnectDlg::getPort()
{
    TCHAR buf[10= { 0, };
    m_ctrlPort.GetWindowText(buf, 10);
    port = _ttoi(buf);
}
cs