SelectActionDlg.cpp
上传用户:tjfeida
上传日期:2013-03-10
资源大小:1917k
文件大小:2k
源码类别:

Ftp客户端

开发平台:

Visual C++

  1. // SelectActionDlg.cpp : implementation file
  2. //
  3. /*********************************************
  4. **该文件是属于WolfFTP工程中的。如果有什么问题
  5. **请联系
  6. **         tablejiang@21cn.com
  7. **或者访问
  8. **         http://wolfftp.51.net
  9. **以得到最新的支持。
  10. *********************************************/
  11. #include "stdafx.h"
  12. #include "quickftp.h"
  13. #include "SelectActionDlg.h"
  14. #ifdef _DEBUG
  15. #define new DEBUG_NEW
  16. #undef THIS_FILE
  17. static char THIS_FILE[] = __FILE__;
  18. #endif
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CSelectActionDlg dialog
  21. CSelectActionDlg::CSelectActionDlg(CWnd* pParent /*=NULL*/)
  22. : CDialog(CSelectActionDlg::IDD, pParent)
  23. {
  24. //{{AFX_DATA_INIT(CSelectActionDlg)
  25. m_bAsk = FALSE;
  26. m_strPathName = _T("");
  27. //}}AFX_DATA_INIT
  28. }
  29. void CSelectActionDlg::DoDataExchange(CDataExchange* pDX)
  30. {
  31. CDialog::DoDataExchange(pDX);
  32. //{{AFX_DATA_MAP(CSelectActionDlg)
  33. DDX_Check(pDX, IDC_CHECK_ASK, m_bAsk);
  34. DDX_Text(pDX, IDC_EDIT_PATH_NAME, m_strPathName);
  35. //}}AFX_DATA_MAP
  36. }
  37. BEGIN_MESSAGE_MAP(CSelectActionDlg, CDialog)
  38. //{{AFX_MSG_MAP(CSelectActionDlg)
  39. ON_BN_CLICKED(IDC_BUTTON_OVERLAY, OnButtonOverlay)
  40. ON_BN_CLICKED(IDC_BUTTON_RESUME, OnButtonResume)
  41. ON_BN_CLICKED(IDC_BUTTON_RENAME, OnButtonRename)
  42. //}}AFX_MSG_MAP
  43. END_MESSAGE_MAP()
  44. /////////////////////////////////////////////////////////////////////////////
  45. // CSelectActionDlg message handlers
  46. void CSelectActionDlg::OnOK() 
  47. {
  48. // TODO: Add extra validation here
  49. CDialog::OnOK();
  50. }
  51. void CSelectActionDlg::OnCancel() 
  52. {
  53. // TODO: Add extra cleanup here
  54. m_iAction = 4 ;
  55. CDialog::OnCancel();
  56. }
  57. void CSelectActionDlg::OnButtonOverlay() 
  58. {
  59. // TODO: Add your control notification handler code here
  60. m_iAction = 1 ;
  61. CDialog::OnOK();
  62. }
  63. void CSelectActionDlg::OnButtonResume() 
  64. {
  65. // TODO: Add your control notification handler code here
  66. m_iAction = 2 ;
  67. CDialog::OnOK();
  68. }
  69. void CSelectActionDlg::OnButtonRename() 
  70. {
  71. // TODO: Add your control notification handler code here
  72. m_iAction = 3 ;
  73. CDialog::OnOK();
  74. }
  75. BOOL CSelectActionDlg::OnInitDialog() 
  76. {
  77. CDialog::OnInitDialog();
  78. // TODO: Add extra initialization here
  79. SetForegroundWindow( ) ;
  80. return TRUE;  // return TRUE unless you set the focus to a control
  81.               // EXCEPTION: OCX Property Pages should return FALSE
  82. }