CompFileDlg.cpp
上传用户:biuytresa
上传日期:2007-12-07
资源大小:721k
文件大小:5k
源码类别:

DNA

开发平台:

Visual C++

  1. // CompFileDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "CompFile.h"
  5. #include "CompFileDlg.h"
  6. #include "ReadWrite.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. // CCompFileDlg dialog
  51. CCompFileDlg::CCompFileDlg(CWnd* pParent /*=NULL*/)
  52. : CDialog(CCompFileDlg::IDD, pParent)
  53. {
  54. //{{AFX_DATA_INIT(CCompFileDlg)
  55. m_DirPathString = _T("");
  56. m_FilePathString = _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 CCompFileDlg::DoDataExchange(CDataExchange* pDX)
  62. {
  63. CDialog::DoDataExchange(pDX);
  64. //{{AFX_DATA_MAP(CCompFileDlg)
  65. DDX_Text(pDX, IDC_EDIT1, m_DirPathString);
  66. DDX_Text(pDX, IDC_EDIT2, m_FilePathString);
  67. //}}AFX_DATA_MAP
  68. }
  69. BEGIN_MESSAGE_MAP(CCompFileDlg, CDialog)
  70. //{{AFX_MSG_MAP(CCompFileDlg)
  71. ON_WM_SYSCOMMAND()
  72. ON_WM_PAINT()
  73. ON_WM_QUERYDRAGICON()
  74. ON_BN_CLICKED(IDC_FILEBROWSER, OnFilebrowser)
  75. ON_BN_CLICKED(IDC_DIRBROWSER, OnDirbrowser)
  76. ON_BN_CLICKED(IDC_READFROMFILE, OnReadfromfile)
  77. ON_BN_CLICKED(IDC_WRITETOFILE, OnWritetofile)
  78. //}}AFX_MSG_MAP
  79. END_MESSAGE_MAP()
  80. /////////////////////////////////////////////////////////////////////////////
  81. // CCompFileDlg message handlers
  82. BOOL CCompFileDlg::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 CCompFileDlg::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 CCompFileDlg::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 CCompFileDlg::OnQueryDragIcon()
  146. {
  147. return (HCURSOR) m_hIcon;
  148. }
  149. void CCompFileDlg::OnFilebrowser() 
  150. {
  151. CFileDialog fileDialog(FALSE);
  152. if (fileDialog.DoModal() == IDOK) {
  153. m_FilePathString = fileDialog.GetPathName();
  154. UpdateData(FALSE);
  155. }
  156. }
  157. void CCompFileDlg::OnDirbrowser() 
  158. {
  159. CFileDialog fileDialog(TRUE);
  160. if (fileDialog.DoModal() == IDOK) {
  161. CString pathName = fileDialog.GetPathName();
  162. int index = pathName.ReverseFind('\');
  163. if (index == -1) {
  164. AfxMessageBox("The Directory is not correct!");
  165. return;
  166. }
  167. m_DirPathString = pathName.Left(index);
  168. UpdateData(FALSE);
  169. }
  170. }
  171. void CCompFileDlg::OnReadfromfile() 
  172. {
  173. if (UpdateData(TRUE)) {
  174. ReadThreadProc(m_FilePathString);
  175. }
  176. }
  177. void CCompFileDlg::OnWritetofile() 
  178. {
  179. if (UpdateData(TRUE)) {
  180. if (m_DirPathString.GetAt(m_DirPathString.GetLength()-1) != '\')
  181. m_DirPathString = m_DirPathString + '\';
  182. WriteThreadProc(m_DirPathString, 
  183. m_FilePathString);
  184. }
  185. }