SamplesSDlg.cpp
上传用户:weigute
上传日期:2007-03-02
资源大小:1287k
文件大小:4k
源码类别:

数学计算

开发平台:

Visual C++

  1. // SamplesSDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "SamplesS.h"
  5. #include "SamplesSDlg.h"
  6. #include "Algthms.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CAboutDlg dialog used for App About
  14. class CAboutDlg : public CDialog
  15. {
  16. public:
  17. CAboutDlg();
  18. // Dialog Data
  19. //{{AFX_DATA(CAboutDlg)
  20. enum { IDD = IDD_ABOUTBOX };
  21. //}}AFX_DATA
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(CAboutDlg)
  24. protected:
  25. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. protected:
  29. //{{AFX_MSG(CAboutDlg)
  30. //}}AFX_MSG
  31. DECLARE_MESSAGE_MAP()
  32. };
  33. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  34. {
  35. //{{AFX_DATA_INIT(CAboutDlg)
  36. //}}AFX_DATA_INIT
  37. }
  38. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  39. {
  40. CDialog::DoDataExchange(pDX);
  41. //{{AFX_DATA_MAP(CAboutDlg)
  42. //}}AFX_DATA_MAP
  43. }
  44. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  45. //{{AFX_MSG_MAP(CAboutDlg)
  46. // No message handlers
  47. //}}AFX_MSG_MAP
  48. END_MESSAGE_MAP()
  49. /////////////////////////////////////////////////////////////////////////////
  50. // CSamplesSDlg dialog
  51. CSamplesSDlg::CSamplesSDlg(CWnd* pParent /*=NULL*/)
  52. : CDialog(CSamplesSDlg::IDD, pParent)
  53. {
  54. //{{AFX_DATA_INIT(CSamplesSDlg)
  55. m_strMatrix1 = _T("");
  56. m_strMatrix2 = _T("");
  57. m_strMatrix3 = _T("");
  58. //}}AFX_DATA_INIT
  59. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  60. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  61. }
  62. void CSamplesSDlg::DoDataExchange(CDataExchange* pDX)
  63. {
  64. CDialog::DoDataExchange(pDX);
  65. //{{AFX_DATA_MAP(CSamplesSDlg)
  66. DDX_Text(pDX, IDC_EDIT1, m_strMatrix1);
  67. DDX_Text(pDX, IDC_EDIT2, m_strMatrix2);
  68. DDX_Text(pDX, IDC_EDIT3, m_strMatrix3);
  69. //}}AFX_DATA_MAP
  70. }
  71. BEGIN_MESSAGE_MAP(CSamplesSDlg, CDialog)
  72. //{{AFX_MSG_MAP(CSamplesSDlg)
  73. ON_WM_SYSCOMMAND()
  74. ON_WM_PAINT()
  75. ON_WM_QUERYDRAGICON()
  76. ON_BN_CLICKED(IDC_BUTTON1, OnButton1)
  77. //}}AFX_MSG_MAP
  78. END_MESSAGE_MAP()
  79. /////////////////////////////////////////////////////////////////////////////
  80. // CSamplesSDlg message handlers
  81. BOOL CSamplesSDlg::OnInitDialog()
  82. {
  83. CDialog::OnInitDialog();
  84. // Add "About..." menu item to system menu.
  85. // IDM_ABOUTBOX must be in the system command range.
  86. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  87. ASSERT(IDM_ABOUTBOX < 0xF000);
  88. CMenu* pSysMenu = GetSystemMenu(FALSE);
  89. if (pSysMenu != NULL)
  90. {
  91. CString strAboutMenu;
  92. strAboutMenu.LoadString(IDS_ABOUTBOX);
  93. if (!strAboutMenu.IsEmpty())
  94. {
  95. pSysMenu->AppendMenu(MF_SEPARATOR);
  96. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  97. }
  98. }
  99. // Set the icon for this dialog.  The framework does this automatically
  100. //  when the application's main window is not a dialog
  101. SetIcon(m_hIcon, TRUE); // Set big icon
  102. SetIcon(m_hIcon, FALSE); // Set small icon
  103. // TODO: Add extra initialization here
  104. return TRUE;  // return TRUE  unless you set the focus to a control
  105. }
  106. void CSamplesSDlg::OnSysCommand(UINT nID, LPARAM lParam)
  107. {
  108. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  109. {
  110. CAboutDlg dlgAbout;
  111. dlgAbout.DoModal();
  112. }
  113. else
  114. {
  115. CDialog::OnSysCommand(nID, lParam);
  116. }
  117. }
  118. // If you add a minimize button to your dialog, you will need the code below
  119. //  to draw the icon.  For MFC applications using the document/view model,
  120. //  this is automatically done for you by the framework.
  121. void CSamplesSDlg::OnPaint() 
  122. {
  123. if (IsIconic())
  124. {
  125. CPaintDC dc(this); // device context for painting
  126. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  127. // Center icon in client rectangle
  128. int cxIcon = GetSystemMetrics(SM_CXICON);
  129. int cyIcon = GetSystemMetrics(SM_CYICON);
  130. CRect rect;
  131. GetClientRect(&rect);
  132. int x = (rect.Width() - cxIcon + 1) / 2;
  133. int y = (rect.Height() - cyIcon + 1) / 2;
  134. // Draw the icon
  135. dc.DrawIcon(x, y, m_hIcon);
  136. }
  137. else
  138. {
  139. CDialog::OnPaint();
  140. }
  141. }
  142. // The system calls this to obtain the cursor to display while the user drags
  143. //  the minimized window.
  144. HCURSOR CSamplesSDlg::OnQueryDragIcon()
  145. {
  146. return (HCURSOR) m_hIcon;
  147. }
  148. void CSamplesSDlg::OnButton1() 
  149. {
  150. // 构造矩阵
  151. CMatrix mtxA, mtxB, mtxC;
  152. // 获取数据
  153. UpdateData();
  154. mtxA.FromString(m_strMatrix1);
  155. mtxB.FromString(m_strMatrix2);
  156. // 矩阵乘法
  157. mtxC = mtxA * mtxB;
  158. // 显示数据
  159. m_strMatrix3 = mtxC.ToString(" ");
  160. UpdateData(FALSE);
  161. }