[osg-users] Problem with fullscreen hiding dialog window

2013-03-13 Thread David Sellin
Hi, I run my osg program in fullscreen mode by setting traits width height to the same as desktop, x and y position to 0 and disabling window decoration. This prevents my windows file input dialog to show (it opens behind the osg window and I need to alt+tab to it). It shows at top level when

Re: [osg-users] Problem with fullscreen hiding dialog window

2013-03-13 Thread Trajce Nikolov NICK
There should be a flag for your Dialog to set it always on top or something like this Nick On Wed, Mar 13, 2013 at 11:19 AM, David Sellin davse...@student.liu.sewrote: Hi, I run my osg program in fullscreen mode by setting traits width height to the same as desktop, x and y position to 0

Re: [osg-users] Problem with fullscreen hiding dialog window

2013-03-13 Thread David Sellin
It doesn't seem to be a flag for that, not that I can see. But I don't have any experince of the windows api. -- Read this topic online here: http://forum.openscenegraph.org/viewtopic.php?p=53080#53080 ___ osg-users mailing list

Re: [osg-users] Problem with fullscreen hiding dialog window

2013-03-13 Thread Trajce Nikolov NICK
What do you use for your Dialog code? Can you pass the code snippet of the dialog creation? On Wed, Mar 13, 2013 at 3:17 PM, David Sellin davse...@student.liu.sewrote: It doesn't seem to be a flag for that, not that I can see. But I don't have any experince of the windows api.

Re: [osg-users] Problem with fullscreen hiding dialog window

2013-03-13 Thread David Sellin
Here's the code which is basically the same as in the link in my initial post, slightly modified. Code: // Indices of file types #define INDEX_COLLADA 1 #define INDEX_OPENSCENEGRAPH 2 #define INDEX_KEYHOLEMARKUPLANGUAGE 3 #define INDEX_ALLFILES 4 #define FILE_TYPE_MODELS 1 #define

Re: [osg-users] Problem with fullscreen hiding dialog window

2013-03-13 Thread Trajce Nikolov NICK
Something like this somewhere on your code http://www.codeguru.com/cpp/w-d/dislog/article.php/c1857/Making-a-Window-Always-On-Top.htm Look for HWND_TOPMOST in MSDN On Wed, Mar 13, 2013 at 3:45 PM, David Sellin davse...@student.liu.sewrote: Here's the code which is basically the same as in the