summaryrefslogtreecommitdiffstats
path: root/examples/declarative/extending/properties/birthdayparty.h
blob: 18049803d153a63e4224a8f0d9ae068b7df68b8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#ifndef BIRTHDAYPARTY_H
#define BIRTHDAYPARTY_H

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

// ![0]
class BirthdayParty : public QObject
{
Q_OBJECT
// ![0]
// ![1]
Q_PROPERTY(Person *celebrant READ celebrant WRITE setCelebrant)
// ![1]
// ![2]
Q_PROPERTY(QmlList<Person *> *guests READ guests)
// ![2]
// ![3]
public:
    BirthdayParty(QObject *parent = 0);

    Person *celebrant() const;
    void setCelebrant(Person *);

    QmlList<Person *> *guests();

private:
    Person *m_celebrant;
    QmlConcreteList<Person *> m_guests;
};
QML_DECLARE_TYPE(BirthdayParty);
// ![3]

#endif // BIRTHDAYPARTY_H