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

Ftp客户端

开发平台:

Visual C++

  1. // xiongFtpView.cpp : implementation of the CXiongFtpView class
  2. //
  3. #include "stdafx.h"
  4. #include "xiongFtp.h"
  5. #include "xiongFtpDoc.h"
  6. #include "xiongFtpView.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CXiongFtpView
  14. IMPLEMENT_DYNCREATE(CXiongFtpView, CListView)
  15. BEGIN_MESSAGE_MAP(CXiongFtpView, CListView)
  16. //{{AFX_MSG_MAP(CXiongFtpView)
  17. // NOTE - the ClassWizard will add and remove mapping macros here.
  18. //    DO NOT EDIT what you see in these blocks of generated code!
  19. //}}AFX_MSG_MAP
  20. // Standard printing commands
  21. ON_COMMAND(ID_FILE_PRINT, CListView::OnFilePrint)
  22. ON_COMMAND(ID_FILE_PRINT_DIRECT, CListView::OnFilePrint)
  23. ON_COMMAND(ID_FILE_PRINT_PREVIEW, CListView::OnFilePrintPreview)
  24. END_MESSAGE_MAP()
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CXiongFtpView construction/destruction
  27. CXiongFtpView::CXiongFtpView()
  28. {
  29. // TODO: add construction code here
  30. }
  31. CXiongFtpView::~CXiongFtpView()
  32. {
  33. }
  34. BOOL CXiongFtpView::PreCreateWindow(CREATESTRUCT& cs)
  35. {
  36. return CListView::PreCreateWindow(cs);
  37. }
  38. /////////////////////////////////////////////////////////////////////////////
  39. // CXiongFtpView drawing
  40. void CXiongFtpView::OnDraw(CDC* pDC)
  41. {
  42. CXiongFtpDoc* pDoc = GetDocument();
  43. ASSERT_VALID(pDoc);
  44. // TODO: add draw code for native data here
  45. }
  46. void CXiongFtpView::OnInitialUpdate()
  47. {
  48. CListView::OnInitialUpdate();
  49. // TODO: You may populate your ListView with items by directly accessing
  50. //  its list control through a call to GetListCtrl().
  51. }
  52. /////////////////////////////////////////////////////////////////////////////
  53. // CXiongFtpView printing
  54. BOOL CXiongFtpView::OnPreparePrinting(CPrintInfo* pInfo)
  55. {
  56. // default preparation
  57. return DoPreparePrinting(pInfo);
  58. }
  59. void CXiongFtpView::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  60. {
  61. // TODO: add extra initialization before printing
  62. }
  63. void CXiongFtpView::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  64. {
  65. // TODO: add cleanup after printing
  66. }
  67. /////////////////////////////////////////////////////////////////////////////
  68. // CXiongFtpView diagnostics
  69. #ifdef _DEBUG
  70. void CXiongFtpView::AssertValid() const
  71. {
  72. CListView::AssertValid();
  73. }
  74. void CXiongFtpView::Dump(CDumpContext& dc) const
  75. {
  76. CListView::Dump(dc);
  77. }
  78. CXiongFtpDoc* CXiongFtpView::GetDocument() // non-debug version is inline
  79. {
  80. ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CXiongFtpDoc)));
  81. return (CXiongFtpDoc*)m_pDocument;
  82. }
  83. #endif //_DEBUG
  84. /////////////////////////////////////////////////////////////////////////////
  85. // CXiongFtpView message handlers