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

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

接上文Qt5官方demo解析集22——Extending
QML - Object and List Property Types Example

在上一个例子中,我们为BirthdayParty类创建了带有一个列表参数的属性guests,而这个列表参数的类型都是一致的,即Person。然而,使用QML的类型转换机制,我们可以使这个列表参数的类型变得不同。既然说到了这里,我们先来看看example.qml:

import People 1.0

// ![0]
BirthdayParty {
    host: Boy {
        name: "Bob Jones"
        shoeSize: 12
    }
    guests: [                       // 要知道注册属性使我们需要给其一个固定的参数类型,如int,bool,甚至自定义的类型
        Boy { name: "Leo Hodges" }, // 因此想要得到该代码的效果我们需要使用继承
        Boy { name: "Jack Smith" }, // Boy与Girl均继承自Person,而我们仅仅将guests注册为Person就够了
        Girl { name: "Anne Brown" }
    ]
}
// ![0]

由于BirthdayParty类的代码没有改变,我们就看看Person.h:

#ifndef PERSON_H
#define PERSON_H

#include <QObject>

class Person : public QObject       // Person也没有改动
{
    Q_OBJECT
    Q_PROPERTY(QString name READ name WRITE setName)
    Q_PROPERTY(int shoeSize READ shoeSize WRITE setShoeSize)
public:
    Person(QObject *parent = 0);

    QString name() const;
    void setName(const QString &);

    int shoeSize() const;
    void setShoeSize(int);
private:
    QString m_name;
    int m_shoeSize;
};

// ![0]
class Boy : public Person      // 创建一个Boy继承自Person
{
    Q_OBJECT
public:
    Boy(QObject * parent = 0); // 需要一个最基本的构造函数使得QML可以实例化这个对象
};

//! [girl class]
class Girl : public Person     // Girl同Boy
{
    Q_OBJECT
public:
    Girl(QObject * parent = 0);
};
//! [girl class]

// ![0]

#endif // PERSON_H

Person.cpp:

#include "person.h"

Person::Person(QObject *parent)
: QObject(parent), m_shoeSize(0)
{
}

QString Person::name() const
{
    return m_name;
}

void Person::setName(const QString &n)
{
    m_name = n;
}

int Person::shoeSize() const
{
    return m_shoeSize;
}

void Person::setShoeSize(int s)
{
    m_shoeSize = s;
}

// ![1]
Boy::Boy(QObject * parent)         // 由于该例子只是简单演示继承,因此也并未为派生类添加额外的功能
: Person(parent)
{
}

Girl::Girl(QObject * parent)       // 构造函数是必须的
: Person(parent)
{
}

// ![1]

main.cpp:

#include <QCoreApplication>
#include <QQmlEngine>
#include <QQmlComponent>
#include <QDebug>
#include "birthdayparty.h"
#include "person.h"

int main(int argc, char ** argv)
{
    QCoreApplication app(argc, argv);

    qmlRegisterType<BirthdayParty>("People", 1,0, "BirthdayParty");
    //![0]
    qmlRegisterType<Person>();   // 我们依然需要注册Person,否则Boy与Girl无法被强制转换为Person
    //![0]                       // 该函数参数为空,因为我们并不需要实例化一个Person的对象

    //![register boy girl]
    qmlRegisterType<Boy>("People", 1,0, "Boy");     // 注册Boy和Girl
    qmlRegisterType<Girl>("People", 1,0, "Girl");
    //![register boy girl]

    QQmlEngine engine;
    QQmlComponent component(&engine, QUrl("qrc:example.qml"));
    BirthdayParty *party = qobject_cast<BirthdayParty *>(component.create());

    if (party && party->host()) {
        qWarning() << party->host()->name() << "is having a birthday!";

        if (qobject_cast<Boy *>(party->host()))    // 判断主人为男孩还是女孩
            qWarning() << "He is inviting:";
        else
            qWarning() << "She is inviting:";

        for (int ii = 0; ii < party->guestCount(); ++ii)
            qWarning() << "   " << party->guest(ii)->name();
    } else {
        qWarning() << component.errors();
    }

    return 0;
}

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

