/* * Copyright 2007 Richard J. Moore * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Library General Public License version 2 as * published by the Free Software Foundation * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the * Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef DATAENGINEBIND_H #define DATAENGINEBIND_H #include #include #include #include #include #include #include Q_DECLARE_METATYPE(Plasma::DataEngine::Dict) Q_DECLARE_METATYPE(Plasma::DataEngine::Data) template QScriptValue qScriptValueFromMap(QScriptEngine *eng, const M &map) { //kDebug() << "qScriptValueFromMap called"; QScriptValue obj = eng->newObject(); typename M::const_iterator begin = map.constBegin(); typename M::const_iterator end = map.constEnd(); typename M::const_iterator it; for (it = begin; it != end; ++it) { if (it.value().type() == QVariant::Hash) { obj.setProperty(it.key(), qScriptValueFromMap(eng, it.value().toHash())); } else if (it.value().type() == QVariant::Map) { obj.setProperty(it.key(), qScriptValueFromMap(eng, it.value().toMap())); } else { obj.setProperty(it.key(), qScriptValueFromValue(eng, it.value())); } } return obj; } template void qScriptValueToMap(const QScriptValue &value, M &map) { //kDebug() << "qScriptValueToMap called"; QScriptValueIterator it(value); while (it.hasNext()) { it.next(); map[it.name()] = qscriptvalue_cast(it.value()); } } template int qScriptRegisterMapMetaType( QScriptEngine *engine, const QScriptValue &prototype = QScriptValue() #ifndef qdoc , T * /* dummy */ = 0 #endif ) { return qScriptRegisterMetaType(engine, qScriptValueFromMap, qScriptValueToMap, prototype); } void registerDataEngineMetaTypes(QScriptEngine *engine); #endif // DATAENGINE_H