SplashView.cpp
上传用户:wlkj888
上传日期:2022-08-01
资源大小:806k
文件大小:2k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // SplashView.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "gui_devstudio.h"
  5. #include "SplashView.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // SplashView
  13. IMPLEMENT_DYNCREATE(SplashView, CView)
  14. SplashView::SplashView()
  15. {
  16. }
  17. SplashView::~SplashView()
  18. {
  19. }
  20. BEGIN_MESSAGE_MAP(SplashView, CView)
  21. //{{AFX_MSG_MAP(SplashView)
  22. // NOTE - the ClassWizard will add and remove mapping macros here.
  23. //}}AFX_MSG_MAP
  24. END_MESSAGE_MAP()
  25. /////////////////////////////////////////////////////////////////////////////
  26. // SplashView drawing
  27. void SplashView::OnDraw(CDC* pDC)
  28. {
  29. CDocument* pDoc = GetDocument();
  30. CDC m_dc;
  31. CBitmap m_bitmap;
  32. CRect rcClient;
  33. //la idea es tomar el area de la ventana y area  cliente , luego debemos
  34. //igualar el area de coordenadas de ventana al cliente
  35. GetClientRect(&rcClient);
  36. m_dc.CreateCompatibleDC(pDC);
  37. m_bitmap.CreateCompatibleBitmap(&m_dc,rcClient.Width(),rcClient.Height());
  38. CBitmap *m_OldBitmap=m_dc.SelectObject(&m_bitmap);
  39. CBitmap m_bmp;
  40. if (!m_bmp.LoadBitmap( IDB_SPLASHVIEW ) )
  41. return;
  42. CBitmap* p_bmpOld = m_dc.SelectObject( &m_bmp);
  43. BITMAP bmInfo;
  44. if ( m_bmp.GetObject( sizeof( bmInfo ), &bmInfo ) != 0 )
  45. {
  46. pDC->BitBlt( 0,0, bmInfo.bmWidth, bmInfo.bmHeight, &m_dc, 0,0, SRCCOPY );
  47. }
  48. m_dc.SelectObject( p_bmpOld );
  49. m_dc.SelectObject( m_OldBitmap );
  50. m_bmp.DeleteObject();
  51. m_dc.DeleteDC();
  52. // TODO: add draw code here
  53. }
  54. /////////////////////////////////////////////////////////////////////////////
  55. // SplashView diagnostics
  56. #ifdef _DEBUG
  57. void SplashView::AssertValid() const
  58. {
  59. CView::AssertValid();
  60. }
  61. void SplashView::Dump(CDumpContext& dc) const
  62. {
  63. CView::Dump(dc);
  64. }
  65. #endif //_DEBUG
  66. /////////////////////////////////////////////////////////////////////////////
  67. // SplashView message handlers