/////////////////////////////////////////////////////////////////////////////
// Name: platinfo.h
-// Purpose: documentation for wxPlatformInfo class
+// Purpose: interface of wxPlatformInfo
// Author: wxWidgets team
// RCS-ID: $Id$
// Licence: wxWindows license
@library{wxbase}
@category{FIXME}
- @seealso
- wxGetOSVersion, wxIsPlatformLittleEndian, wxIsPlatform64Bit, wxAppTraits
+ @see wxGetOSVersion(), wxIsPlatformLittleEndian(), wxIsPlatform64Bit(),
+ wxAppTraits
*/
class wxPlatformInfo : public wxObject
{
/**
Returns @true if the OS version is at least @c major.minor.
-
+
@see GetOSMajorVersion(), GetOSMinorVersion(),
CheckToolkitVersion()
*/
/**
Returns @true if the toolkit version is at least @c major.minor.
-
+
@see GetToolkitMajorVersion(),
GetToolkitMinorVersion(), CheckOSVersion()
*/
/**
Returns the run-time major version of the OS associated with this
wxPlatformInfo instance.
- See wxGetOsVersion for more info.
-
+ See wxGetOsVersion() for more info.
+
@see CheckOSVersion()
*/
int GetOSMajorVersion() const;
/**
Returns the run-time minor version of the OS associated with this
wxPlatformInfo instance.
- See wxGetOsVersion for more info.
-
+ See wxGetOsVersion() for more info.
+
@see CheckOSVersion()
*/
int GetOSMinorVersion() const;
Note that if GetPortId() returns wxPORT_BASE, then this value is zero (unless
externally modified with wxPlatformInfo::SetToolkitVersion); that is, no native toolkit is in use.
See wxAppTraits::GetToolkitVersion for more info.
-
+
@see CheckToolkitVersion()
*/
int GetToolkitMajorVersion() const;
Note that if GetPortId() returns wxPORT_BASE, then this value is zero (unless
externally modified with wxPlatformInfo::SetToolkitVersion); that is, no native toolkit is in use.
See wxAppTraits::GetToolkitVersion for more info.
-
+
@see CheckToolkitVersion()
*/
int GetToolkitMinorVersion() const;
*/
bool operator==(const wxPlatformInfo& t) const;
};
+