AVIStatusView.cpp
上传用户:szcysw
上传日期:2013-03-11
资源大小:6752k
文件大小:3k
源码类别:

界面编程

开发平台:

Visual C++

  1. // AVIStatusView.cpp : implementation of the CAVIStatusView class
  2. //
  3. #include "stdafx.h"
  4. #include "AVIStatus.h"
  5. #include "AVIStatusDoc.h"
  6. #include "AVIStatusView.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CAVIStatusView
  14. IMPLEMENT_DYNCREATE(CAVIStatusView, CView)
  15. BEGIN_MESSAGE_MAP(CAVIStatusView, CView)
  16. //{{AFX_MSG_MAP(CAVIStatusView)
  17. ON_COMMAND(ID_VIEWSTATUSBAR, OnViewStatusBar)
  18. //}}AFX_MSG_MAP
  19. // Standard printing commands
  20. ON_COMMAND(ID_FILE_PRINT, CView::OnFilePrint)
  21. ON_COMMAND(ID_FILE_PRINT_DIRECT, CView::OnFilePrint)
  22. ON_COMMAND(ID_FILE_PRINT_PREVIEW, CView::OnFilePrintPreview)
  23. END_MESSAGE_MAP()
  24. /////////////////////////////////////////////////////////////////////////////
  25. // CAVIStatusView construction/destruction
  26. CAVIStatusView::CAVIStatusView()
  27. {
  28. // TODO: add construction code here
  29. }
  30. CAVIStatusView::~CAVIStatusView()
  31. {
  32. }
  33. BOOL CAVIStatusView::PreCreateWindow(CREATESTRUCT& cs)
  34. {
  35. // TODO: Modify the Window class or styles here by modifying
  36. //  the CREATESTRUCT cs
  37. return CView::PreCreateWindow(cs);
  38. }
  39. /////////////////////////////////////////////////////////////////////////////
  40. // CAVIStatusView drawing
  41. void CAVIStatusView::OnDraw(CDC* pDC)
  42. {
  43. CAVIStatusDoc* pDoc = GetDocument();
  44. ASSERT_VALID(pDoc);
  45. // TODO: add draw code for native data here
  46. }
  47. /////////////////////////////////////////////////////////////////////////////
  48. // CAVIStatusView printing
  49. BOOL CAVIStatusView::OnPreparePrinting(CPrintInfo* pInfo)
  50. {
  51. // default preparation
  52. return DoPreparePrinting(pInfo);
  53. }
  54. void CAVIStatusView::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  55. {
  56. // TODO: add extra initialization before printing
  57. }
  58. void CAVIStatusView::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  59. {
  60. // TODO: add cleanup after printing
  61. }
  62. /////////////////////////////////////////////////////////////////////////////
  63. // CAVIStatusView diagnostics
  64. #ifdef _DEBUG
  65. void CAVIStatusView::AssertValid() const
  66. {
  67. CView::AssertValid();
  68. }
  69. void CAVIStatusView::Dump(CDumpContext& dc) const
  70. {
  71. CView::Dump(dc);
  72. }
  73. CAVIStatusDoc* CAVIStatusView::GetDocument() // non-debug version is inline
  74. {
  75. ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CAVIStatusDoc)));
  76. return (CAVIStatusDoc*)m_pDocument;
  77. }
  78. #endif //_DEBUG
  79. /////////////////////////////////////////////////////////////////////////////
  80. // CAVIStatusView message handlers
  81. #include "mainfrm.h"
  82. void CAVIStatusView::OnViewStatusBar() 
  83. {
  84. //得到父窗口框架
  85. CMainFrame *mainfrm=(CMainFrame *)GetParentFrame();
  86. //得到组合列表框当前选项
  87. int cursel=mainfrm->m_wndStatusBar.m_ComboBox.GetCurSel();
  88. CString sel;
  89. mainfrm->m_wndStatusBar.m_ComboBox.GetLBText(cursel, sel);
  90. AfxMessageBox( sel);
  91. }