QMimeType 類

QMimeType 類描述由 MIME 類型字符串錶示的文件或數據的類型。 更多...

頭: #include <QMimeType>
qmake: QT += core
Since: Qt 5.0

該類在 Qt 5.0 引入。

特性

公共函數

QMimeType (const QMimeType & other )
QMimeType ()
QMimeType & operator= (QMimeType && other )
QMimeType & operator= (const QMimeType & other )
~QMimeType ()
QStringList aliases () const
QStringList allAncestors () const
QString comment () const
QString filterString () const
QString genericIconName () const
QStringList globPatterns () const
QString iconName () const
bool inherits (const QString & mimeTypeName ) const
bool isDefault () const
bool isValid () const
QString name () const
QStringList parentMimeTypes () const
QString preferredSuffix () const
QStringList suffixes () const
void swap (QMimeType & other )
bool operator!= (const QMimeType & other ) const
bool operator== (const QMimeType & other ) const
uint qHash (const QMimeType & key , uint seed = 0)

詳細描述

For instance a file named "readme.txt" has the MIME type "text/plain". The MIME type can be determined from the file name, or from the file contents, or from both. MIME type determination can also be done on buffers of data not coming from files.

Determining the MIME type of a file can be useful to make sure your application supports it. It is also useful in file-manager-like applications or widgets, in order to display an appropriate icon for the file, or even the descriptive comment in detailed views.

To check if a file has the expected MIME type, you should use inherits () rather than a simple string comparison based on the name (). This is because MIME types can inherit from each other: for instance a C source file is a specific type of plain text file, so text/x-csrc inherits text/plain.

另請參閱 QMimeDatabase and MIME 類型瀏覽器範例 .

特性文檔編製

aliases : const QStringList

This property holds the list of aliases of this mimetype

For instance, for text/csv, the returned list would be: text/x-csv, text/x-comma-separated-values.

Note that all QMimeType instances refer to proper mimetypes, never to aliases directly.

The order of the aliases in the list is undefined.

While this property was introduced in 5.10, the corresponding accessor method has always been there.

訪問函數:

QStringList aliases () const

allAncestors : const QStringList

This property holds the names of direct and indirect parent MIME types

Return all the parent mimetypes of this mimetype, direct and indirect. This includes the parent(s) of its parent(s), etc.

For instance, for image/svg+xml the list would be: application/xml, text/plain, application/octet-stream.

Note that application/octet-stream is the ultimate parent for all types of files (but not directories).

While this property was introduced in 5.10, the corresponding accessor method has always been there.

訪問函數:

QStringList allAncestors () const

comment : const QString

This property holds the description of the MIME type to be displayed on user interfaces

The default language (QLocale(). name ()) is used to select the appropriate translation.

While this property was introduced in 5.10, the corresponding accessor method has always been there.

訪問函數:

QString comment () const

filterString : const QString

This property holds a filter string usable for a file dialog

While this property was introduced in 5.10, the corresponding accessor method has always been there.

訪問函數:

QString filterString () const

genericIconName : const QString

This property holds the file name of a generic icon that represents the MIME type

This should be used if the icon returned by iconName () cannot be found on the system. It is used for categories of similar types (like spreadsheets or archives) that can use a common icon. The freedesktop.org Icon Naming Specification lists a set of such icon names.

The icon name can be given to QIcon::fromTheme () in order to load the icon.

While this property was introduced in 5.10, the corresponding accessor method has always been there.

訪問函數:

QString genericIconName () const

globPatterns : const QStringList

This property holds the list of glob matching patterns

While this property was introduced in 5.10, the corresponding accessor method has always been there.

訪問函數:

QStringList globPatterns () const

iconName : const QString

This property holds the file name of an icon image that represents the MIME type

The icon name can be given to QIcon::fromTheme () in order to load the icon.

While this property was introduced in 5.10, the corresponding accessor method has always been there.

訪問函數:

QString iconName () const

isDefault : const bool

true if this MIME type is the default MIME type which applies to all files: application/octet-stream.

While this property was introduced in 5.10, the corresponding accessor method has always been there.

訪問函數:

bool isDefault () const

name : const QString

This property holds the name of the MIME type

While this property was introduced in 5.10, the corresponding accessor method has always been there.

訪問函數:

QString name () const

parentMimeTypes : const QStringList

This property holds the names of parent MIME types

A type is a subclass of another type if any instance of the first type is also an instance of the second. For example, all image/svg+xml files are also text/xml, text/plain and application/octet-stream files. Subclassing is about the format, rather than the category of the data (for example, there is no 'generic spreadsheet' class that all spreadsheets inherit from). Conversely, the parent mimetype of image/svg+xml is text/xml.

A mimetype can have multiple parents. For instance application/x-perl has two parents: application/x-executable and text/plain. This makes it possible to both execute perl scripts, and to open them in text editors.

While this property was introduced in 5.10, the corresponding accessor method has always been there.

訪問函數:

QStringList parentMimeTypes () const

preferredSuffix : const QString

This property holds the preferred suffix for the MIME type

No leading dot is included, so for instance this would return "pdf" for application/pdf. The return value can be empty, for mime types which do not have any suffixes associated.

While this property was introduced in 5.10, the corresponding accessor method has always been there.

訪問函數:

QString preferredSuffix () const

suffixes : const QStringList

This property holds the known suffixes for the MIME type

No leading dot is included, so for instance this would return "jpg", "jpeg" for image/jpeg.

While this property was introduced in 5.10, the corresponding accessor method has always been there.

訪問函數:

QStringList suffixes () const

valid : const bool

true QMimeType object contains valid data, false otherwise

A valid MIME type has a non-empty name (). The invalid MIME type is the default-constructed QMimeType .

While this property was introduced in 5.10, the corresponding accessor method has always been there.

訪問函數:

bool isValid () const

成員函數文檔編製

QMimeType:: QMimeType (const QMimeType & other )

Constructs this QMimeType object as a copy of other .

QMimeType:: QMimeType ()

Constructs this QMimeType object initialized with default property values that indicate an invalid MIME type.

QMimeType &QMimeType:: operator= ( QMimeType && other )

移動賦值 other 到此 QMimeType 實例。

該函數在 Qt 5.2 引入。

QMimeType &QMimeType:: operator= (const QMimeType & other )

Assigns the data of other 到此 QMimeType object, and returns a reference to this object.

QMimeType:: ~QMimeType ()

銷毀 QMimeType object, and releases the d pointer.

bool QMimeType:: inherits (const QString & mimeTypeName ) const

返迴 true if this mimetype is mimeTypeName , or inherits mimeTypeName (見 parentMimeTypes ()), or mimeTypeName is an alias for this mimetype.

This method has been made invokable from QML since 5.10.

注意: 此函數可以被援引,通過元對象係統和從 QML。見 Q_INVOKABLE .

void QMimeType:: swap ( QMimeType & other )

交換 QMimeType other 采用此 QMimeType 對象。

此操作很快且從不失敗。

The swap() method helps with the implementation of assignment operators in an exception-safe way. For more information consult More C++ Idioms - Copy-and-swap .

bool QMimeType:: operator!= (const QMimeType & other ) const

返迴 true if other does not equal this QMimeType object, otherwise returns false .

bool QMimeType:: operator== (const QMimeType & other ) const

返迴 true if other equals this QMimeType object, otherwise returns false . The name is the unique identifier for a mimetype, so two mimetypes with the same name, are equal.

相關非成員

uint qHash (const QMimeType & key , uint seed = 0)

返迴哈希值為 key ,使用 seed 做計算種子。

該函數在 Qt 5.6 引入。