///////////////////////////////////////////////////////////////////////////////
-// Name: msw/toplevel.cpp
+// Name: src/msw/toplevel.cpp
// Purpose: implements wxTopLevelWindow for MSW
// Author: Vadim Zeitlin
// Modified by:
if ( style & wxMAXIMIZE_BOX )
msflags |= WS_MAXIMIZEBOX;
-#ifndef __WXWINCE__
+#ifndef __WXWINCE__
if ( style & wxSYSTEM_MENU )
msflags |= WS_SYSMENU;
#endif
}
SubclassWin(m_hWnd);
-
+
#ifdef __SMARTPHONE__
// Work around title non-display glitch
Show(false);
-#endif
+#endif
return true;
#endif // __WXMICROWIN__/!__WXMICROWIN__
// focus rectangles) work under Win2k+
if ( ret )
{
- MSWUpdateUIState();
+ MSWUpdateUIState(UIS_INITIALIZE);
}
// Note: if we include PocketPC in this test, dialogs can fail to show up,
// wxTopLevelWindowMSW misc
// ----------------------------------------------------------------------------
+void wxTopLevelWindowMSW::SetTitle( const wxString& title)
+{
+ SetLabel(title);
+}
+
+wxString wxTopLevelWindowMSW::GetTitle() const
+{
+ return GetLabel();
+}
+
void wxTopLevelWindowMSW::SetIcon(const wxIcon& icon)
{
SetIcons( wxIconBundle( icon ) );
return ms_hwnd;
}
-
-