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.
|
|
/*******************************************************************************
* * (C) COPYRIGHT MICROSOFT CORPORATION, 1998 * * TITLE: COMPROG.H * * VERSION: 1.0 * * AUTHOR: ShaunIv * * DATE: 9/28/1999 * * DESCRIPTION: Download page. Displays the thumbnail and download progress. * *******************************************************************************/ #ifndef __COMPROG_H_INCLUDED
#define __COMPROG_H_INCLUDED
#include <windows.h>
#include "acqmgrcw.h"
#include "gphelper.h"
class CCommonProgressPage { private: // Private data
HWND m_hWnd; CAcquisitionManagerControllerWindow *m_pControllerWindow; int m_nPictureCount; HANDLE m_hCancelDownloadEvent; CGdiPlusHelper m_GdiPlusHelper; UINT m_nThreadNotificationMessage; UINT m_nWiaEventMessage; HPROPSHEETPAGE m_hSwitchToNextPage; bool m_bQueryingUser;
private: // No implementation
CCommonProgressPage(void); CCommonProgressPage( const CCommonProgressPage & ); CCommonProgressPage &operator=( const CCommonProgressPage & );
private: // Constructor and destructor
explicit CCommonProgressPage( HWND hWnd ); ~CCommonProgressPage(void);
private: // Helpers
void UpdatePercentComplete( int nPercent, bool bUploading ); void UpdateCurrentPicture( int nPicture ); void UpdateThumbnail( HBITMAP hBitmap, CWiaItem *pWiaItem ); bool QueryCancel(void);
private: // WM_COMMAND handlers
// Thread Message handlers
void OnNotifyDownloadImage( UINT nMsg, CThreadNotificationMessage *pThreadNotificationMessage ); void OnNotifyDownloadError( UINT nMsg, CThreadNotificationMessage *pThreadNotificationMessage );
// WM_NOTIFY handlers
LRESULT OnSetActive( WPARAM, LPARAM ); LRESULT OnKillActive( WPARAM, LPARAM ); LRESULT OnWizNext( WPARAM, LPARAM ); LRESULT OnWizBack( WPARAM, LPARAM ); LRESULT OnReset( WPARAM, LPARAM ); LRESULT OnQueryCancel( WPARAM, LPARAM );
// Message handlers
LRESULT OnInitDialog( WPARAM, LPARAM ); LRESULT OnCommand( WPARAM, LPARAM ); LRESULT OnNotify( WPARAM, LPARAM ); LRESULT OnThreadNotification( WPARAM, LPARAM ); LRESULT OnEventNotification( WPARAM, LPARAM ); LRESULT OnQueryEndSession( WPARAM, LPARAM ); LRESULT OnSysColorChange( WPARAM, LPARAM );
public: static INT_PTR CALLBACK DialogProc( HWND hWnd, UINT nMsg, WPARAM wParam, LPARAM lParam ); };
#endif __COMPROG_H_INCLUDED
|