SwitchTBView1.cpp
上传用户:hbytzg
上传日期:2007-01-02
资源大小:47k
文件大小:2k
源码类别:

midi

开发平台:

Visual C++

  1. // SwitchTBView1.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "SwitchTB.h"
  5. #include "SwitchTBView1.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CSwitchTBView1
  13. IMPLEMENT_DYNCREATE(CSwitchTBView1, CView)
  14. CSwitchTBView1::CSwitchTBView1()
  15. {
  16. }
  17. CSwitchTBView1::~CSwitchTBView1()
  18. {
  19. }
  20. BEGIN_MESSAGE_MAP(CSwitchTBView1, CView)
  21. //{{AFX_MSG_MAP(CSwitchTBView1)
  22. ON_WM_ERASEBKGND()
  23. //}}AFX_MSG_MAP
  24. END_MESSAGE_MAP()
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CSwitchTBView1 drawing
  27. void CSwitchTBView1::OnDraw(CDC* pDC)
  28. {
  29. CDocument* pDoc = GetDocument();
  30. // TODO: add draw code here
  31. }
  32. /////////////////////////////////////////////////////////////////////////////
  33. // CSwitchTBView1 diagnostics
  34. #ifdef _DEBUG
  35. void CSwitchTBView1::AssertValid() const
  36. {
  37. CView::AssertValid();
  38. }
  39. void CSwitchTBView1::Dump(CDumpContext& dc) const
  40. {
  41. CView::Dump(dc);
  42. }
  43. #endif //_DEBUG
  44. /////////////////////////////////////////////////////////////////////////////
  45. // CSwitchTBView1 message handlers
  46. BOOL CSwitchTBView1::OnEraseBkgnd(CDC* pDC) 
  47. {
  48. // This function writes "Toolbar #2" all across the client where
  49. // the text color and background are similar to those of toolbar #2
  50. // This function is NOT important to the toolbar switching mechanism.
  51. CSize size;
  52. CString str ("Toolbar #2");
  53. CRect rc;
  54. GetClientRect (rc);
  55. pDC->SetTextColor (RGB (148, 0, 148));
  56. pDC->SetBkColor (RGB (0, 195, 198));
  57. size = pDC->GetTextExtent (str);
  58. pDC->TextOut (0, 0, str);
  59. pDC->StretchBlt (0, 0, rc.right, rc.bottom,
  60. pDC,0, 0, size.cx, size.cy, SRCCOPY);
  61. return (1);
  62. }