Android bug that should be fixed for 2.0.4

Just a minor thing, but a huge outcome. All the other jni related functions
already have those flags, but the nativeInit function lacks them - so it
might be stripped away.–
http://www.caveproductions.org

I have an application that needs to display some SDL-loaded stuff, and read some SDL keystrokes when the user presses the ?settings? button the main (non-SDL) window.

so I just make a new window :

window = SDL_CreateWindow(?Settings", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, dialog_w, dialog_h, SDL_WINDOW_SHOWN);

and make a small event loop that does the necessary polling.

this all works find, but I want this window to be front-most at all time until the settings are canceled or saved

is there a way to do this ?

I know that the Win32 EnableWindow() can be used for this, but I don’t know
that it would keep the subwindow on top alone.

Jonny DOn Friday, July 24, 2015, jeroen clarysse <jeroen.clarysse at telenet.be> wrote:

I have an application that needs to display some SDL-loaded stuff, and
read some SDL keystrokes when the user presses the ?settings? button the
main (non-SDL) window.

so I just make a new window :

    window = SDL_CreateWindow(?Settings", SDL_WINDOWPOS_UNDEFINED,

SDL_WINDOWPOS_UNDEFINED, dialog_w, dialog_h, SDL_WINDOW_SHOWN);

and make a small event loop that does the necessary polling.

this all works find, but I want this window to be front-most at all time
until the settings are canceled or saved

is there a way to do this ?


SDL mailing list
SDL at lists.libsdl.org <javascript:;>
http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org

I think users will still be able to tab between windows or via utilities; On macOSX "cmd ~? would cycle between windows as well> On 25 Jul 2015, at 01:35, Jonathan Dearborn wrote:

I know that the Win32 EnableWindow() can be used for this, but I don’t know that it would keep the subwindow on top alone.

Jonny D

On Friday, July 24, 2015, jeroen clarysse <@Jeroen_Clarysse> wrote:
I have an application that needs to display some SDL-loaded stuff, and read some SDL keystrokes when the user presses the ?settings? button the main (non-SDL) window.

so I just make a new window :

    window = SDL_CreateWindow(?Settings", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, dialog_w, dialog_h, SDL_WINDOW_SHOWN);

and make a small event loop that does the necessary polling.

this all works find, but I want this window to be front-most at all time until the settings are canceled or saved

is there a way to do this ?


SDL mailing list
SDL at lists.libsdl.org
http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org


SDL mailing list
SDL at lists.libsdl.org
http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org

what is the outcome please?
Will there be bugs if not patch it?