mirror of
https://github.com/reactos/reactos.git
synced 2025-07-28 09:22:47 +00:00
[NTUSER][PSDK] Implement Snap DockMoving setting (#8020)
SPI_SETDOCKMOVING allows you to turn off window snapping when moving a window with the mouse. The Win keys can still snap unless you turn everything off with SPI_SETWINARRANGING.
This commit is contained in:
parent
e326b06983
commit
5299f047e4
5 changed files with 39 additions and 15 deletions
|
@ -1494,6 +1494,14 @@ extern "C" {
|
|||
#define SPI_GETSCREENSAVESECURE 0x0076
|
||||
#define SPI_SETSCREENSAVESECURE 0x0077
|
||||
#endif
|
||||
#if(_WIN32_WINNT >= 0x0601) || defined(__REACTOS__)
|
||||
#define SPI_GETWINARRANGING 0x0082
|
||||
#define SPI_SETWINARRANGING 0x0083
|
||||
#define SPI_GETDRAGFROMMAXIMIZE 0x008C
|
||||
#define SPI_SETDRAGFROMMAXIMIZE 0x008D
|
||||
#define SPI_GETDOCKMOVING 0x0090
|
||||
#define SPI_SETDOCKMOVING 0x0091
|
||||
#endif
|
||||
#if(WINVER >= 0x0500)
|
||||
#define SPI_GETACTIVEWINDOWTRACKING 0x1000
|
||||
#define SPI_SETACTIVEWINDOWTRACKING 0x1001
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue