LP.cpp
上传用户:jjiangjuan
上传日期:2013-03-27
资源大小:59k
文件大小:1k
源码类别:

波变换

开发平台:

Visual C++

  1. // LP.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "LPR.h"
  5. #include "LP.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CLP
  13. CLP::CLP()
  14. {
  15. LPLocated=false;
  16. }
  17. CLP::~CLP()
  18. {
  19. }
  20. BEGIN_MESSAGE_MAP(CLP, CStatic)
  21. //{{AFX_MSG_MAP(CLP)
  22. ON_WM_PAINT()
  23. //}}AFX_MSG_MAP
  24. END_MESSAGE_MAP()
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CLP message handlers
  27. void CLP::OnPaint() 
  28. {
  29. CPaintDC dc(this); // device context for painting
  30. // TODO: Add your message handler code here
  31. // Do not call CStatic::OnPaint() for painting messages
  32. dc.RealizePalette();
  33. SetStretchBltMode(dc.GetSafeHdc(), COLORONCOLOR);  
  34. SetDIBitsToDevice(dc.GetSafeHdc(),
  35. 0,
  36. 0,
  37. DIB.bmiHeader.biWidth,
  38. DIB.bmiHeader.biHeight,
  39. 0,
  40. 0,
  41. 0,
  42. DIB.bmiHeader.biHeight,
  43. LPArea,
  44. &DIB,
  45. DIB_RGB_COLORS);
  46. }