mirror of https://github.com/encounter/SDL.git
Implemented SDL_WINDOW_SKIP_TASKBAR on Windows
This commit is contained in:
parent
a725efa4bc
commit
0a75192d85
|
@ -91,7 +91,7 @@ WIN_SetWindowPositionInternal(_THIS, SDL_Window * window, UINT flags)
|
||||||
int w, h;
|
int w, h;
|
||||||
|
|
||||||
/* Figure out what the window area will be */
|
/* Figure out what the window area will be */
|
||||||
if (SDL_ShouldAllowTopmost() && ((window->flags & (SDL_WINDOW_FULLSCREEN|SDL_WINDOW_INPUT_FOCUS)) == (SDL_WINDOW_FULLSCREEN|SDL_WINDOW_INPUT_FOCUS) || window->flags & SDL_WINDOW_ALWAYS_ON_TOP)) {
|
if (SDL_ShouldAllowTopmost() && ((window->flags & (SDL_WINDOW_FULLSCREEN|SDL_WINDOW_INPUT_FOCUS)) == (SDL_WINDOW_FULLSCREEN|SDL_WINDOW_INPUT_FOCUS) || (window->flags & SDL_WINDOW_ALWAYS_ON_TOP))) {
|
||||||
top = HWND_TOPMOST;
|
top = HWND_TOPMOST;
|
||||||
} else {
|
} else {
|
||||||
top = HWND_NOTOPMOST;
|
top = HWND_NOTOPMOST;
|
||||||
|
@ -268,12 +268,16 @@ SetupWindowData(_THIS, SDL_Window * window, HWND hwnd, SDL_bool created)
|
||||||
int
|
int
|
||||||
WIN_CreateWindow(_THIS, SDL_Window * window)
|
WIN_CreateWindow(_THIS, SDL_Window * window)
|
||||||
{
|
{
|
||||||
HWND hwnd;
|
HWND hwnd, parent = NULL;
|
||||||
RECT rect;
|
RECT rect;
|
||||||
DWORD style = STYLE_BASIC;
|
DWORD style = STYLE_BASIC;
|
||||||
int x, y;
|
int x, y;
|
||||||
int w, h;
|
int w, h;
|
||||||
|
|
||||||
|
if (window->flags & SDL_WINDOW_SKIP_TASKBAR) {
|
||||||
|
parent = CreateWindow(SDL_Appname, TEXT(""), STYLE_BASIC, 0, 0, 32, 32, NULL, NULL, SDL_Instance, NULL);
|
||||||
|
}
|
||||||
|
|
||||||
style |= GetWindowStyle(window);
|
style |= GetWindowStyle(window);
|
||||||
|
|
||||||
/* Figure out what the window area will be */
|
/* Figure out what the window area will be */
|
||||||
|
@ -288,7 +292,7 @@ WIN_CreateWindow(_THIS, SDL_Window * window)
|
||||||
h = (rect.bottom - rect.top);
|
h = (rect.bottom - rect.top);
|
||||||
|
|
||||||
hwnd =
|
hwnd =
|
||||||
CreateWindow(SDL_Appname, TEXT(""), style, x, y, w, h, NULL, NULL,
|
CreateWindow(SDL_Appname, TEXT(""), style, x, y, w, h, parent, NULL,
|
||||||
SDL_Instance, NULL);
|
SDL_Instance, NULL);
|
||||||
if (!hwnd) {
|
if (!hwnd) {
|
||||||
return WIN_SetError("Couldn't create window");
|
return WIN_SetError("Couldn't create window");
|
||||||
|
|
Loading…
Reference in New Issue