Applied wxPoem, wxSystemSettings, sizing, install doc patches

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13941 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2002-01-31 21:58:34 +00:00
parent 73b26a1c3b
commit 9fce8d2eee
7 changed files with 86 additions and 84 deletions

View File

@@ -130,6 +130,14 @@ enum wxSystemFeature
wxSYS_CAN_ICONIZE_FRAME
};
// values for wxSystemSettings::GetString
enum wxSystemString
{
wxSYS_DECIMAL_SEPARATOR = 1,
wxSYS_LIST_SEPARATOR,
wxSYS_LEADING_ZERO
};
// ----------------------------------------------------------------------------
// wxSystemSettingsNative: defines the API for wxSystemSettings class
// ----------------------------------------------------------------------------
@@ -155,6 +163,12 @@ public:
// return true if the port has certain feature
static bool HasFeature(wxSystemFeature index);
// Windows-only for now
#ifdef __WXMSW__
// Get a system string, e. g. decimal separator
static wxString GetString(int index);
#endif
};
// ----------------------------------------------------------------------------