I don't use wxWidgets or Gtk (long live Qt / KDE!) But...a cursory look at the source for the wxWidgets generic dialog code reveals a mention of wxSTAY_ON_TOP in wxDialogStyle:
http://trac.wxwidgets.org/browser/wxWidgets/trunk/src/common/dlgcmn.cpp#L57
The documentation states that wxDEFAULT_DIALOG_STYLE is "Equivalent to a combination of wxCAPTION, wxCLOSE_BOX and wxSYSTEM_MENU (the last one is not used under Unix)". But given the omission of other options like wxNO_3D, wxDIALOG_NO_PARENT, etc. I'm going to make a wild guess that the documentation is not up to date, and that the wxSTAY_ON_TOP flag may also be applied by default to all dialogs.
So for each of your modeless dialogs, you could try something like this after they are created:
long style = iShouldBeUsingQtDialog->GetWindowStyleFlag();
if (style & wxSTAY_ON_TOP) {
// set breakpoint here to see if it's set, because some flags
// can't be changed after window creation (hence just because
// this doesn't work doesn't mean it doesn't have the style)
iShouldBeUsingQtDialog->SetWindowStyleFlag(style & ~wxSTAY_ON_TOP);
}
Maybe that will help...
UPDATE:
Okay, since the above didn't do anything, I installed wxWidgets and Gnome and experimented a bit. It seems that this behavior comes from a difference in how Gnome handles windows with different "type hints"...it puts them into their own z-index groupings:
http://developer.gnome.org/gdk/stable/gdk-Windows.html#GdkWindowTypeHint
The dialog is created with GDK_WINDOW_TYPE_HINT_DIALOG while your other window is most likely created with GDK_WINDOW_TYPE_HINT_NORMAL. The point where this decision is made is in gtk/toplevel.cpp and it's being cued by the fact that the "extra" style flags contain wxTOPLEVEL_EX_DIALOG:
http://trac.wxwidgets.org/browser/wxWidgets/trunk/src/gtk/toplevel.cpp#L543
Those are the only two calls to gtk_window_set_type_hint in the wxWidgets GTK codebase, except for in the splash screen code. So changing the "extra" style bits after the fact isn't going to help. (The "correct" solution would be to patch wxWidgets so that adjusting wxTOPLEVEL_EX_DIALOG in the extra styles would do the proper adjustment to the window type hint.)
You can't use the wxDialog class without running through its constructor, which calls the non-virtual method wxDialog::Create, which sets the extra style to wxTOPLEVEL_EX_DIALOG and then goes directly to top level window creation:
http://trac.wxwidgets.org/browser/wxWidgets/trunk/src/gtk/dialog.cpp#L53
So I guess you have the option of trying this, which works if you haven't shown the dialog window yet:
#ifdef __WXGTK__
gtk_window_set_type_hint(
GTK_WINDOW(iShouldBeUsingQtDialog->GetHandle()),
GDK_WINDOW_TYPE_HINT_NORMAL);
#endif
...and if you have shown the dialog already, you need to use this for it to work:
#ifdef __WXGTK__
gdk_window_set_type_hint(
iShouldBeUsingQtDialog->GetHandle()->window,
GDK_WINDOW_TYPE_HINT_NORMAL);
#endif
Both cases will require you to add an include file into your source:
#ifdef __WXGTK__
#include "gtk/gtkwindow.h"
#endif
...and you'll have to update your build to find the GTK includes. On the command line for G++ I tried this and it worked:
`pkg-config --cflags --libs gtk+-2.0`
How 'bout THAT? :)