Qt5官方demo解析集24——Extending QML - Default Property Example

本系列所有文章可以在这里查看http://blog.csdn.net/cloud_castle/article/category/2123873

接上文Qt5官方demo解析集23——Extending QML - Inheritance and Coercion Example


有时我们看到某个QML类型的声明中,某些数据并没有放在属性 + :后面,它们实际上属于这个类型的默认属性。而这个demo则向我们介绍了这个技术。

这个例子与上一篇几乎没有什么改动,除了两个小地方。

第一处在QML描述文件中example.qml:

import People 1.0

// ![0]
BirthdayParty {
    host: Boy {
        name: "Bob Jones"
        shoeSize: 12
    }

    Boy { name: "Leo Hodges" }        // 与前面不同的是,这三个Person并没有被放置在guests中
    Boy { name: "Jack Smith" }        // 但是它们的值被赋予了该类型的默认属性"guests"
    Girl { name: "Anne Brown" }
}
// ![0]

另一个地方则是我们BirthdayParty类的声明,BirthdayParty.h:

#ifndef BIRTHDAYPARTY_H
#define BIRTHDAYPARTY_H

#include <QObject>
#include <QQmlListProperty>
#include "person.h"

// ![0]
class BirthdayParty : public QObject
{
    Q_OBJECT
    Q_PROPERTY(Person *host READ host WRITE setHost)
    Q_PROPERTY(QQmlListProperty<Person> guests READ guests)
    Q_CLASSINFO("DefaultProperty", "guests")     // Q_CLASSINFO宏用来为类添加额外的信息
public:                                          // 而这些信息可以被添加到该类的元对象信息中
    BirthdayParty(QObject *parent = 0);          // 这里为BirthdayParty类添加了一个默认属性"guests"

    Person *host() const;
    void setHost(Person *);

    QQmlListProperty<Person> guests();
    int guestCount() const;
    Person *guest(int) const;

private:
    Person *m_host;
    QList<Person *> m_guests;
};
// ![0]

#endif // BIRTHDAYPARTY_H


  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值