TransparentWnd.h
上传用户:gaonas
上传日期:2007-01-06
资源大小:53k
文件大小:2k
源码类别:

行业应用

开发平台:

Visual C++

  1. //********************************************************************************
  2. //* TransparentWindow.CPP
  3. //*
  4. //* A transparent window class.
  5. //*
  6. //* Based on the idea of Jason Wylie
  7. //*
  8. //* (C) 1998 by Franz Polzer
  9. //*
  10. //* Visit me at: stud1.tuwien.ac.at/~e9225140
  11. //* Write to me: e9225140@student.tuwien.ac.at
  12. //********************************************************************************
  13. #if !defined(AFX_TRANSPARENTWND_H__INCLUDED_)
  14. #define AFX_TRANSPARENTWND_H__INCLUDED_
  15. #if _MSC_VER > 1000
  16. #pragma once
  17. #endif
  18. class CTransparentWnd : public CWnd
  19. {
  20. public:
  21. CTransparentWnd();
  22.     int xcounter,ycounter;
  23. void CreateTransparent(LPCTSTR pTitle, RECT &rect);
  24. void SetupRegion(CDC *pDC);
  25. void Reset(void);
  26. void DoSet(void);
  27. void DoWalk(void);
  28. CBitmap m_bmpDraw;
  29. int m_iAniSeq;
  30. CFont m_fontLogo;
  31. CPoint m_ptDest;
  32. int m_iLastDirection;
  33. public:
  34. // Overrides
  35. // ClassWizard generated virtual function overrides
  36. //{{AFX_VIRTUAL(CTransparentWnd)
  37. //}}AFX_VIRTUAL
  38. // Implementation
  39. public:
  40. virtual ~CTransparentWnd();
  41. protected:
  42. // Generated message map functions
  43. protected:
  44. //{{AFX_MSG(CTransparentWnd)
  45. afx_msg void OnPaint();
  46. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  47. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  48. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  49. afx_msg void OnTimer(UINT nIDEvent);
  50. afx_msg void OnDestroy();
  51. afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
  52. //}}AFX_MSG
  53. DECLARE_MESSAGE_MAP()
  54. };
  55. /////////////////////////////////////////////////////////////////////////////
  56. //{{AFX_INSERT_LOCATION}}
  57. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  58. #endif