2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2010-12-03 11:17:25 +01:00
|
|
|
**
|
2013-01-28 17:12:19 +01:00
|
|
|
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
2012-10-02 09:12:39 +02:00
|
|
|
** Contact: http://www.qt-project.org/legal
|
2010-12-03 11:17:25 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2010-12-03 11:17:25 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and Digia. For licensing terms and
|
|
|
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
|
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
2010-12-03 11:17:25 +01:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
|
|
|
** General Public License version 2.1 as published by the Free Software
|
|
|
|
|
** Foundation and appearing in the file LICENSE.LGPL included in the
|
|
|
|
|
** packaging of this file. Please review the following information to
|
|
|
|
|
** ensure the GNU Lesser General Public License version 2.1 requirements
|
|
|
|
|
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
2010-12-03 11:17:25 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2010-12-03 11:17:25 +01:00
|
|
|
|
|
|
|
|
#include "fakemetaobject.h"
|
|
|
|
|
|
|
|
|
|
using namespace LanguageUtils;
|
|
|
|
|
|
2011-02-08 11:01:37 +01:00
|
|
|
FakeMetaEnum::FakeMetaEnum()
|
|
|
|
|
{}
|
|
|
|
|
|
2010-12-03 11:17:25 +01:00
|
|
|
FakeMetaEnum::FakeMetaEnum(const QString &name)
|
|
|
|
|
: m_name(name)
|
|
|
|
|
{}
|
|
|
|
|
|
2011-06-21 15:10:57 +02:00
|
|
|
bool FakeMetaEnum::isValid() const
|
|
|
|
|
{ return !m_name.isEmpty(); }
|
|
|
|
|
|
2010-12-03 11:17:25 +01:00
|
|
|
QString FakeMetaEnum::name() const
|
|
|
|
|
{ return m_name; }
|
|
|
|
|
|
2011-02-08 11:01:37 +01:00
|
|
|
void FakeMetaEnum::setName(const QString &name)
|
|
|
|
|
{ m_name = name; }
|
|
|
|
|
|
2010-12-03 11:17:25 +01:00
|
|
|
void FakeMetaEnum::addKey(const QString &key, int value)
|
|
|
|
|
{ m_keys.append(key); m_values.append(value); }
|
|
|
|
|
|
|
|
|
|
QString FakeMetaEnum::key(int index) const
|
|
|
|
|
{ return m_keys.at(index); }
|
|
|
|
|
|
|
|
|
|
int FakeMetaEnum::keyCount() const
|
|
|
|
|
{ return m_keys.size(); }
|
|
|
|
|
|
|
|
|
|
QStringList FakeMetaEnum::keys() const
|
|
|
|
|
{ return m_keys; }
|
|
|
|
|
|
2011-07-01 15:09:15 +02:00
|
|
|
bool FakeMetaEnum::hasKey(const QString &key) const
|
|
|
|
|
{ return m_keys.contains(key); }
|
|
|
|
|
|
2010-12-03 11:17:25 +01:00
|
|
|
FakeMetaMethod::FakeMetaMethod(const QString &name, const QString &returnType)
|
|
|
|
|
: m_name(name)
|
|
|
|
|
, m_returnType(returnType)
|
|
|
|
|
, m_methodTy(FakeMetaMethod::Method)
|
|
|
|
|
, m_methodAccess(FakeMetaMethod::Public)
|
2011-05-30 09:01:52 +02:00
|
|
|
, m_revision(0)
|
2010-12-03 11:17:25 +01:00
|
|
|
{}
|
|
|
|
|
|
2011-02-08 11:01:37 +01:00
|
|
|
FakeMetaMethod::FakeMetaMethod()
|
|
|
|
|
: m_methodTy(FakeMetaMethod::Method)
|
|
|
|
|
, m_methodAccess(FakeMetaMethod::Public)
|
2011-05-30 09:01:52 +02:00
|
|
|
, m_revision(0)
|
2011-02-08 11:01:37 +01:00
|
|
|
{}
|
|
|
|
|
|
2010-12-03 11:17:25 +01:00
|
|
|
QString FakeMetaMethod::methodName() const
|
|
|
|
|
{ return m_name; }
|
|
|
|
|
|
2011-02-08 11:01:37 +01:00
|
|
|
void FakeMetaMethod::setMethodName(const QString &name)
|
|
|
|
|
{ m_name = name; }
|
|
|
|
|
|
|
|
|
|
void FakeMetaMethod::setReturnType(const QString &type)
|
|
|
|
|
{ m_returnType = type; }
|
|
|
|
|
|
2010-12-03 11:17:25 +01:00
|
|
|
QStringList FakeMetaMethod::parameterNames() const
|
|
|
|
|
{ return m_paramNames; }
|
|
|
|
|
|
|
|
|
|
QStringList FakeMetaMethod::parameterTypes() const
|
|
|
|
|
{ return m_paramTypes; }
|
|
|
|
|
|
|
|
|
|
void FakeMetaMethod::addParameter(const QString &name, const QString &type)
|
|
|
|
|
{ m_paramNames.append(name); m_paramTypes.append(type); }
|
|
|
|
|
|
|
|
|
|
int FakeMetaMethod::methodType() const
|
|
|
|
|
{ return m_methodTy; }
|
|
|
|
|
|
2011-01-04 16:15:05 +01:00
|
|
|
void FakeMetaMethod::setMethodType(int methodType)
|
2010-12-03 11:17:25 +01:00
|
|
|
{ m_methodTy = methodType; }
|
|
|
|
|
|
|
|
|
|
int FakeMetaMethod::access() const
|
|
|
|
|
{ return m_methodAccess; }
|
|
|
|
|
|
2011-05-30 09:01:52 +02:00
|
|
|
int FakeMetaMethod::revision() const
|
|
|
|
|
{ return m_revision; }
|
2010-12-03 11:17:25 +01:00
|
|
|
|
2011-05-30 09:01:52 +02:00
|
|
|
void FakeMetaMethod::setRevision(int r)
|
|
|
|
|
{ m_revision = r; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
FakeMetaProperty::FakeMetaProperty(const QString &name, const QString &type, bool isList,
|
|
|
|
|
bool isWritable, bool isPointer, int revision)
|
|
|
|
|
: m_propertyName(name)
|
|
|
|
|
, m_type(type)
|
|
|
|
|
, m_isList(isList)
|
|
|
|
|
, m_isWritable(isWritable)
|
|
|
|
|
, m_isPointer(isPointer)
|
|
|
|
|
, m_revision(revision)
|
2010-12-03 11:17:25 +01:00
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
QString FakeMetaProperty::name() const
|
|
|
|
|
{ return m_propertyName; }
|
|
|
|
|
|
|
|
|
|
QString FakeMetaProperty::typeName() const
|
|
|
|
|
{ return m_type; }
|
|
|
|
|
|
|
|
|
|
bool FakeMetaProperty::isList() const
|
|
|
|
|
{ return m_isList; }
|
|
|
|
|
|
|
|
|
|
bool FakeMetaProperty::isWritable() const
|
|
|
|
|
{ return m_isWritable; }
|
|
|
|
|
|
|
|
|
|
bool FakeMetaProperty::isPointer() const
|
|
|
|
|
{ return m_isPointer; }
|
|
|
|
|
|
2011-05-30 09:01:52 +02:00
|
|
|
int FakeMetaProperty::revision() const
|
|
|
|
|
{ return m_revision; }
|
|
|
|
|
|
2010-12-03 11:17:25 +01:00
|
|
|
|
|
|
|
|
FakeMetaObject::FakeMetaObject()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-08 11:01:37 +01:00
|
|
|
QString FakeMetaObject::className() const
|
|
|
|
|
{ return m_className; }
|
|
|
|
|
void FakeMetaObject::setClassName(const QString &name)
|
|
|
|
|
{ m_className = name; }
|
|
|
|
|
|
2010-12-03 11:17:25 +01:00
|
|
|
void FakeMetaObject::addExport(const QString &name, const QString &package, ComponentVersion version)
|
|
|
|
|
{
|
|
|
|
|
Export exp;
|
|
|
|
|
exp.type = name;
|
|
|
|
|
exp.package = package;
|
|
|
|
|
exp.version = version;
|
|
|
|
|
m_exports.append(exp);
|
|
|
|
|
}
|
2011-09-21 12:42:27 +02:00
|
|
|
|
|
|
|
|
void FakeMetaObject::setExportMetaObjectRevision(int exportIndex, int metaObjectRevision)
|
|
|
|
|
{
|
|
|
|
|
m_exports[exportIndex].metaObjectRevision = metaObjectRevision;
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-03 11:17:25 +01:00
|
|
|
QList<FakeMetaObject::Export> FakeMetaObject::exports() const
|
|
|
|
|
{ return m_exports; }
|
2011-02-10 14:53:57 +01:00
|
|
|
FakeMetaObject::Export FakeMetaObject::exportInPackage(const QString &package) const
|
|
|
|
|
{
|
|
|
|
|
foreach (const Export &exp, m_exports) {
|
|
|
|
|
if (exp.package == package)
|
|
|
|
|
return exp;
|
|
|
|
|
}
|
|
|
|
|
return Export();
|
|
|
|
|
}
|
2010-12-03 11:17:25 +01:00
|
|
|
|
|
|
|
|
void FakeMetaObject::setSuperclassName(const QString &superclass)
|
|
|
|
|
{ m_superName = superclass; }
|
|
|
|
|
QString FakeMetaObject::superclassName() const
|
|
|
|
|
{ return m_superName; }
|
|
|
|
|
|
|
|
|
|
void FakeMetaObject::addEnum(const FakeMetaEnum &fakeEnum)
|
|
|
|
|
{ m_enumNameToIndex.insert(fakeEnum.name(), m_enums.size()); m_enums.append(fakeEnum); }
|
|
|
|
|
int FakeMetaObject::enumeratorCount() const
|
|
|
|
|
{ return m_enums.size(); }
|
|
|
|
|
int FakeMetaObject::enumeratorOffset() const
|
|
|
|
|
{ return 0; }
|
|
|
|
|
FakeMetaEnum FakeMetaObject::enumerator(int index) const
|
|
|
|
|
{ return m_enums.at(index); }
|
|
|
|
|
int FakeMetaObject::enumeratorIndex(const QString &name) const
|
|
|
|
|
{ return m_enumNameToIndex.value(name, -1); }
|
|
|
|
|
|
|
|
|
|
void FakeMetaObject::addProperty(const FakeMetaProperty &property)
|
|
|
|
|
{ m_propNameToIdx.insert(property.name(), m_props.size()); m_props.append(property); }
|
|
|
|
|
int FakeMetaObject::propertyCount() const
|
|
|
|
|
{ return m_props.size(); }
|
|
|
|
|
int FakeMetaObject::propertyOffset() const
|
|
|
|
|
{ return 0; }
|
|
|
|
|
FakeMetaProperty FakeMetaObject::property(int index) const
|
|
|
|
|
{ return m_props.at(index); }
|
|
|
|
|
int FakeMetaObject::propertyIndex(const QString &name) const
|
|
|
|
|
{ return m_propNameToIdx.value(name, -1); }
|
|
|
|
|
|
|
|
|
|
void FakeMetaObject::addMethod(const FakeMetaMethod &method)
|
|
|
|
|
{ m_methods.append(method); }
|
|
|
|
|
int FakeMetaObject::methodCount() const
|
|
|
|
|
{ return m_methods.size(); }
|
|
|
|
|
int FakeMetaObject::methodOffset() const
|
|
|
|
|
{ return 0; }
|
|
|
|
|
FakeMetaMethod FakeMetaObject::method(int index) const
|
|
|
|
|
{ return m_methods.at(index); }
|
|
|
|
|
|
|
|
|
|
QString FakeMetaObject::defaultPropertyName() const
|
|
|
|
|
{ return m_defaultPropertyName; }
|
2011-02-10 14:46:03 +01:00
|
|
|
void FakeMetaObject::setDefaultPropertyName(const QString &defaultPropertyName)
|
2010-12-03 11:17:25 +01:00
|
|
|
{ m_defaultPropertyName = defaultPropertyName; }
|
2011-02-10 14:46:03 +01:00
|
|
|
|
|
|
|
|
QString FakeMetaObject::attachedTypeName() const
|
|
|
|
|
{ return m_attachedTypeName; }
|
|
|
|
|
void FakeMetaObject::setAttachedTypeName(const QString &name)
|
|
|
|
|
{ m_attachedTypeName = name; }
|
|
|
|
|
|
2011-09-21 12:42:27 +02:00
|
|
|
FakeMetaObject::Export::Export()
|
|
|
|
|
: metaObjectRevision(0)
|
|
|
|
|
{}
|
2011-02-10 14:46:03 +01:00
|
|
|
bool FakeMetaObject::Export::isValid() const
|
2011-09-21 12:42:27 +02:00
|
|
|
{ return version.isValid() || !package.isEmpty() || !type.isEmpty(); }
|