QLibraryInfo

PyQt5.QtCore.QLibraryInfo

Description

The QLibraryInfo class provides information about the Qt library.

Many pieces of information are established when Qt is configured and built. This class provides an abstraction for accessing that information. By using the static functions of this class, an application can obtain information about the instance of the Qt library which the application is using at run-time.

You can also use a qt.conf file to override the hard-coded paths that are compiled into the Qt library. For more information, see the Using qt.conf documentation.

See also

QSysInfo.

Enums

LibraryLocation

This enum type is used to specify a specific location specifier:

See also

location().

Member

Value

Description

ArchDataPath

9

The location of general architecture-dependent Qt data.

BinariesPath

5

The location of installed Qt binaries (tools and applications).

DataPath

10

The location of general architecture-independent Qt data.

DocumentationPath

1

The location for documentation upon install.

ExamplesPath

12

The location for examples upon install.

HeadersPath

2

The location for all headers.

ImportsPath

7

The location of installed QML extensions to import (QML 1.x).

LibrariesPath

3

The location of installed libraries.

LibraryExecutablesPath

4

The location of installed executables required by libraries at runtime.

PluginsPath

6

The location of installed Qt plugins.

PrefixPath

0

The default prefix for all paths.

Qml2ImportsPath

8

The location of installed QML extensions to import (QML 2.x).

SettingsPath

100

The location for Qt settings. Not applicable on Windows.

TestsPath

13

The location of installed Qt testcases.

TranslationsPath

11

The location of translation information for Qt strings.

Methods

__init__(QLibraryInfo)

TODO


@staticmethod
buildDate() → QDate

TODO


@staticmethod
isDebugBuild() → bool

TODO


@staticmethod
licensedProducts() → str

TODO


@staticmethod
licensee() → str

TODO


@staticmethod
location(LibraryLocation) → str

Returns the location specified by loc.


@staticmethod
version() → QVersionNumber

TODO