-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathAddressDlg.cpp
80 lines (57 loc) · 1.91 KB
/
AddressDlg.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
/*
Pixcen - A windows platform low level pixel editor for C64
Copyright (C) 2013 John Hammarberg ([email protected])
This file is part of Pixcen.
Pixcen is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Pixcen is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Pixcen. If not, see <http://www.gnu.org/licenses/>.
*/
// Address.cpp : implementation file
//
#include "stdafx.h"
#include "Pixcen.h"
#include "AddressDlg.h"
#include "afxdialogex.h"
// CAddressDlg dialog
IMPLEMENT_DYNAMIC(CAddressDlg, CDialogEx)
CAddressDlg::CAddressDlg(CWnd* pParent /*=NULL*/)
: CDialogEx(CAddressDlg::IDD, pParent)
, m_addr(_T(""))
{
m_verified_address = 0;
}
CAddressDlg::~CAddressDlg()
{
}
void CAddressDlg::DoDataExchange(CDataExchange* pDX)
{
CDialogEx::DoDataExchange(pDX);
DDX_Text(pDX, IDC_EDIT, m_addr);
}
BEGIN_MESSAGE_MAP(CAddressDlg, CDialogEx)
ON_BN_CLICKED(IDOK, &CAddressDlg::OnBnClickedOk)
END_MESSAGE_MAP()
// CAddressDlg message handlers
void CAddressDlg::OnBnClickedOk()
{
UpdateData();
if(!_stscanf(m_addr, _T("%x"), &m_verified_address))return;
CDialogEx::OnOK();
}
BOOL CAddressDlg::OnInitDialog()
{
CDialogEx::OnInitDialog();
TCHAR str[32];
_stprintf(str, _T("%04X"), m_verified_address);
m_addr = str;
UpdateData(FALSE);
return TRUE; // return TRUE unless you set the focus to a control
// EXCEPTION: OCX Property Pages should return FALSE
}