MainFrm.cpp
上传用户:yatsl7111
上传日期:2007-01-08
资源大小:1433k
文件大小:4k
源码类别:

图形图象

开发平台:

Visual C++

  1. // MainFrm.cpp : implementation of the CMainFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "ISeeExplorer.h"
  5. #include "MainFrm.h"
  6. #include "ISeeExplorerDoc.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CMainFrame
  14. IMPLEMENT_DYNCREATE(CMainFrame, CFrameWnd)
  15. BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd)
  16. //{{AFX_MSG_MAP(CMainFrame)
  17. ON_WM_CREATE()
  18. ON_COMMAND(ID_C_A_LICON, OnCALicon)
  19. ON_COMMAND(ID_C_B_SICON, OnCBSicon)
  20. ON_COMMAND(ID_C_C_LIST, OnCCList)
  21. ON_COMMAND(ID_C_D_REPORT, OnCDReport)
  22. ON_COMMAND(ID_C_E_THUM, OnCEThum)
  23. //}}AFX_MSG_MAP
  24. ON_MESSAGE( WM_ISEE_UPDATE_IMAGE , OnISeeUpdateImage )
  25. END_MESSAGE_MAP()
  26. static UINT indicators[] =
  27. {
  28. ID_SEPARATOR,           // status line indicator
  29. ID_INDICATOR_CAPS,
  30. ID_INDICATOR_NUM,
  31. ID_INDICATOR_SCRL,
  32. };
  33. /////////////////////////////////////////////////////////////////////////////
  34. // CMainFrame construction/destruction
  35. CMainFrame::CMainFrame()
  36. {
  37. // TODO: add member initialization code here
  38. }
  39. CMainFrame::~CMainFrame()
  40. {
  41. }
  42. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  43. {
  44. if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
  45. return -1;
  46. //@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
  47. // 创建工具条及状态条
  48. if (!m_wndToolBar.CreateEx(this) ||
  49. !m_wndToolBar.LoadToolBar(IDR_MAINFRAME))
  50. {
  51. TRACE0("Failed to create main toolbarn");
  52. return -1;      // fail to create
  53. }
  54. if (!m_wndTBIP.CreateEx(this) ||
  55. !m_wndTBIP.LoadToolBar(IDR_TB2_IP))
  56. {
  57. TRACE0("Failed to create IP toolbarn");
  58. return -1;      // fail to create
  59. }
  60. if (!m_wndReBar.Create(this) ||
  61. !m_wndReBar.AddBar(&m_wndToolBar) ||
  62. !m_wndReBar.AddBar(&m_wndTBIP))
  63. {
  64. TRACE0("Failed to create rebarn");
  65. return -1;      // fail to create
  66. }
  67. if (!m_wndStatusBar.Create(this) ||
  68. !m_wndStatusBar.SetIndicators(indicators, 
  69.   sizeof(indicators)/sizeof(UINT)))
  70. {
  71. TRACE0("Failed to create status barn");
  72. return -1;      // fail to create
  73. }
  74. // TODO: Remove this if you don't want tool tips
  75. m_wndToolBar.SetBarStyle(m_wndToolBar.GetBarStyle() |
  76. CBRS_TOOLTIPS | CBRS_FLYBY);
  77. m_wndTBIP.SetBarStyle(m_wndTBIP.GetBarStyle() |
  78. CBRS_TOOLTIPS | CBRS_FLYBY);
  79. m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
  80. m_wndTBIP.EnableDocking(CBRS_ALIGN_ANY);
  81. EnableDocking(CBRS_ALIGN_ANY);
  82. CISeeExplorerDoc *pDoc = (CISeeExplorerDoc*)((CCreateContext*)(lpCreateStruct->lpCreateParams))->m_pCurrentDoc;
  83. ASSERT((pDoc)&&(pDoc->IsKindOf(RUNTIME_CLASS(CISeeExplorerDoc))));
  84. if (pDoc->m_FileServer.CreateVisualComponents(this, (CCreateContext*)(lpCreateStruct->lpCreateParams)))
  85. {
  86. TRACE0("Failed to create file servern");
  87. return -1;      // fail to create
  88. }
  89. m_pDoc = pDoc;
  90. return 0;
  91. }
  92. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  93. {
  94. if( !CFrameWnd::PreCreateWindow(cs) )
  95. return FALSE;
  96. // TODO: Modify the Window class or styles here by modifying
  97. //  the CREATESTRUCT cs
  98. return TRUE;
  99. }
  100. /////////////////////////////////////////////////////////////////////////////
  101. // CMainFrame diagnostics
  102. #ifdef _DEBUG
  103. void CMainFrame::AssertValid() const
  104. {
  105. CFrameWnd::AssertValid();
  106. }
  107. void CMainFrame::Dump(CDumpContext& dc) const
  108. {
  109. CFrameWnd::Dump(dc);
  110. }
  111. #endif //_DEBUG
  112. /////////////////////////////////////////////////////////////////////////////
  113. // CMainFrame message handlers
  114. void CMainFrame::OnCALicon() 
  115. {
  116. // TODO: Add your command handler code here
  117. m_pDoc->m_FileServer.SetListViewType( LVS_ICON );
  118. }
  119. void CMainFrame::OnCBSicon() 
  120. {
  121. // TODO: Add your command handler code here
  122. m_pDoc->m_FileServer.SetListViewType( LVS_SMALLICON );
  123. }
  124. void CMainFrame::OnCCList() 
  125. {
  126. // TODO: Add your command handler code here
  127. m_pDoc->m_FileServer.SetListViewType( LVS_LIST );
  128. }
  129. void CMainFrame::OnCDReport() 
  130. {
  131. // TODO: Add your command handler code here
  132. m_pDoc->m_FileServer.SetListViewType( LVS_REPORT );
  133. }
  134. void CMainFrame::OnCEThum() 
  135. {
  136. // TODO: Add your command handler code here 
  137. m_pDoc->m_FileServer.SetListViewType( LVS_ICON );
  138. }
  139. void CMainFrame::OnISeeUpdateImage(WPARAM wParam, LPARAM lParam)
  140. {
  141. m_pDoc->SelChanged( (CReturnReceipt *) lParam );
  142. }