时间: 2024-10-10 08:10:32

Qt5官方demo解析集23——Extending QML - Inheritance and Coercion Example的相关文章

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描述文

Qt5官方demo解析集30——Extending QML - Binding Example

本系列所有文章可以在这里查看http://blog.csdn.net/cloud_castle/article/category/2123873 接上文Qt5官方demo解析集29--Extending QML - Property Value Source Example 还记得我们曾经在Qt5官方demo解析集17--Chapter 3: Adding Property Bindings一文中接触过QML自定义类型的属性绑定吗?如果不记得了,可以移步进行了解.因为项目尺寸的原因,那个例子可能

Qt5官方demo解析集29——Extending QML - Property Value Source Example

本系列所有文章可以在这里查看http://blog.csdn.net/cloud_castle/article/category/2123873 接上文Qt5官方demo解析集28--Extending QML - Signal Support Example 我们经常会在QML代码中使用Animation和bindings,以使得我们的程序具有更好的动态性能.那么,类似NumberAnimation这种QML类似实际上是提供了一个算法来为属性提供动态变化的数值,或者说是提供了一个值的集合.这里

Qt5官方demo解析集28——Extending QML - Signal Support Example

本系列所有文章可以在这里查看http://blog.csdn.net/cloud_castle/article/category/2123873 接上文Qt5官方demo解析集27--Extending QML - Attached Properties Example 这个demo演示了为QML自定义类型添加信号的方法,这与Qt5官方demo解析集16--Chapter 2: Connecting to C++ Methods and Signals所介绍的差不多,鉴于例子的尺寸,可能那一篇要

Qt5官方demo解析集21——Extending QML - Adding Types Example

本系列所有文章可以在这里查看http://blog.csdn.net/cloud_castle/article/category/2123873 又是一个新的系列了,不过这个系列和我们之前的Chapter系列是及其相似的,但是不过呢,Chapter主要演示了如何使用C++创建具有可视性的类型以扩展我们的QML,而这个系列则关注于如何使用C++扩展QML非可视化的内容. 这里第一个小例子与Chapter的第一个小例子及其类似: person是我们自定义的C++类,然后我们将其注册为QML类型供资源

Qt5官方demo解析集26——Extending QML - Grouped Properties Example

本系列所有文章可以在这里查看http://blog.csdn.net/cloud_castle/article/category/2123873 接上文Qt5官方demo解析集25--Extending QML - Methods Example 如果之前看过了我前面介绍粒子系统的朋友,应该对 velocity: AngleDirection {angleVariation: 360; magnitude: 80; magnitudeVariation: 40} 这样的属性设置格式屡见不鲜了,它

Qt5官方demo解析集25——Extending QML - Methods Example

本系列所有文章可以在这里查看http://blog.csdn.net/cloud_castle/article/category/2123873 接上文Qt5官方demo解析集24--Extending QML - Default Property Example 这个例子主要向我们介绍了在QML类型中定义函数的方法. person.h: #ifndef PERSON_H #define PERSON_H #include <QObject> class Person : public QOb

Qt5官方demo解析集22——Extending QML - Object and List Property Types Example

本系列所有文章可以在这里查看http://blog.csdn.net/cloud_castle/article/category/2123873 接上文Qt5官方demo解析集21--Extending QML - Adding Types Example 在上一个例子中我们基于C++创建了一个自定义的QML类型,接下来,我们将该类作为另一个类的属性类型,定义了另一个birthdayparty类.这个例子与Qt5官方demo解析集19--Chapter 5: Using List Propert

Qt5官方demo解析集31——StocQt

本系列所有文章可以在这里查看http://blog.csdn.net/cloud_castle/article/category/2123873 接上文Qt5官方demo解析集30--Extending QML - Binding Example 最近在做QML制表,因此想找一些相关曲线绘制的demo看看,结果发现了这个例子,觉得挺不错,它相比于我们之前的Extend和Particle系列显得更大一些,涉及到的面也更广一些.因此想拿过来给大家分享~ 这个例子是基于QML的股票走势图绘制,数据来源