Version: 3.2.5
wxVersionInfo Class Reference

#include <wx/versioninfo.h>

Detailed Description

wxVersionInfo contains version information.

This class is used by wxWidgets to provide version information about the libraries it uses and itself, but you can also apply it in user space, to provide version information about your own libraries, or other libraries that you use.

Library:  wxBase
Category:  Data Structures
Since
2.9.2

Public Member Functions

 wxVersionInfo (const wxString &name=wxString(), int major=0, int minor=0, int micro=0, int revision=0, const wxString &description=wxString(), const wxString &copyright=wxString())
 Constructor. More...
 
const wxStringGetName () const
 Get the name of the object (library). More...
 
int GetMajor () const
 Get the major version number. More...
 
int GetMinor () const
 Get the minor version number. More...
 
int GetMicro () const
 Get the micro version, or release number. More...
 
int GetRevision () const
 Get the revision version, or build number. More...
 
wxString ToString () const
 Get the string representation of this version object. More...
 
wxString GetVersionString () const
 Get the string representation. More...
 
bool HasDescription () const
 Return true if a description string has been specified. More...
 
const wxStringGetDescription ()
 Get the description string. More...
 
bool HasCopyright () const
 Returns true if a copyright string has been specified. More...
 
const wxStringGetCopyright () const
 Get the copyright string. More...
 

Constructor & Destructor Documentation

◆ wxVersionInfo()

wxVersionInfo::wxVersionInfo ( const wxString name = wxString(),
int  major = 0,
int  minor = 0,
int  micro = 0,
int  revision = 0,
const wxString description = wxString(),
const wxString copyright = wxString() 
)

Constructor.

The version information objects need to be initialized with this constructor and are immutable once they are created.

Parameters
nameThe name of the library or other entity that this object pertains to.
majorThe major version component.
minorThe minor version component.
microThe micro version component, 0 by default.
revisionThe revision version component, also known as "build number". This component is also 0 by default and is only available since wxWidgets 3.2.0.
descriptionFree form description of this version, none by default.
copyrightCopyright string, none by default.

Member Function Documentation

◆ GetCopyright()

const wxString& wxVersionInfo::GetCopyright ( ) const

Get the copyright string.

The copyright string may be empty.

Returns
The copyright string.

◆ GetDescription()

const wxString& wxVersionInfo::GetDescription ( )

Get the description string.

The description may be empty.

Returns
The description string, free-form.

◆ GetMajor()

int wxVersionInfo::GetMajor ( ) const

Get the major version number.

Returns
Major version number.

◆ GetMicro()

int wxVersionInfo::GetMicro ( ) const

Get the micro version, or release number.

This is the third component of the version.

Returns
Micro version, or release number.

◆ GetMinor()

int wxVersionInfo::GetMinor ( ) const

Get the minor version number.

Returns
Minor version number.

◆ GetName()

const wxString& wxVersionInfo::GetName ( ) const

Get the name of the object (library).

Returns
Name string.

◆ GetRevision()

int wxVersionInfo::GetRevision ( ) const

Get the revision version, or build number.

This is the fourth component of the version.

Returns
Revision version, or build number.
Since
3.2.0

◆ GetVersionString()

wxString wxVersionInfo::GetVersionString ( ) const

Get the string representation.

The micro and revision components of the version are ignored/not used if they are both zero. If the revision component is non-zero all four parts will be used even if the micro component is zero.

Returns
The version string in the form "name major.minor[.micro[.revision]]".

◆ HasCopyright()

bool wxVersionInfo::HasCopyright ( ) const

Returns true if a copyright string has been specified.

See also
GetCopyright()

◆ HasDescription()

bool wxVersionInfo::HasDescription ( ) const

Return true if a description string has been specified.

See also
GetDescription()

◆ ToString()

wxString wxVersionInfo::ToString ( ) const

Get the string representation of this version object.

This function returns the description if it is non-empty or GetVersionString() if there is no description.

See also
GetDescription(), GetVersionString()