ConvNumsDlg.cpp
上传用户:qzzxgm
上传日期:2009-12-14
资源大小:1882k
文件大小:8k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // ConvNumsDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "ConvNums.h"
  5. #include "ConvNumsDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CAboutDlg dialog used for App About
  13. class CAboutDlg : public CDialog
  14. {
  15. public:
  16. CAboutDlg();
  17. // Dialog Data
  18. //{{AFX_DATA(CAboutDlg)
  19. enum { IDD = IDD_ABOUTBOX };
  20. //}}AFX_DATA
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CAboutDlg)
  23. protected:
  24. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  25. //}}AFX_VIRTUAL
  26. // Implementation
  27. protected:
  28. //{{AFX_MSG(CAboutDlg)
  29. //}}AFX_MSG
  30. DECLARE_MESSAGE_MAP()
  31. };
  32. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  33. {
  34. //{{AFX_DATA_INIT(CAboutDlg)
  35. //}}AFX_DATA_INIT
  36. }
  37. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  38. {
  39. CDialog::DoDataExchange(pDX);
  40. //{{AFX_DATA_MAP(CAboutDlg)
  41. //}}AFX_DATA_MAP
  42. }
  43. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  44. //{{AFX_MSG_MAP(CAboutDlg)
  45. // No message handlers
  46. //}}AFX_MSG_MAP
  47. END_MESSAGE_MAP()
  48. /////////////////////////////////////////////////////////////////////////////
  49. // CConvNumsDlg dialog
  50. CConvNumsDlg::CConvNumsDlg(CWnd* pParent /*=NULL*/)
  51. : CDialog(CConvNumsDlg::IDD, pParent)
  52. {
  53. //{{AFX_DATA_INIT(CConvNumsDlg)
  54. m_strDecimal = _T("");
  55. m_strBinary = _T("");
  56. m_strHex = _T("");
  57. //}}AFX_DATA_INIT
  58. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  59. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  60. }
  61. void CConvNumsDlg::DoDataExchange(CDataExchange* pDX)
  62. {
  63. CDialog::DoDataExchange(pDX);
  64. //{{AFX_DATA_MAP(CConvNumsDlg)
  65. DDX_Text(pDX, IDC_DECIMAL, m_strDecimal);
  66. DDX_Text(pDX, IDC_BINARY, m_strBinary);
  67. DDX_Text(pDX, IDC_HEX, m_strHex);
  68. //}}AFX_DATA_MAP
  69. }
  70. BEGIN_MESSAGE_MAP(CConvNumsDlg, CDialog)
  71. //{{AFX_MSG_MAP(CConvNumsDlg)
  72. ON_WM_SYSCOMMAND()
  73. ON_WM_PAINT()
  74. ON_WM_QUERYDRAGICON()
  75. ON_BN_CLICKED(IDC_DECIMAL_CONV, OnDecimalConv)
  76. ON_BN_CLICKED(IDC_BINARY_CONV, OnBinaryConv)
  77. ON_BN_CLICKED(IDC_HEX_CONV, OnHexConv)
  78. //}}AFX_MSG_MAP
  79. END_MESSAGE_MAP()
  80. /////////////////////////////////////////////////////////////////////////////
  81. // CConvNumsDlg message handlers
  82. BOOL CConvNumsDlg::OnInitDialog()
  83. {
  84. CDialog::OnInitDialog();
  85. // Add "About..." menu item to system menu.
  86. // IDM_ABOUTBOX must be in the system command range.
  87. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  88. ASSERT(IDM_ABOUTBOX < 0xF000);
  89. CMenu* pSysMenu = GetSystemMenu(FALSE);
  90. if (pSysMenu != NULL)
  91. {
  92. CString strAboutMenu;
  93. strAboutMenu.LoadString(IDS_ABOUTBOX);
  94. if (!strAboutMenu.IsEmpty())
  95. {
  96. pSysMenu->AppendMenu(MF_SEPARATOR);
  97. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  98. }
  99. }
  100. // Set the icon for this dialog.  The framework does this automatically
  101. //  when the application's main window is not a dialog
  102. SetIcon(m_hIcon, TRUE); // Set big icon
  103. SetIcon(m_hIcon, FALSE); // Set small icon
  104. // TODO: Add extra initialization here
  105. return TRUE;  // return TRUE  unless you set the focus to a control
  106. }
  107. void CConvNumsDlg::OnSysCommand(UINT nID, LPARAM lParam)
  108. {
  109. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  110. {
  111. CAboutDlg dlgAbout;
  112. dlgAbout.DoModal();
  113. }
  114. else
  115. {
  116. CDialog::OnSysCommand(nID, lParam);
  117. }
  118. }
  119. // If you add a minimize button to your dialog, you will need the code below
  120. //  to draw the icon.  For MFC applications using the document/view model,
  121. //  this is automatically done for you by the framework.
  122. void CConvNumsDlg::OnPaint() 
  123. {
  124. if (IsIconic())
  125. {
  126. CPaintDC dc(this); // device context for painting
  127. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  128. // Center icon in client rectangle
  129. int cxIcon = GetSystemMetrics(SM_CXICON);
  130. int cyIcon = GetSystemMetrics(SM_CYICON);
  131. CRect rect;
  132. GetClientRect(&rect);
  133. int x = (rect.Width() - cxIcon + 1) / 2;
  134. int y = (rect.Height() - cyIcon + 1) / 2;
  135. // Draw the icon
  136. dc.DrawIcon(x, y, m_hIcon);
  137. }
  138. else
  139. {
  140. CDialog::OnPaint();
  141. }
  142. }
  143. // The system calls this to obtain the cursor to display while the user drags
  144. //  the minimized window.
  145. HCURSOR CConvNumsDlg::OnQueryDragIcon()
  146. {
  147. return (HCURSOR) m_hIcon;
  148. }
  149. //将16进制的一个字符转换为十进制的数
  150. unsigned char CConvNumsDlg::BtoH(char ch)
  151. {
  152. //0-9
  153. if (ch >= '0' && ch <= '9') 
  154. return (ch - '0');         
  155. //9-15
  156. if (ch >= 'A' && ch <= 'F') 
  157. return (ch - 'A' + 0xA);   
  158. //9-15
  159. if (ch >= 'a' && ch <= 'f')
  160. return (ch - 'a' + 0xA);  
  161. return(255); 
  162. }
  163. //转换十进制数
  164. void CConvNumsDlg::OnDecimalConv() 
  165. {
  166. UpdateData(TRUE);
  167. //先转换为二进制
  168. m_strBinary = DecimalToBinary(m_strDecimal);
  169. //再转换为十六进制
  170. m_strHex = BinaryToHex(m_strBinary);
  171. UpdateData(FALSE);
  172. }
  173. //转换二进制数
  174. void CConvNumsDlg::OnBinaryConv() 
  175. {
  176. UpdateData(TRUE);
  177. //转换为十进制
  178. m_strDecimal = BinaryToDecimal(m_strBinary);
  179. //转换为十六进制
  180. m_strHex = BinaryToHex(m_strBinary);
  181. UpdateData(FALSE);
  182. }
  183. //转换十六进制数
  184. void CConvNumsDlg::OnHexConv() 
  185. {
  186. UpdateData(TRUE);
  187. //先转换为二进制
  188. m_strBinary = HexToBinary(m_strHex);
  189. //再转换为十进制
  190. m_strDecimal = BinaryToDecimal(m_strBinary);
  191. UpdateData(FALSE);
  192. }
  193. //转换十六进制为二进制
  194. CString CConvNumsDlg::HexToBinary(CString strHex)
  195. {
  196. int nLenth = strHex.GetLength();
  197. char* Hex = new char[nLenth];
  198. Hex = strHex.GetBuffer(0);
  199. CString strBinary = "";
  200. for(int i=0;i<nLenth;i++)
  201. {
  202. //转换一位十六进制数为十进制
  203. char h = Hex[nLenth-1-i];
  204. int j = BtoH(h);
  205. CString str;
  206. str.Format("%d",j);
  207. //转换十进制为4为二进制
  208. str = DecimalToBinary(str);
  209. strBinary += str;
  210. }
  211. return strBinary;
  212. }
  213. //转换二进制为十六进制
  214. CString CConvNumsDlg::BinaryToHex(CString strBinary)
  215. {
  216. int nLength = strBinary.GetLength();
  217. CString str = strBinary;
  218. //位数不是四的倍数时补齐
  219. switch(nLength%4)
  220. {
  221. case 0:
  222. break;
  223. case 1:
  224. strBinary.Format("%d%d%d%s",0,0,0,str);
  225. break;
  226. case 2:
  227. strBinary.Format("%d%d%s",0,0,str);
  228. break;
  229. case 3:
  230. strBinary.Format("%d%s",0,str);
  231. break;
  232. default:
  233. return "";
  234. break;
  235. }
  236. CString strHex,str1;
  237. str1 = "";
  238. nLength = strBinary.GetLength();
  239. for(int i=1;i<=(nLength/4);i++)
  240. {
  241. //每四位二进制数转换为一十六进制数
  242. str = strBinary.Left(4);
  243. CString strDecimal = BinaryToDecimal(str);
  244. int nDecimal = atoi(strDecimal.GetBuffer(0));
  245. if(nDecimal<10)
  246. str1.Format("%d",nDecimal);
  247. else
  248. {
  249. char c = 'A' + (nDecimal-10);
  250. str1.Format("%c",c);
  251. }
  252. strHex += str1;
  253. strBinary = strBinary.Right(strBinary.GetLength()-str.GetLength());
  254. }
  255. return strHex;
  256. }
  257. //转换十进制为二进制
  258. CString CConvNumsDlg::DecimalToBinary(CString strDecimal)
  259. {
  260. int nDecimal = atoi(strDecimal.GetBuffer(0));
  261. int nYushu; //余数
  262. int nShang; //商
  263. CString strBinary = "";
  264. char buff[2];
  265. CString str = "";
  266. BOOL bContinue = TRUE;
  267. while(bContinue)
  268. {
  269. nYushu = nDecimal%2;
  270. nShang = nDecimal/2;
  271. sprintf(buff,"%d",nYushu);
  272. str = strBinary;
  273. strBinary.Format("%s%s",buff,str);
  274. nDecimal = nShang;
  275. if(nShang==0)
  276. bContinue = FALSE;
  277. }
  278. return strBinary;
  279. }
  280. //转换二进制为十进制
  281. CString CConvNumsDlg::BinaryToDecimal(CString strBinary)
  282. {
  283. int nLenth = strBinary.GetLength();
  284. char* Binary = new char[nLenth];
  285. Binary = strBinary.GetBuffer(0);
  286. int nDecimal = 0;
  287. for(int i=0;i<nLenth;i++)
  288. {
  289. char h = Binary[nLenth-1-i];
  290. char str[1];
  291. str[0] = h;
  292. int j = atoi(str);
  293. for(int k=0;k<i;k++)
  294. {
  295. j=j*2;
  296. }
  297. nDecimal += j;
  298. }
  299. CString strDecimal;
  300. strDecimal.Format("%d",nDecimal);
  301. return strDecimal;
  302. }