m_font = wxSystemSettings::GetSystemFont(wxSYS_DEFAULT_GUI_FONT);
#endif // __WXMSW__
+ // the colours/fonts are default for now
+ m_hasBgCol =
+ m_hasFgCol =
+ m_hasFont = FALSE;
+
// no style bits
m_exStyle =
m_windowStyle = 0;
m_backgroundColour = colour;
+ m_hasBgCol = TRUE;
+
return TRUE;
}
m_foregroundColour = colour;
+ m_hasFgCol = TRUE;
+
return TRUE;
}
m_font = fontOk;
+ m_hasFont = TRUE;
+
return TRUE;
}
wxMessageBox(wxString::Format(
_T(
- " wxWindows Library (%s port)\nVersion %u.%u.%u, compiled at %s %s\n Copyright (c) 1995-2001 wxWindows team"
+ " wxWindows Library (%s port)\nVersion %u.%u.%u%s, compiled at %s %s\n Copyright (c) 1995-2001 wxWindows team"
),
port.c_str(),
wxMAJOR_VERSION,
wxMINOR_VERSION,
wxRELEASE_NUMBER,
- __DATE__,
- __TIME__
+#if wxUSE_UNICODE
+ L" (Unicode)",
+#else
+ "",
+#endif
+ __TDATE__,
+ __TTIME__
),
_T("wxWindows information"),
wxICON_INFORMATION | wxOK,