mirror of
https://github.com/reactos/reactos.git
synced 2025-04-06 05:34:22 +00:00
parent
e13ebd44c6
commit
ea5d2c5f7a
2 changed files with 7 additions and 3 deletions
|
@ -50,7 +50,7 @@
|
|||
#include "toolsmodel.h"
|
||||
#include "winproc.h"
|
||||
#include "dialogs.h"
|
||||
#include "waitcursor.h"
|
||||
#include <ui/CWaitCursor.h>
|
||||
#include "globalvar.h"
|
||||
|
||||
#endif /* _MSPAINT_H */
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* PROJECT: PAINT for ReactOS
|
||||
* PROJECT: ReactOS headers
|
||||
* LICENSE: LGPL-2.0-or-later (https://spdx.org/licenses/LGPL-2.0-or-later)
|
||||
* PURPOSE: Wait cursor management
|
||||
* COPYRIGHT: Copyright 2023 Katayama Hirofumi MZ <katayama.hirofumi.mz@gmail.com>
|
||||
|
@ -31,14 +31,18 @@ public:
|
|||
s_hOldCursor = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
CWaitCursor(const CWaitCursor&) = delete;
|
||||
CWaitCursor& operator=(const CWaitCursor&) = delete;
|
||||
void *operator new(size_t) = delete;
|
||||
void operator delete(void*) = delete;
|
||||
|
||||
static BOOL IsWaiting()
|
||||
{
|
||||
return s_nLock > 0;
|
||||
}
|
||||
static void KeepWait()
|
||||
|
||||
static void Restore()
|
||||
{
|
||||
::SetCursor(s_hWaitCursor);
|
||||
}
|
Loading…
Reference in a new issue