Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
589 B

  1. // CSqueegee.h: interface for the CSqueegee class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #ifndef __CSQUEEGEE_H
  5. #define __CSQUEEGEE_H
  6. #include "CObject.h"
  7. class CSqueegee : public CObject
  8. {
  9. public:
  10. CSqueegee();
  11. virtual ~CSqueegee();
  12. void Destroy();
  13. BOOL Init(HWND hWnd);
  14. BOOL Move(Graphics *g);
  15. void Wipe(Graphics *g);
  16. Bitmap *m_paSqueegee;
  17. Bitmap *m_paBackground;
  18. Bitmap *m_paOriginalBkg;
  19. int m_nSnapshotSize;
  20. float m_flSqueegeeWidth;
  21. PointF m_vLastPos;
  22. float m_flLastAngle;
  23. RECT m_rDesktop;
  24. };
  25. #endif