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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
|
/***************************************************************************
copyright : (C) 2006 by David Nolden
email : david.nolden.kdevelop@art-master.de
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef SIMPLETYPECATALOG_H
#define SIMPLETYPECATALOG_H
#include "simpletype.h"
class SimpleTypeCatalog : public SimpleTypeImpl {
public:
SimpleTypeCatalog() {
};
virtual DeclarationInfo getDeclarationInfo();
SimpleTypeCatalog( SimpleTypeCatalog* rhs ) : SimpleTypeImpl( rhs ), m_tag( rhs->m_tag ) {
};
static CppCodeCompletion* data;
virtual bool isNamespace() const {
return m_tag.kind() == Tag::Kind_Namespace;
}
/** empty scope means global scope */
SimpleTypeCatalog( const QStringList& scope ) : SimpleTypeImpl( scope ) {
init();
}
SimpleTypeCatalog( SimpleTypeImpl* rhs ) : SimpleTypeImpl( rhs ) {
init();
};
SimpleTypeCatalog( Tag& tag ) {
m_tag = tag;
initFromTag();
}
virtual QString comment() const {
return m_tag.comment();
};
virtual TypePointer clone();
virtual Repository rep() const {
return RepoCatalog;
}
virtual bool hasNode() const {
return (bool)m_tag;
};
virtual QStringList getBaseStrings();
virtual TemplateParamInfo getTemplateParamInfo();
virtual const LocateResult findTemplateParam( const QString& name );
virtual QString specialization() const;
virtual void addAliasesTo( SimpleTypeNamespace* ns );
private:
Tag m_tag;
int pointerDepthFromString( const QString& str ) {
QRegExp ptrRx( "(\\*|\\&)" );
QString ptr = str.mid( str.find( ptrRx ) );
QStringList ptrList = QStringList::split( "", ptr );
return ptrList.size();
}
Tag findSubTag( const QString& name );
QValueList<Tag> getBaseClassList();
void initFromTag();
void init();
protected:
const Tag& tag() {
return m_tag;
}
struct CatalogBuildInfo : public TypeBuildInfo {
Tag m_tag;
TypeDesc m_desc;
TypePointer m_parent;
CatalogBuildInfo( Tag tag , const TypeDesc& desc, TypePointer parent ) : m_tag( tag ) , m_desc( desc ), m_parent( parent ) {
}
virtual TypePointer build();
};
virtual MemberInfo findMember( TypeDesc name, MemberInfo::MemberType type = MemberInfo::AllTypes);
virtual QValueList<TypePointer> getMemberClasses( const TypeDesc& name ) ;
};
#endif
// kate: indent-mode csands; tab-width 4;
|