mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 13:11:22 +00:00

[NTUSER] - Implement SPI_SETCURSORS case for SystemParametersInfoA/W. According to MSDN, it updates the system mouse cursors by the ones provided by user (can be set via main.cpl). It does not use any parameters from SystemParametersInfo: 1. First, get the cursor path from user defined values in registry via win32k!RegReadUserSetting. 2. Then load the cursor handle from the specified cursor via user32!LoadImageW called from the aprropriate win32k callback via KeUserModeCallback. 3. Set received handle for an appropriate resource ID via win32k!NtUserSetSystemCursor. Do this for each system defined cursor. - NEW: Call an internal handler for SPI_SETCURSORS from win32k!SpiUpdatePerUserSystemParameters, to reload user-defined cursors from Registry after reboot. This is called from WinLogon at each startup. - Implement co_IntLoadImage callback for user32!LoadImageW. Add an appropriate part in user32 also. - Rewrite co_IntSetupDefaultCursors callback, responsible for default (system) cursors loading. Call a callback to user32!LoadImageW, to load each system cursor, and then use win32k!NtUserSetSystemCursor to set each of them as the current system cursor. - Refactor some other several cursor/icon functions: NtUserFindExistingCursorIcon, NtUserSetSystemCursor and DefWndHandleSetCursor. - Handle HTHELP case in win32k!GetNCHitEx and user32!CreateDialogIndirectA/W, which is responsible for help button class. Set an appropriate cursor for this case in DefWndHandleSetCursor (DefWindowProc!WM_SETCURSOR message). - Remove bogus WM_SETCURSOR handing from win32k!DesktopWindowProc and user32!DesktopWndProcW, since it does not load a proper cursor at all, only default IDC_ARROW. It is already handled properly in win32k!IntDefWindowProc. - Set correct GreSetPointerShape flags for animated mouse cursors. - NEW: Add the system timer for animated mouse cursors where an each frame is enumerated separately and call it from win32k!UserSetCursor. This allows *.ani cursors to actually animate. [USER32] - Add/fix user mode parts of LoadImage and SetDefaultCursors callbacks. Don't try to load system cursor scheme, it should be done in main.cpl instead. - Handle animated mouse cursors (*.ani). Load them correcly in user32!CURSORICON_LoadFromFileW. We already have CURSORICON_GetCursorDataFromANI, which handles it properly. Also set the correct flags for CURSORDATA structure and enable CURSORF_ACON flag on cursor creation in case cursor is animated. - NEW: Load user-defined cursors from HKCU\Control Panel\Cursors Reigstry key. Call it from user32!ClientThreadSetup, to load a cursors at each startup. - NEW: Add a small workaround to user32!LoadCursorW: try to find and load current cursor from Registry set by user first, in case it is set. Only in case it was not found, continue normal execution: load default system cursor, as the function should do. This allows to properly load the correct cursor for all UI elements. Remaining bugs/issues: - Animated cursors always have a bit wrong position compared to Windows. However it's absolutely correct for standart cursors (with a *.cur extension). - Sometimes the animation becomes too fast (perhaps because of a recusrsive win32k!IntSetTimer calls, need it some another condition to kill the timer?). - In case of changing *.cur -> *.ani, sometimes the animation is continuing infinitely on some UI elements (or in the window where the previous *.ani cursor was initially set), even after cursor is changed. Needs to restart an app/explorer/etc. to avoid the problem. However, this does not occur when changing *.cur -> *.cur, *.cur -> *.ani and *.ani -> *.ani. Again, it seems to require one more condition to kill the timer. CORE-14165, CORE-14166
47 lines
1.6 KiB
C
47 lines
1.6 KiB
C
#pragma once
|
|
|
|
typedef struct _TIMER
|
|
{
|
|
HEAD head;
|
|
LIST_ENTRY ptmrList;
|
|
PTHREADINFO pti;
|
|
PWND pWnd; // hWnd
|
|
UINT_PTR nID; // Specifies a nonzero timer identifier.
|
|
INT cmsCountdown; // uElapse
|
|
INT cmsRate; // uElapse
|
|
FLONG flags;
|
|
TIMERPROC pfn; // lpTimerFunc
|
|
} TIMER, *PTIMER;
|
|
|
|
//
|
|
// Timer structure flags.
|
|
//
|
|
#define TMRF_READY 0x0001
|
|
#define TMRF_SYSTEM 0x0002
|
|
#define TMRF_RIT 0x0004
|
|
#define TMRF_INIT 0x0008
|
|
#define TMRF_ONESHOT 0x0010
|
|
#define TMRF_WAITING 0x0020
|
|
#define TMRF_TIFROMWND 0x0040
|
|
|
|
#define ID_EVENT_SYSTIMER_MOUSEHOVER ID_TME_TIMER
|
|
#define ID_EVENT_SYSTIMER_ANIMATECURSOR (0xFFF9)
|
|
#define ID_EVENT_SYSTIMER_FLASHWIN (0xFFF8)
|
|
#define ID_EVENT_SYSTIMER_TRACKWIN (0xFFF7)
|
|
#define ID_EVENT_SYSTIMER_ANIMATEDFADE (0xFFF6)
|
|
#define ID_EVENT_SYSTIMER_INVALIDATEDCES (0xFFF5)
|
|
|
|
extern PKTIMER MasterTimer;
|
|
|
|
CODE_SEG("INIT") NTSTATUS NTAPI InitTimerImpl(VOID);
|
|
BOOL FASTCALL DestroyTimersForThread(PTHREADINFO pti);
|
|
BOOL FASTCALL DestroyTimersForWindow(PTHREADINFO pti, PWND Window);
|
|
BOOL FASTCALL IntKillTimer(PWND Window, UINT_PTR IDEvent, BOOL SystemTimer);
|
|
UINT_PTR FASTCALL IntSetTimer(PWND Window, UINT_PTR IDEvent, UINT Elapse, TIMERPROC TimerFunc, INT Type);
|
|
PTIMER FASTCALL FindSystemTimer(PMSG);
|
|
BOOL FASTCALL ValidateTimerCallback(PTHREADINFO,LPARAM);
|
|
VOID CALLBACK SystemTimerProc(HWND,UINT,UINT_PTR,DWORD);
|
|
UINT_PTR FASTCALL SystemTimerSet(PWND,UINT_PTR,UINT,TIMERPROC);
|
|
BOOL FASTCALL PostTimerMessages(PWND);
|
|
VOID FASTCALL ProcessTimers(VOID);
|
|
VOID FASTCALL StartTheTimers(VOID);
|