1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: declaration of the wxPlatformInfo class
4 // Author: Francesco Montorsi
6 // Created: 07.07.2006 (based on wxToolkitInfo)
8 // Copyright: (c) 2006 Francesco Montorsi
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_PLATINFO_H_
13 #define _WX_PLATINFO_H_
15 #include "wx/string.h"
17 // ----------------------------------------------------------------------------
18 // wxPlatformInfo enums & structs
19 // ----------------------------------------------------------------------------
21 // VERY IMPORTANT: when changing these enum values, also change the relative
22 // string tables in src/common/platinfo.cpp
25 // families & sub-families of operating systems
26 enum wxOperatingSystemId
28 wxOS_UNKNOWN
= 0, // returned on error
30 wxOS_MAC_OS
= 1 << 0, // Apple Mac OS 8/9/X with Mac paths
31 wxOS_MAC_OSX_DARWIN
= 1 << 1, // Apple Mac OS X with Unix paths
32 wxOS_MAC
= wxOS_MAC_OS
|wxOS_MAC_OSX_DARWIN
,
34 wxOS_WINDOWS_9X
= 1 << 2, // Windows 9x family (95/98/ME)
35 wxOS_WINDOWS_NT
= 1 << 3, // Windows NT family (NT/2000/XP)
36 wxOS_WINDOWS_MICRO
= 1 << 4, // MicroWindows
37 wxOS_WINDOWS_CE
= 1 << 5, // Windows CE (Window Mobile)
38 wxOS_WINDOWS
= wxOS_WINDOWS_9X
|
43 wxOS_UNIX_LINUX
= 1 << 6, // Linux
44 wxOS_UNIX_FREEBSD
= 1 << 7, // FreeBSD
45 wxOS_UNIX_OPENBSD
= 1 << 8, // OpenBSD
46 wxOS_UNIX_NETBSD
= 1 << 9, // NetBSD
47 wxOS_UNIX_SOLARIS
= 1 << 10, // SunOS
48 wxOS_UNIX_AIX
= 1 << 11, // AIX
49 wxOS_UNIX_HPUX
= 1 << 12, // HP/UX
50 wxOS_UNIX
= wxOS_UNIX_LINUX
|
58 // 1<<13 and 1<<14 available for other Unix flavours
60 wxOS_DOS
= 1 << 15, // Microsoft DOS
61 wxOS_OS2
= 1 << 16 // OS/2
64 // list of wxWidgets ports - some of them can be used with more than
68 wxPORT_UNKNOWN
= 0, // returned on error
70 wxPORT_BASE
= 1 << 0, // wxBase, no native toolkit used
72 wxPORT_MSW
= 1 << 1, // wxMSW, native toolkit is Windows API
73 wxPORT_MOTIF
= 1 << 2, // wxMotif, using [Open]Motif or Lesstif
74 wxPORT_GTK
= 1 << 3, // wxGTK, using GTK+ 1.x, 2.x, GPE or Maemo
75 wxPORT_DFB
= 1 << 4, // wxDFB, using wxUniversal
76 wxPORT_X11
= 1 << 5, // wxX11, using wxUniversal
77 wxPORT_PM
= 1 << 6, // wxOS2, using OS/2 Presentation Manager
78 wxPORT_OS2
= wxPORT_PM
, // wxOS2, using OS/2 Presentation Manager
79 wxPORT_MAC
= 1 << 7, // wxOSX (former wxMac), using Cocoa, Carbon or iPhone API
80 wxPORT_OSX
= wxPORT_MAC
, // wxOSX, using Cocoa, Carbon or iPhone API
81 wxPORT_COCOA
= 1 << 8, // wxCocoa, using Cocoa NextStep/Mac API
82 wxPORT_WINCE
= 1 << 9 // wxWinCE, toolkit is WinCE SDK API
85 // architecture of the operating system
86 // (regardless of the build environment of wxWidgets library - see
87 // wxIsPlatform64bit documentation for more info)
90 wxARCH_INVALID
= -1, // returned on error
99 // endian-ness of the machine
102 wxENDIAN_INVALID
= -1, // returned on error
104 wxENDIAN_BIG
, // 4321
105 wxENDIAN_LITTLE
, // 1234
106 wxENDIAN_PDP
, // 3412
111 // informations about a linux distro returned by the lsb_release utility
112 struct wxLinuxDistributionInfo
117 wxString Description
;
119 bool operator==(const wxLinuxDistributionInfo
& ldi
) const
121 return Id
== ldi
.Id
&&
122 Release
== ldi
.Release
&&
123 CodeName
== ldi
.CodeName
&&
124 Description
== ldi
.Description
;
127 bool operator!=(const wxLinuxDistributionInfo
& ldi
) const
128 { return !(*this == ldi
); }
132 // ----------------------------------------------------------------------------
134 // ----------------------------------------------------------------------------
136 // Information about the toolkit that the app is running under and some basic
137 // platform and architecture info
138 class WXDLLIMPEXP_BASE wxPlatformInfo
142 wxPlatformInfo(wxPortId pid
,
143 int tkMajor
= -1, int tkMinor
= -1,
144 wxOperatingSystemId id
= wxOS_UNKNOWN
,
145 int osMajor
= -1, int osMinor
= -1,
146 wxArchitecture arch
= wxARCH_INVALID
,
147 wxEndianness endian
= wxENDIAN_INVALID
,
148 bool usingUniversal
= false);
150 // default copy ctor, assignment operator and dtor are ok
152 bool operator==(const wxPlatformInfo
&t
) const;
154 bool operator!=(const wxPlatformInfo
&t
) const
155 { return !(*this == t
); }
157 // Gets a wxPlatformInfo already initialized with the values for
158 // the currently running platform.
159 static const wxPlatformInfo
& Get();
163 // string -> enum conversions
164 // ---------------------------------
166 static wxOperatingSystemId
GetOperatingSystemId(const wxString
&name
);
167 static wxPortId
GetPortId(const wxString
&portname
);
169 static wxArchitecture
GetArch(const wxString
&arch
);
170 static wxEndianness
GetEndianness(const wxString
&end
);
172 // enum -> string conversions
173 // ---------------------------------
175 static wxString
GetOperatingSystemFamilyName(wxOperatingSystemId os
);
176 static wxString
GetOperatingSystemIdName(wxOperatingSystemId os
);
177 static wxString
GetPortIdName(wxPortId port
, bool usingUniversal
);
178 static wxString
GetPortIdShortName(wxPortId port
, bool usingUniversal
);
180 static wxString
GetArchName(wxArchitecture arch
);
181 static wxString
GetEndiannessName(wxEndianness end
);
187 int GetOSMajorVersion() const
188 { return m_osVersionMajor
; }
189 int GetOSMinorVersion() const
190 { return m_osVersionMinor
; }
192 // return true if the OS version >= major.minor
193 bool CheckOSVersion(int major
, int minor
) const
195 return DoCheckVersion(GetOSMajorVersion(),
201 int GetToolkitMajorVersion() const
202 { return m_tkVersionMajor
; }
203 int GetToolkitMinorVersion() const
204 { return m_tkVersionMinor
; }
206 bool CheckToolkitVersion(int major
, int minor
) const
208 return DoCheckVersion(GetToolkitMajorVersion(),
209 GetToolkitMinorVersion(),
214 bool IsUsingUniversalWidgets() const
215 { return m_usingUniversal
; }
217 wxOperatingSystemId
GetOperatingSystemId() const
219 wxLinuxDistributionInfo
GetLinuxDistributionInfo() const
221 wxPortId
GetPortId() const
223 wxArchitecture
GetArchitecture() const
225 wxEndianness
GetEndianness() const
232 wxString
GetOperatingSystemFamilyName() const
233 { return GetOperatingSystemFamilyName(m_os
); }
234 wxString
GetOperatingSystemIdName() const
235 { return GetOperatingSystemIdName(m_os
); }
236 wxString
GetPortIdName() const
237 { return GetPortIdName(m_port
, m_usingUniversal
); }
238 wxString
GetPortIdShortName() const
239 { return GetPortIdShortName(m_port
, m_usingUniversal
); }
240 wxString
GetArchName() const
241 { return GetArchName(m_arch
); }
242 wxString
GetEndiannessName() const
243 { return GetEndiannessName(m_endian
); }
244 wxString
GetOperatingSystemDescription() const
246 wxString
GetDesktopEnvironment() const
247 { return m_desktopEnv
; }
249 static wxString
GetOperatingSystemDirectory();
250 // doesn't make sense to store inside wxPlatformInfo the OS directory,
251 // thus this function is static; note that this function simply calls
252 // wxGetOSDirectory() and is here just to make it easier for the user to
253 // find it that feature (global functions can be difficult to find in the docs)
258 void SetOSVersion(int major
, int minor
)
259 { m_osVersionMajor
=major
; m_osVersionMinor
=minor
; }
260 void SetToolkitVersion(int major
, int minor
)
261 { m_tkVersionMajor
=major
; m_tkVersionMinor
=minor
; }
263 void SetOperatingSystemId(wxOperatingSystemId n
)
265 void SetOperatingSystemDescription(const wxString
& desc
)
267 void SetPortId(wxPortId n
)
269 void SetArchitecture(wxArchitecture n
)
271 void SetEndianness(wxEndianness n
)
274 void SetDesktopEnvironment(const wxString
& de
)
275 { m_desktopEnv
= de
; }
276 void SetLinuxDistributionInfo(const wxLinuxDistributionInfo
& di
)
285 return m_osVersionMajor
!= -1 && m_osVersionMinor
!= -1 &&
286 m_os
!= wxOS_UNKNOWN
&&
287 !m_osDesc
.IsEmpty() &&
288 m_tkVersionMajor
!= -1 && m_tkVersionMinor
!= -1 &&
289 m_port
!= wxPORT_UNKNOWN
&&
290 m_arch
!= wxARCH_INVALID
&&
291 m_endian
!= wxENDIAN_INVALID
;
293 // do not check linux-specific info; it's ok to have them empty
298 static bool DoCheckVersion(int majorCur
, int minorCur
, int major
, int minor
)
300 return majorCur
> major
|| (majorCur
== major
&& minorCur
>= minor
);
303 void InitForCurrentPlatform();
309 // Version of the OS; valid if m_os != wxOS_UNKNOWN
310 // (-1 means not initialized yet).
311 int m_osVersionMajor
,
314 // Operating system ID.
315 wxOperatingSystemId m_os
;
317 // Operating system description.
324 wxString m_desktopEnv
;
325 wxLinuxDistributionInfo m_ldi
;
331 // Version of the underlying toolkit
332 // (-1 means not initialized yet; zero means no toolkit).
333 int m_tkVersionMajor
, m_tkVersionMinor
;
335 // name of the wxWidgets port
338 // is using wxUniversal widgets?
339 bool m_usingUniversal
;
345 // architecture of the OS/machine
346 wxArchitecture m_arch
;
348 // endianness of the machine
349 wxEndianness m_endian
;
353 #if WXWIN_COMPATIBILITY_2_6
354 #define wxUNKNOWN_PLATFORM wxOS_UNKNOWN
355 #define wxUnix wxOS_UNIX
356 #define wxWin95 wxOS_WINDOWS_9X
357 #define wxWIN95 wxOS_WINDOWS_9X
358 #define wxWINDOWS_NT wxOS_WINDOWS_NT
359 #define wxMSW wxOS_WINDOWS
360 #define wxWinCE wxOS_WINDOWS_CE
361 #define wxWIN32S wxOS_WINDOWS_9X
363 #define wxOS2 wxPORT_OS2
364 #define wxCocoa wxPORT_MAC
365 #define wxMac wxPORT_MAC
366 #define wxMotif wxPORT_MOTIF
367 #define wxGTK wxPORT_GTK
368 #endif // WXWIN_COMPATIBILITY_2_6
370 #endif // _WX_PLATINFO_H_