以下成员源于类 QtMac 已过时。 提供它们是为使旧源代码能继续工作。强烈建议不要在新代码中使用它们。
(obsolete)
int
|
applicationIconBadgeNumber () |
(obsolete)
QString
|
badgeLabelText () |
(obsolete)
CGContextRef
|
currentCGContext () |
(obsolete)
QPixmap
|
fromCGImageRef (CGImageRef image ) |
(obsolete)
QByteArray
|
fromNSData (const NSData * data ) |
(obsolete)
bool
|
isMainWindow (QWindow * window ) |
(obsolete)
void
|
setApplicationIconBadgeNumber (int number ) |
(obsolete)
void
|
setBadgeLabelText (const QString & text ) |
(obsolete)
CGImageRef
|
toCGImageRef (const QPixmap & pixmap ) |
(obsolete)
NSData *
|
toNSData (const QByteArray & data ) |
(obsolete)
NSImage *
|
toNSImage (const QPixmap & pixmap ) |
此函数已过时。提供它是为使旧源代码能继续工作。强烈建议不要在新代码中使用它。
使用
UIApplication.sharedApplication.applicationIconBadgeNumber
代替。
Returns the value of the application icon a.k.a badge.
另请参阅 setApplicationIconBadgeNumber () 和 badgeLabelText ().
此函数已过时。提供它是为使旧源代码能继续工作。强烈建议不要在新代码中使用它。
使用
NSApp.dockTile.badgeLabel
代替。
Returns the text of the application icon a.k.a badge.
另请参阅 setBadgeLabelText ().
此函数已过时。提供它是为使旧源代码能继续工作。强烈建议不要在新代码中使用它。
使用
UIGraphicsGetCurrentContext()
or
NSGraphicsContext.currentContext.CGContext
代替。
Returns the current CoreGraphics context.
此函数已过时。提供它是为使旧源代码能继续工作。强烈建议不要在新代码中使用它。
返回 QPixmap 相当于给定 image .
This function is not available in Qt 5.x until 5.0.2 and will return a null pixmap in earlier versions.
另请参阅 toCGImageRef () 和 像素图转换 .
此函数已过时。提供它是为使旧源代码能继续工作。强烈建议不要在新代码中使用它。
使用 QByteArray::fromNSData () 代替。
此函数已过时。提供它是为使旧源代码能继续工作。强烈建议不要在新代码中使用它。
使用 QWindow::winId () and view.window.isMainWindow instead.
Returns whether the given QWindow window is the application's main window
此函数已过时。提供它是为使旧源代码能继续工作。强烈建议不要在新代码中使用它。
使用
UIApplication.sharedApplication.applicationIconBadgeNumber
代替。
Sets the value shown on the application icon a.k.a badge to number .
Unlike its macOS counterpart, only numbers can be used.
另请参阅 applicationIconBadgeNumber () 和 setBadgeLabelText ().
此函数已过时。提供它是为使旧源代码能继续工作。强烈建议不要在新代码中使用它。
使用
NSApp.dockTile.badgeLabel
代替。
设置 text shown on the application icon a.k.a badge.
This is generally used with numbers (e.g. number of unread emails); it can also show a string.
另请参阅 badgeLabelText ().
此函数已过时。提供它是为使旧源代码能继续工作。强烈建议不要在新代码中使用它。
使用 QPixmap::toImage () 和 QImage::toCGImage () 代替。
创建
CGImageRef
equivalent to the
QPixmap
pixmap
。返回
CGImageRef
句柄。
It is the caller's responsibility to release the
CGImageRef
数据在使用后。
This function is not available in Qt 5.x until 5.0.2 and will return NULL in earlier versions.
另请参阅 fromCGImageRef ().
此函数已过时。提供它是为使旧源代码能继续工作。强烈建议不要在新代码中使用它。
使用 QByteArray::toNSData () 代替。
此函数已过时。提供它是为使旧源代码能继续工作。强烈建议不要在新代码中使用它。
使用 QPixmap::toImage and QImage::toCGImage 代替。
创建
NSImage
equivalent to the
QPixmap
pixmap
。返回
NSImage
句柄。
It is the caller's responsibility to release the
NSImage
数据在使用后。