// headers
// ----------------------------------------------------------------------------
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
- #pragma implementation "toplevel.h"
-#endif
-
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
}
#endif
- // for some reason we need to manually send ourselves this message as
- // otherwise the mnemonics are always shown -- even if they're configured
- // to be hidden until "Alt" is pressed in the control panel
- //
- // this could indicate a bug somewhere else but for now this is the only
- // fix we have
+ // for standard dialogs the dialog manager generates WM_CHANGEUISTATE
+ // itself but for custom windows we have to do it ourselves in order to
+ // make the keyboard indicators (such as underlines for accelerators and
+ // focus rectangles) work under Win2k+
if ( ret )
{
- ::SendMessage
- (
- GetHwnd(),
- WM_UPDATEUISTATE,
- MAKEWPARAM(UIS_INITIALIZE, UISF_HIDEFOCUS | UISF_HIDEACCEL),
- 0
- );
+ MSWUpdateUIState(UIS_INITIALIZE);
}
// Note: if we include PocketPC in this test, dialogs can fail to show up,
// we can't maximize the hidden frame because it shows it as well, so
// just remember that we should do it later in this case
m_maximizeOnShow = maximize;
+
+ // after calling Maximize() the client code expects to get the frame
+ // "real" size and doesn't want to know that, because of implementation
+ // details, the frame isn't really maximized yet but will be only once
+ // it's shown, so return our size as it will be then in this case
+
+ // we don't know which display we're on yet so use the default one
+ SetSize(wxGetClientDisplayRect().GetSize());
}
}
#ifdef __WXWINCE__
return false;
#else
- return ::IsZoomed(GetHwnd()) != 0;
+ return m_maximizeOnShow || ::IsZoomed(GetHwnd()) != 0;
#endif
}
void wxTopLevelWindowMSW::RequestUserAttention(int flags)
{
- // check if we can use FlashWindowEx(): unfortunately an explicit test for
- // FLASHW_STOP, for example, doesn't work because MSVC6 headers do #define
- // it but don't provide FlashWindowEx() declaration
-#if (WINVER >= 0x0500 && (defined FLASHW_STOP))
+ // check if we can use FlashWindowEx(): unfortunately a simple test for
+ // FLASHW_STOP doesn't work because MSVC6 headers do #define it but don't
+ // provide FlashWindowEx() declaration, so try to detect whether we have
+ // real headers for WINVER 0x0500 by checking for existence of a symbol not
+ // declated in MSVC6 header
+#if defined(FLASHW_STOP) && defined(VK_XBUTTON1)
// available in the headers, check if it is supported by the system
typedef BOOL (WINAPI *FlashWindowEx_t)(FLASHWINFO *pfwi);
FlashWindowEx_t s_pfnFlashWindowEx = NULL;