Mercurial > sdl-ios-xcode
diff src/video/gem/SDL_gemevents.c @ 736:028e03e273c8
Use new C2P routine + corrections for iconification window
author | Patrice Mandin <patmandin@gmail.com> |
---|---|
date | Wed, 12 Nov 2003 18:49:29 +0000 |
parents | 189a6a3416c7 |
children | b8d311d90021 |
line wrap: on
line diff
--- a/src/video/gem/SDL_gemevents.c Wed Nov 12 18:46:48 2003 +0000 +++ b/src/video/gem/SDL_gemevents.c Wed Nov 12 18:49:29 2003 +0000 @@ -219,6 +219,11 @@ /* Send an internal deactivate event */ SDL_PrivateAppActive(0, SDL_APPACTIVE|SDL_APPINPUTFOCUS); } + /* Update window title */ + if (GEM_refresh_name && GEM_icon_name) { + wind_set(GEM_handle,WF_NAME,(short)(((unsigned long)GEM_icon_name)>>16),(short)(((unsigned long)GEM_icon_name) & 0xffff),0,0); + GEM_refresh_name = SDL_FALSE; + } break; case WM_UNICONIFY: wind_set(message[3],WF_UNICONIFY,message[4],message[5],message[6],message[7]); @@ -227,6 +232,10 @@ /* Send an internal activate event */ SDL_PrivateAppActive(1, SDL_APPACTIVE); } + if (GEM_refresh_name && GEM_title_name) { + wind_set(GEM_handle,WF_NAME,(short)(((unsigned long)GEM_title_name)>>16),(short)(((unsigned long)GEM_title_name) & 0xffff),0,0); + GEM_refresh_name = SDL_FALSE; + } break; case WM_SIZED: wind_set (message[3], WF_CURRXYWH, message[4], message[5], message[6], message[7]);