KolibriOS window styles sorted by value, WS_NO_DRAW and WINDOW_BORDER_SIZE added

This commit is contained in:
2020-12-27 02:00:40 +03:00
parent e4a5b1e0a6
commit 66f8410294
2 changed files with 11 additions and 11 deletions

View File

@@ -245,15 +245,18 @@ type
const
INVALID_HANDLE = 0;
WINDOW_BORDER_SIZE = 5; // defined by kernel
// Window styles
WS_SKINNED_FIXED = $4000000;
WS_SKINNED_SIZABLE = $3000000;
WS_FIXED = $0000000;
WS_SIZABLE = $2000000;
WS_FIXED = $00000000;
WS_NO_DRAW = $01000000;
WS_SIZABLE = $02000000;
WS_SKINNED_SIZABLE = $03000000;
WS_SKINNED_FIXED = $04000000;
WS_CAPTION = $10000000;
WS_CLIENT_COORDS = $20000000;
WS_TRANSPARENT_FILL = $40000000;
WS_GRADIENT_FILL = $80000000;
WS_CLIENT_COORDS = $20000000;
WS_CAPTION = $10000000;
// Caption styles
CAPTION_MOVABLE = $00000000;