Obsolete Members for QColor

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

公共函数

(deprecated (6.6)) void setNamedColor (const QString & name )
(deprecated (6.6)) void setNamedColor (QStringView name )
(deprecated (6.6)) void setNamedColor (QLatin1StringView name )

静态公共成员

(deprecated (6.6)) bool isValidColor (const QString & name )
(deprecated (6.6)) bool isValidColor (QStringView name )
(deprecated (6.6)) bool isValidColor (QLatin1StringView name )

成员函数文档编制

[static] bool QColor:: isValidColor (const QString & name )

This function is deprecated since 6.6. We strongly advise against using it in new code.

使用 isValidColorName () 代替。

返回 true name is a valid color name and can be used to construct a valid QColor 对象,否则返回 false。

It uses the same algorithm used in setNamedColor ().

另请参阅 setNamedColor ().

[static] bool QColor:: isValidColor ( QStringView name )

This function is deprecated since 6.6. We strongly advise against using it in new code.

这是重载函数。

使用 isValidColorName () 代替。

[static] bool QColor:: isValidColor ( QLatin1StringView name )

This function is deprecated since 6.6. We strongly advise against using it in new code.

这是重载函数。

使用 isValidColorName () 代替。

void QColor:: setNamedColor (const QString & name )

This function is deprecated since 6.6. We strongly advise against using it in new code.

使用 fromString () 代替。

设置 RGB 值为此 QColor to name ,可能是这些格式之一:

  • #RGB (R、G 和 B 中的每个都是单一十六进制数字)
  • #RRGGBB
  • #AARRGGBB (从 5.2 起)
  • #RRRGGGBBB
  • #RRRRGGGGBBBB
  • 来自列表的颜色名称的定义在列表 SVG 颜色关键词名称 提供通过 WWW (万维网) 联盟;例如,steelblue (钢蓝色) 或 gainsboro (亮灰色)。这些颜色名称工作于所有平台。注意,这些颜色名称 not 一样如定义通过 Qt::GlobalColor 枚举,如 green (绿色) 和 Qt::green 不是指同一颜色。
  • transparent - 表示缺乏颜色。

颜色无效若 name 无法剖析。

另请参阅 QColor (), name (),和 isValid ().

void QColor:: setNamedColor ( QStringView name )

This function is deprecated since 6.6. We strongly advise against using it in new code.

这是重载函数。

使用 fromString () 代替。

void QColor:: setNamedColor ( QLatin1StringView name )

This function is deprecated since 6.6. We strongly advise against using it in new code.

这是重载函数。

使用 fromString () 代替。