ShadowWnd.h
上传用户:wpp2016
上传日期:2010-02-01
资源大小:1250k
文件大小:1k
源码类别:

Telnet服务器

开发平台:

Visual C++

  1. //阴影窗口
  2. #if !defined(AFX_SHADOWWND_H__ACCA6600_E30A_11D3_9E45_00A0C936C4B3__INCLUDED_)
  3. #define AFX_SHADOWWND_H__ACCA6600_E30A_11D3_9E45_00A0C936C4B3__INCLUDED_
  4. #if _MSC_VER > 1000
  5. #pragma once
  6. #endif // _MSC_VER > 1000
  7. // ShadowWnd.h : header file
  8. //
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CShadowWnd window
  11. class CShadowWnd : public CWnd
  12. {
  13. // Construction
  14. public:
  15. CShadowWnd();
  16. // Attributes
  17. public:
  18. // Operations
  19. public:
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CShadowWnd)
  23. public:
  24. //}}AFX_VIRTUAL
  25. // Implementation
  26. public:
  27. void ShowReadOnlyText(CString sText);
  28. virtual BOOL  Create(const RECT& rect,CWnd *pParentWnd);
  29. CString m_sShowText;
  30. CBrush m_bmpBrush;
  31. virtual ~CShadowWnd();
  32. // Generated message map functions
  33. protected:
  34. //{{AFX_MSG(CShadowWnd)
  35. afx_msg void OnNcPaint();
  36. afx_msg void OnPaint();
  37. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  38. //}}AFX_MSG
  39. DECLARE_MESSAGE_MAP()
  40. };
  41. /////////////////////////////////////////////////////////////////////////////
  42. //{{AFX_INSERT_LOCATION}}
  43. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  44. #endif // !defined(AFX_SHADOWWND_H__ACCA6600_E30A_11D3_9E45_00A0C936C4B3__INCLUDED_)