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.
|
|
//-----------------------------------------------------------------------------
//
// File: _progress.h
// Copyright (C) 1994-1997 Microsoft Corporation
// All rights reserved.
//
//
//
//-----------------------------------------------------------------------------
#ifndef ESPUTIL__PROGRESS_H
#define ESPUTIL__PROGRESS_H
class CProgressDialog; class CInputBlocker;
#pragma warning(disable:4251)
class LTAPIENTRY CProgressDisplay : public CProgressiveObject { public: CProgressDisplay(CWnd *pParent = NULL);
void SetDelay(clock_t); void DisplayDialog(BOOL);
void SetProgressIndicator(UINT uiPercentage);
void SetTitle(const CLString &); void SetTitle(HINSTANCE, DWORD); ~CProgressDisplay();
virtual void SetCurrentTask(CLString const & strTask); virtual void SetDescriptionString(CLString const & strDescription);
private: CProgressDialog *m_pDialog; UINT m_uiLastPercentage; clock_t m_ctLastTime; clock_t m_ctDisplayTime; BOOL m_fDisplay; BOOL m_fWaitCursor; SmartPtr<CInputBlocker> m_spBlocker;
CLString m_strTitle; CLString m_strDescription;
CWnd *m_pParent; };
#pragma warning(default:4251)
#endif
|