Obsolete Members for QObject

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

(deprecated) Q_ENUMS (...)
(deprecated) Q_FLAGS (...)

宏文档编制

Q_ENUMS (...)

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

In new code, you should prefer the use of the Q_ENUM () macro, which makes the type available also to the meta type system. For instance, QMetaEnum::fromType () will not work with types declared with Q_ENUMS().

This macro registers one or several enum types to the meta-object system.

If you want to register an enum that is declared in another class, the enum must be fully qualified with the name of the class defining it. In addition, the class defining the enum has to inherit QObject as well as declare the enum using Q_ENUMS().

另请参阅 Qt 的特性系统 .

Q_FLAGS (...)

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

This macro registers one or several flags types with the meta-object system. It is typically used in a class definition to declare that values of a given enum can be used as flags and combined using the bitwise OR operator.

注意: This macro takes care of registering individual flag values with the meta-object system, so it is unnecessary to use Q_ENUMS () 除此宏外。

In new code, you should prefer the use of the Q_FLAG () macro, which makes the type available also to the meta type system.

另请参阅 Qt 的特性系统 .