source: trunk/src/declarative/qml/qdeclarativeproxymetaobject.cpp@ 949

Last change on this file since 949 was 846, checked in by Dmitry A. Kuminov, 14 years ago

trunk: Merged in qt 4.7.2 sources from branches/vendor/nokia/qt.

File size: 4.7 KB
Line 
1/****************************************************************************
2**
3** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
4** All rights reserved.
5** Contact: Nokia Corporation (qt-info@nokia.com)
6**
7** This file is part of the QtDeclarative module of the Qt Toolkit.
8**
9** $QT_BEGIN_LICENSE:LGPL$
10** Commercial Usage
11** Licensees holding valid Qt Commercial licenses may use this file in
12** accordance with the Qt Commercial License Agreement provided with the
13** Software or, alternatively, in accordance with the terms contained in
14** a written agreement between you and Nokia.
15**
16** GNU Lesser General Public License Usage
17** Alternatively, this file may be used under the terms of the GNU Lesser
18** General Public License version 2.1 as published by the Free Software
19** Foundation and appearing in the file LICENSE.LGPL included in the
20** packaging of this file. Please review the following information to
21** ensure the GNU Lesser General Public License version 2.1 requirements
22** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
23**
24** In addition, as a special exception, Nokia gives you certain additional
25** rights. These rights are described in the Nokia Qt LGPL Exception
26** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
27**
28** GNU General Public License Usage
29** Alternatively, this file may be used under the terms of the GNU
30** General Public License version 3.0 as published by the Free Software
31** Foundation and appearing in the file LICENSE.GPL included in the
32** packaging of this file. Please review the following information to
33** ensure the GNU General Public License version 3.0 requirements will be
34** met: http://www.gnu.org/copyleft/gpl.html.
35**
36** If you have questions regarding the use of this file, please contact
37** Nokia at qt-info@nokia.com.
38** $QT_END_LICENSE$
39**
40****************************************************************************/
41
42#include "private/qdeclarativeproxymetaobject_p.h"
43#include "private/qdeclarativeproperty_p.h"
44
45QT_BEGIN_NAMESPACE
46
47QDeclarativeProxyMetaObject::QDeclarativeProxyMetaObject(QObject *obj, QList<ProxyData> *mList)
48: metaObjects(mList), proxies(0), parent(0), object(obj)
49{
50 *static_cast<QMetaObject *>(this) = *metaObjects->first().metaObject;
51
52 QObjectPrivate *op = QObjectPrivate::get(obj);
53 if (op->metaObject)
54 parent = static_cast<QAbstractDynamicMetaObject*>(op->metaObject);
55
56 op->metaObject = this;
57}
58
59QDeclarativeProxyMetaObject::~QDeclarativeProxyMetaObject()
60{
61 if (parent)
62 delete parent;
63 parent = 0;
64
65 if (proxies)
66 delete [] proxies;
67 proxies = 0;
68}
69
70int QDeclarativeProxyMetaObject::metaCall(QMetaObject::Call c, int id, void **a)
71{
72 if ((c == QMetaObject::ReadProperty ||
73 c == QMetaObject::WriteProperty) &&
74 id >= metaObjects->last().propertyOffset) {
75
76 for (int ii = 0; ii < metaObjects->count(); ++ii) {
77 const ProxyData &data = metaObjects->at(ii);
78 if (id >= data.propertyOffset) {
79 if (!proxies) {
80 proxies = new QObject*[metaObjects->count()];
81 ::memset(proxies, 0,
82 sizeof(QObject *) * metaObjects->count());
83 }
84
85 if (!proxies[ii]) {
86 QObject *proxy = data.createFunc(object);
87 const QMetaObject *metaObject = proxy->metaObject();
88 proxies[ii] = proxy;
89
90 int localOffset = data.metaObject->methodOffset();
91 int methodOffset = metaObject->methodOffset();
92 int methods = metaObject->methodCount() - methodOffset;
93
94 // ### - Can this be done more optimally?
95 for (int jj = 0; jj < methods; ++jj) {
96 QMetaMethod method =
97 metaObject->method(jj + methodOffset);
98 if (method.methodType() == QMetaMethod::Signal)
99 QDeclarativePropertyPrivate::connect(proxy, methodOffset + jj, object, localOffset + jj);
100 }
101 }
102
103 int proxyOffset = proxies[ii]->metaObject()->propertyOffset();
104 int proxyId = id - data.propertyOffset + proxyOffset;
105
106 return proxies[ii]->qt_metacall(c, proxyId, a);
107 }
108 }
109 } else if (c == QMetaObject::InvokeMetaMethod &&
110 id >= metaObjects->last().methodOffset) {
111 QMetaMethod m = object->metaObject()->method(id);
112 if (m.methodType() == QMetaMethod::Signal) {
113 QMetaObject::activate(object, id, a);
114 return -1;
115 }
116 }
117
118 if (parent)
119 return parent->metaCall(c, id, a);
120 else
121 return object->qt_metacall(c, id, a);
122}
123
124QT_END_NAMESPACE
Note: See TracBrowser for help on using the repository browser.