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.
38 lines
940 B
38 lines
940 B
/*******************************************************************************
|
|
*
|
|
* (C) COPYRIGHT MICROSOFT CORPORATION, 1998
|
|
*
|
|
* TITLE: WAITCURS.H
|
|
*
|
|
* VERSION: 1.0
|
|
*
|
|
* AUTHOR: ShaunIv
|
|
*
|
|
* DATE: 5/3/1999
|
|
*
|
|
* DESCRIPTION: Change the cursor to an hourglass during lengthy operations. To
|
|
* use, just put a CWaitCursor wc; in your function. It will restore
|
|
* the cursor when the class is destroyed (usually when the function
|
|
* is exited.
|
|
*
|
|
*******************************************************************************/
|
|
#ifndef __WAITCURS_H_INCLUDED
|
|
#define __WAITCURS_H_INCLUDED
|
|
|
|
class CWaitCursor
|
|
{
|
|
private:
|
|
HCURSOR m_hCurOld;
|
|
public:
|
|
CWaitCursor(void)
|
|
{
|
|
m_hCurOld = SetCursor( LoadCursor( NULL, IDC_WAIT ) );
|
|
}
|
|
~CWaitCursor(void)
|
|
{
|
|
SetCursor(m_hCurOld);
|
|
}
|
|
};
|
|
|
|
#endif
|
|
|