QApplication 过时成员

以下成员源于类 QApplication 已过时。 提供它们是为使旧源代码能继续工作。强烈建议不要在新代码中使用它们。

公共函数

(obsolete) dumpObjectInfo ()
(obsolete) dumpObjectTree ()

静态公共成员

(obsolete) int colorSpec ()
(obsolete) flush ()
(obsolete) hasPendingEvents ()
(obsolete) Qt::LayoutDirection keyboardInputDirection ()
(obsolete) QLocale keyboardInputLocale ()
(obsolete) bool keypadNavigationEnabled ()
(obsolete) void setColorSpec (int spec )
(obsolete) void setGraphicsSystem ( const QString & )
(obsolete) void setKeypadNavigationEnabled (bool enable )
(obsolete) translate (const char * context , const char * key , const char * disambiguation , QCoreApplication::Encoding encoding , int n )

成员函数文档编制

[static] int QApplication:: colorSpec ()

此函数已过时。提供它是为使旧源代码能继续工作。强烈建议不要在新代码中使用它。

Returns the color specification.

另请参阅 QApplication::setColorSpec ().

[static] Qt::LayoutDirection QApplication:: keyboardInputDirection ()

此函数已过时。提供它是为使旧源代码能继续工作。强烈建议不要在新代码中使用它。

Returns the current keyboard input direction. Replaced with QInputMethod::inputDirection ()

该函数在 Qt 4.2 引入。

另请参阅 QInputMethod::inputDirection ().

[static] QLocale QApplication:: keyboardInputLocale ()

此函数已过时。提供它是为使旧源代码能继续工作。强烈建议不要在新代码中使用它。

Returns the current keyboard input locale. Replaced with QInputMethod::locale ()

该函数在 Qt 4.2 引入。

[static] bool QApplication:: keypadNavigationEnabled ()

此函数已过时。提供它是为使旧源代码能继续工作。强烈建议不要在新代码中使用它。

返回 true if Qt is set to use keypad navigation; otherwise returns false. The default value is false.

This feature is available in Qt for Embedded Linux, and Windows CE only.

注意: On Windows CE this feature is disabled by default for touch device mkspecs. To enable keypad navigation, build Qt with QT_KEYPAD_NAVIGATION defined.

另请参阅 setKeypadNavigationEnabled () 和 navigationMode ().

[static] void QApplication:: setColorSpec ( int spec )

此函数已过时。提供它是为使旧源代码能继续工作。强烈建议不要在新代码中使用它。

Sets the color specification for the application to spec .

This call has no effect.

The color specification controls how the application allocates colors when run on a display with a limited amount of colors, e.g. 8 bit / 256 color displays.

The color specification must be set before you create the QApplication 对象。

The options are:

  • QApplication::NormalColor . This is the default color allocation strategy. Use this option if your application uses buttons, menus, texts and pixmaps with few colors. With this option, the application uses system global colors. This works fine for most applications under X11, but on the Windows platform, it may cause dithering of non-standard colors.
  • QApplication::CustomColor . Use this option if your application needs a small number of custom colors. On X11, this option is the same as NormalColor . On Windows, Qt creates a Windows palette, and allocates colors to it on demand.
  • QApplication::ManyColor . Use this option if your application is very color hungry, e.g., it requires thousands of colors.
    Under X11 the effect is:
    • For 256-color displays which have at best a 256 color true color visual, the default visual is used, and colors are allocated from a color cube. The color cube is the 6x6x6 (216 color) "Web palette" (the red, green, and blue components always have one of the following values: 0x00, 0x33, 0x66, 0x99, 0xCC, or 0xFF), but the number of colors can be changed by the -ncols option. The user can force the application to use the true color visual with the -visual 选项。
    • For 256-color displays which have a true color visual with more than 256 colors, use that visual. Silicon Graphics X servers this feature, for example. They provide an 8 bit visual by default but can deliver true color when asked.

    On Windows, Qt creates a Windows palette, and fills it with a color cube.

Be aware that the CustomColor and ManyColor choices may lead to colormap flashing: The foreground application gets (most) of the available colors, while the background windows will look less attractive.

范例:

int main(int argc, char *argv[])
{
    QApplication::setColorSpec(QApplication::ManyColor);
    QApplication app(argc, argv);
    ...
    return app.exec();
}
					

另请参阅 colorSpec ().

[static] void QApplication:: setGraphicsSystem ( const QString & )

此函数已过时。提供它是为使旧源代码能继续工作。强烈建议不要在新代码中使用它。

This call has no effect.

Use the QPA framework instead.

[static] void QApplication:: setKeypadNavigationEnabled ( bool enable )

此函数已过时。提供它是为使旧源代码能继续工作。强烈建议不要在新代码中使用它。

Sets whether Qt should use focus navigation suitable for use with a minimal keypad.

This feature is available in Qt for Embedded Linux, and Windows CE only.

注意: On Windows CE this feature is disabled by default for touch device mkspecs. To enable keypad navigation, build Qt with QT_KEYPAD_NAVIGATION defined.

另请参阅 keypadNavigationEnabled () 和 setNavigationMode ().