added interface headers with latest discussed changes
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52381 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
246
interface/platinfo.h
Normal file
246
interface/platinfo.h
Normal file
@@ -0,0 +1,246 @@
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Name: platinfo.h
|
||||
// Purpose: documentation for wxPlatformInfo class
|
||||
// Author: wxWidgets team
|
||||
// RCS-ID: $Id$
|
||||
// Licence: wxWindows license
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
/**
|
||||
@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
|
||||
*/
|
||||
class wxPlatformInfo : public wxObject
|
||||
{
|
||||
public:
|
||||
//@{
|
||||
/**
|
||||
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);
|
||||
//@}
|
||||
|
||||
/**
|
||||
Returns @true if the OS version is at least @c major.minor.
|
||||
|
||||
@sa GetOSMajorVersion(), GetOSMinorVersion(),
|
||||
CheckToolkitVersion()
|
||||
*/
|
||||
bool CheckOSVersion(int major, int minor);
|
||||
|
||||
/**
|
||||
Returns @true if the toolkit version is at least @c major.minor.
|
||||
|
||||
@sa GetToolkitMajorVersion(),
|
||||
GetToolkitMinorVersion(),
|
||||
CheckOSVersion()
|
||||
*/
|
||||
bool CheckToolkitVersion(int major, int minor);
|
||||
|
||||
/**
|
||||
Returns the global wxPlatformInfo object, initialized with the values for the
|
||||
currently running platform.
|
||||
*/
|
||||
#define static const wxPlatformInfo Get() /* implementation is private */
|
||||
|
||||
/**
|
||||
Converts the given string to a wxArchitecture enum value or to
|
||||
wxARCH_INVALID if the given string is not a valid architecture string
|
||||
(i.e. does not contain nor @c 32 nor @c 64 strings).
|
||||
*/
|
||||
static wxArchitecture GetArch(const wxString& arch);
|
||||
|
||||
//@{
|
||||
/**
|
||||
Returns the name for the architecture of this wxPlatformInfo instance.
|
||||
*/
|
||||
static wxString GetArchName(wxArchitecture arch);
|
||||
wxString GetArchName();
|
||||
//@}
|
||||
|
||||
/**
|
||||
Returns the architecture ID of this wxPlatformInfo instance.
|
||||
*/
|
||||
wxArchitecture GetArchitecture();
|
||||
|
||||
//@{
|
||||
/**
|
||||
Returns the endianness ID of this wxPlatformInfo instance.
|
||||
*/
|
||||
static wxEndianness GetEndianness(const wxString& end);
|
||||
wxEndianness GetEndianness();
|
||||
//@}
|
||||
|
||||
//@{
|
||||
/**
|
||||
Returns the name for the endianness of this wxPlatformInfo instance.
|
||||
*/
|
||||
static wxString GetEndiannessName(wxEndianness end);
|
||||
wxString GetEndiannessName();
|
||||
//@}
|
||||
|
||||
/**
|
||||
Returns the run-time major version of the OS associated with this
|
||||
wxPlatformInfo instance.
|
||||
See wxGetOsVersion for more info.
|
||||
|
||||
@sa CheckOSVersion()
|
||||
*/
|
||||
int GetOSMajorVersion();
|
||||
|
||||
/**
|
||||
Returns the run-time minor version of the OS associated with this
|
||||
wxPlatformInfo instance.
|
||||
See wxGetOsVersion for more info.
|
||||
|
||||
@sa CheckOSVersion()
|
||||
*/
|
||||
int GetOSMinorVersion();
|
||||
|
||||
//@{
|
||||
/**
|
||||
Returns the operating system family name of the OS associated with this
|
||||
wxPlatformInfo instance.
|
||||
*/
|
||||
static wxString GetOperatingSystemFamilyName(wxOperatingSystemId os);
|
||||
wxString GetOperatingSystemFamilyName();
|
||||
//@}
|
||||
|
||||
//@{
|
||||
/**
|
||||
Returns the operating system ID of this wxPlatformInfo instance.
|
||||
*/
|
||||
static wxOperatingSystemId GetOperatingSystemId(const wxString& name);
|
||||
wxOperatingSystemId GetOperatingSystemId();
|
||||
//@}
|
||||
|
||||
//@{
|
||||
/**
|
||||
Returns the operating system name of the OS associated with this wxPlatformInfo
|
||||
instance.
|
||||
*/
|
||||
static wxString GetOperatingSystemIdName(wxOperatingSystemId os);
|
||||
wxString GetOperatingSystemIdName();
|
||||
//@}
|
||||
|
||||
//@{
|
||||
/**
|
||||
Returns the wxWidgets port ID associated with this wxPlatformInfo instance.
|
||||
*/
|
||||
static wxPortId GetPortId(const wxString& portname);
|
||||
wxPortId GetPortId();
|
||||
//@}
|
||||
|
||||
//@{
|
||||
/**
|
||||
Returns the name of the wxWidgets port ID associated with this wxPlatformInfo
|
||||
instance.
|
||||
*/
|
||||
static wxString GetPortIdName(wxPortId port, bool usingUniversal);
|
||||
wxString GetPortIdName();
|
||||
//@}
|
||||
|
||||
//@{
|
||||
/**
|
||||
Returns the short name of the wxWidgets port ID associated with this
|
||||
wxPlatformInfo instance.
|
||||
*/
|
||||
static wxString GetPortIdShortName(wxPortId port,
|
||||
bool usingUniversal);
|
||||
wxString GetPortIdShortName();
|
||||
//@}
|
||||
|
||||
/**
|
||||
Returns the run-time major version of the toolkit associated with this
|
||||
wxPlatformInfo instance.
|
||||
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.
|
||||
|
||||
@sa CheckToolkitVersion()
|
||||
*/
|
||||
int GetToolkitMajorVersion();
|
||||
|
||||
/**
|
||||
Returns the run-time minor version of the toolkit associated with this
|
||||
wxPlatformInfo instance.
|
||||
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.
|
||||
|
||||
@sa CheckToolkitVersion()
|
||||
*/
|
||||
int GetToolkitMinorVersion();
|
||||
|
||||
/**
|
||||
Returns @true if this instance is fully initialized with valid values.
|
||||
*/
|
||||
#define bool IsOk() /* implementation is private */
|
||||
|
||||
/**
|
||||
Returns @true if this wxPlatformInfo describes wxUniversal build.
|
||||
*/
|
||||
bool IsUsingUniversalWidgets();
|
||||
|
||||
/**
|
||||
Sets the architecture enum value associated with this wxPlatformInfo instance.
|
||||
*/
|
||||
void SetArchitecture(wxArchitecture n);
|
||||
|
||||
/**
|
||||
Sets the endianness enum value associated with this wxPlatformInfo instance.
|
||||
*/
|
||||
void SetEndianness(wxEndianness n);
|
||||
|
||||
/**
|
||||
Sets the version of the operating system associated with this wxPlatformInfo
|
||||
instance.
|
||||
*/
|
||||
void SetOSVersion(int major, int minor);
|
||||
|
||||
/**
|
||||
Sets the operating system associated with this wxPlatformInfo instance.
|
||||
*/
|
||||
void SetOperatingSystemId(wxOperatingSystemId n);
|
||||
|
||||
/**
|
||||
Sets the wxWidgets port ID associated with this wxPlatformInfo instance.
|
||||
*/
|
||||
void SetPortId(wxPortId n);
|
||||
|
||||
/**
|
||||
Sets the version of the toolkit associated with this wxPlatformInfo instance.
|
||||
*/
|
||||
void SetToolkitVersion(int major, int minor);
|
||||
|
||||
/**
|
||||
Inequality operator. Tests all class' internal variables.
|
||||
*/
|
||||
bool operator!=(const wxPlatformInfo& t);
|
||||
|
||||
/**
|
||||
Equality operator. Tests all class' internal variables.
|
||||
*/
|
||||
bool operator==(const wxPlatformInfo& t);
|
||||
};
|
Reference in New Issue
Block a user