我有一个我创建的QFlag。我想在QML中使用这个QFlag。具体来说,我希望能够将几个标志一起OR并将它们作为参数传递给方法。
我注意到这里没有明确列出QFlags作为QML支持的数据类型:http://doc.qt.nokia.com/4.7-snapshot/qtbinding.html#supported-data-types
我需要使用哪些类型进行注册或Q_MACRO才能启用此功能?
目标是让我可以在QML中使用的方法调用看起来像这样:
myObject.setFlag(MyFlagType.A | MyFlagType.C)
我的QFlag代码:
#include <QFlags>
#include <QObject>
class ColorPickerStyle : public QObject {
Q_OBJECT
public:
enum ColorPickerStyleFlag {
None 0x00,
MSOfficeColors = 0x01,
RGBSlider = 0x02,
ColorWheel = 0x04,
CustomColorSet = 0x08
};
//Create ColorPickerStyle::Flags as a type
Q_DECLARE_FLAGS(Flags, ColorPickerStyleFlag)
//Register ColorPickerStyle::Flags with the meta-type system
Q_FLAGS(Flags)
Q_ENUMS(ColorPickerStyleFlag)
ColorPickerStyle();
virtual ~ColorPickerStyle();
};
//Qt requires lots of macros
Q_DECLARE_OPERATORS_FOR_FLAGS(ColorPickerStyle::Flags)
答案 0 :(得分:4)
另外声明
Q_ENUMS(ColorPickerStyleFlag)
应该足够了。枚举是整数,因此or运算符也可以在没有QML的Q_FLAGS声明的情况下工作。
类ColorPickerStyle也需要Q_OBJECT宏,以便元对象编译器正常工作。
最后,你可以使用QML中的值作为ColorPickerStyle.None,ColorPickerStyle.MSOfficeColors,......