[MSPAINT][SDK] Add <ui/CWaitCursor.h> (#5680)

CORE-19094
This commit is contained in:
Katayama Hirofumi MZ 2023-09-12 05:39:08 +09:00 committed by GitHub
parent e13ebd44c6
commit ea5d2c5f7a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 3 deletions

View file

@ -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 */

View file

@ -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);
}