Splash.h
上传用户:geanq888
上传日期:2007-01-03
资源大小:316k
文件大小:1k
源码类别:

Ftp客户端

开发平台:

Visual C++

  1. #if !defined(AFX_MYSPLASHWND_H__08C608F3_1FB3_11D1_830E_58A47E000000__INCLUDED_)
  2. #define AFX_MYSPLASHWND_H__08C608F3_1FB3_11D1_830E_58A47E000000__INCLUDED_
  3. #if _MSC_VER >= 1000
  4. #pragma once
  5. #endif // _MSC_VER >= 1000
  6. // MySplashWnd.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CMySplashWnd window
  10. class CMySplashWnd : public CWnd
  11. {
  12. // Construction
  13. public:
  14.   CMySplashWnd(UINT nBitmapID, UINT nDuration = 2500);
  15. // Attributes
  16. public:
  17.   BOOL Create();
  18. // Operations
  19. public:
  20. // Overrides
  21.   // ClassWizard generated virtual function overrides
  22.   //{{AFX_VIRTUAL(CMySplashWnd)
  23.   public:
  24.   virtual BOOL PreTranslateMessage(MSG* pMsg);
  25.   //}}AFX_VIRTUAL
  26. // Implementation
  27. public:
  28.         // Generated message map functions
  29. protected:
  30.   //{{AFX_MSG(CMySplashWnd)
  31.   afx_msg void OnPaint();
  32.   afx_msg void OnTimer(UINT nIDEvent);
  33.   //}}AFX_MSG
  34.   DECLARE_MESSAGE_MAP()
  35. protected:
  36.   BOOL GetBitmapAndPalette(UINT nIDResource, CBitmap &bitmap, CPalette &pal);
  37. protected:
  38.   UINT m_nBitmapID;
  39.   UINT m_nDuration;
  40.   UINT m_nTimerID;
  41.   CBitmap m_bitmap;
  42.   CPalette m_pal;
  43.   CWnd m_wndInvisible;
  44. };
  45. /////////////////////////////////////////////////////////////////////////////
  46. //{{AFX_INSERT_LOCATION}}
  47. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  48. #endif // !defined(AFX_MYSPLASHWND_H__08C608F3_1FB3_11D1_830E_58A47E000000__INCLUDED_)