/**
@class wxPlatformInfo
@wxheader{platinfo.h}
-
+
This class holds informations about the operating system and the toolkit that
the application
is running under and some basic architecture info of the machine where it's
running.
-
+
@library{wxbase}
@category{FIXME}
-
+
@seealso
wxGetOSVersion, wxIsPlatformLittleEndian, wxIsPlatform64Bit, wxAppTraits
*/
Initializes the object using given values.
*/
wxPlatformInfo();
- wxPlatformInfo(wxPortId pid = wxPORT_UNKNOWN,
- int tkMajor = -1,
- int tkMinor = -1,
- wxOperatingSystemId id = wxOS_UNKNOWN,
- int osMajor = -1,
- int osMinor = -1,
- wxArchitecture arch = wxARCH_INVALID,
- wxEndianness endian = wxENDIAN_INVALID);
+ wxPlatformInfo(wxPortId pid = wxPORT_UNKNOWN,
+ int tkMajor = -1,
+ int tkMinor = -1,
+ wxOperatingSystemId id = wxOS_UNKNOWN,
+ int osMajor = -1,
+ int osMinor = -1,
+ wxArchitecture arch = wxARCH_INVALID,
+ wxEndianness endian = wxENDIAN_INVALID);
//@}
/**
Returns the name for the architecture of this wxPlatformInfo instance.
*/
static wxString GetArchName(wxArchitecture arch);
- wxString GetArchName();
+ wxString GetArchName();
//@}
/**
Returns the endianness ID of this wxPlatformInfo instance.
*/
static wxEndianness GetEndianness(const wxString& end);
- wxEndianness GetEndianness();
+ wxEndianness GetEndianness();
//@}
//@{
Returns the name for the endianness of this wxPlatformInfo instance.
*/
static wxString GetEndiannessName(wxEndianness end);
- wxString GetEndiannessName();
+ wxString GetEndiannessName();
//@}
/**
wxPlatformInfo instance.
*/
static wxString GetOperatingSystemFamilyName(wxOperatingSystemId os);
- wxString GetOperatingSystemFamilyName();
+ wxString GetOperatingSystemFamilyName();
//@}
//@{
Returns the operating system ID of this wxPlatformInfo instance.
*/
static wxOperatingSystemId GetOperatingSystemId(const wxString& name);
- wxOperatingSystemId GetOperatingSystemId();
+ wxOperatingSystemId GetOperatingSystemId();
//@}
//@{
instance.
*/
static wxString GetOperatingSystemIdName(wxOperatingSystemId os);
- wxString GetOperatingSystemIdName();
+ wxString GetOperatingSystemIdName();
//@}
//@{
Returns the wxWidgets port ID associated with this wxPlatformInfo instance.
*/
static wxPortId GetPortId(const wxString& portname);
- wxPortId GetPortId();
+ wxPortId GetPortId();
//@}
//@{
instance.
*/
static wxString GetPortIdName(wxPortId port, bool usingUniversal);
- wxString GetPortIdName();
+ wxString GetPortIdName();
//@}
//@{
*/
static wxString GetPortIdShortName(wxPortId port,
bool usingUniversal);
- wxString GetPortIdShortName();
+ wxString GetPortIdShortName();
//@}
/**