preview.h
资源名称:shell.rar [点击查看]
上传用户:xhy777
上传日期:2007-02-14
资源大小:24088k
文件大小:1k
源码类别:
系统编程
开发平台:
Visual C++
- /////////////////////////////////////////////////////////////////////////////
- // PREVIEW.H
- //
- // Declaration of CPreviewWindow
- //
- // History:
- //
- // Author Date Description
- // ------ ---- -----------
- // jaym 08/26/96 Created
- // jaym 02/03/97 Updated to use new CDIB class
- /////////////////////////////////////////////////////////////////////////////
- #ifndef __PREVIEW_H__
- #define __PREVIEW_H__
- class CPreviewWindow;
- #include "wnd.h"
- #include "dib.h"
- /////////////////////////////////////////////////////////////////////////////
- // CPreviewWindow
- /////////////////////////////////////////////////////////////////////////////
- class CPreviewWindow : public CWindow
- {
- // Construction/destruction
- public:
- CPreviewWindow();
- virtual ~CPreviewWindow();
- BOOL Create(const RECT & rect, HWND hwndParent);
- protected:
- void OnDestroy();
- void OnPaint(HDC hDC, PAINTSTRUCT * ps);
- void OnPaletteChanged(HWND hwndPalChng);
- BOOL OnQueryNewPalette();
- protected:
- CDIB * m_pDIB;
- };
- #endif // __PREVIEW_H__
English
