/**************************************************************************** ** ** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the Qt Script Generator project on Qt Labs. ** ** $QT_BEGIN_LICENSE:LGPL$ ** 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. ** ** GNU Lesser General Public License Usage ** 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 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3.0 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU General Public License version 3.0 requirements will be ** met: http://www.gnu.org/copyleft/gpl.html. ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include "shellheadergenerator.h" #include "fileout.h" #include #include QString ShellHeaderGenerator::fileNameForClass(const AbstractMetaClass *meta_class) const { return QString("qtscriptshell_%1.h").arg(meta_class->name()); } void writeQtScriptQtBindingsLicense(QTextStream &stream); void ShellHeaderGenerator::write(QTextStream &s, const AbstractMetaClass *meta_class) { if (FileOut::license) writeQtScriptQtBindingsLicense(s); QString include_block = "QTSCRIPTSHELL_" + meta_class->name().toUpper() + "_H"; s << "#ifndef " << include_block << endl << "#define " << include_block << endl << endl; Include inc = meta_class->typeEntry()->include(); s << "#include "; if (inc.type == Include::IncludePath) s << "<"; else s << "\""; s << inc.name; if (inc.type == Include::IncludePath) s << ">"; else s << "\""; s << endl << endl; s << "#include " << endl << endl; QString packName = meta_class->package().replace(".", "_"); if (!meta_class->generateShellClass()) { s << "#endif" << endl << endl; priGenerator->addHeader(packName, fileNameForClass(meta_class)); return ; } s << "class " << shellClassName(meta_class) << " : public " << meta_class->qualifiedCppName() << endl << "{" << endl; s << "public:" << endl; foreach (const AbstractMetaFunction *function, meta_class->functions()) { if (function->isConstructor() && !function->isPrivate()) { s << " "; writeFunctionSignature(s, function, 0, QString(), Option(IncludeDefaultExpression | OriginalName | ShowStatic)); s << ";" << endl; } } s << " ~" << shellClassName(meta_class) << "()"; if (!meta_class->destructorException().isEmpty()) s << " " << meta_class->destructorException(); s << ";" << endl; s << endl; AbstractMetaFunctionList functions = meta_class->queryFunctions( AbstractMetaClass:: VirtualFunctions | AbstractMetaClass::WasVisible | AbstractMetaClass::NotRemovedFromTargetLang ); for (int i = 0; i < functions.size(); ++i) { s << " "; writeFunctionSignature(s, functions.at(i), 0, QString(), Option(IncludeDefaultExpression | OriginalName | ShowStatic | UnderscoreSpaces)); s << ";" << endl; } writeInjectedCode(s, meta_class); s << endl << " QScriptValue __qtscript_self;" << endl; s << "};" << endl << endl << "#endif // " << include_block << endl; priGenerator->addHeader(packName, fileNameForClass(meta_class)); } void ShellHeaderGenerator::writeInjectedCode(QTextStream &s, const AbstractMetaClass *meta_class) { CodeSnipList code_snips = meta_class->typeEntry()->codeSnips(); foreach (const CodeSnip &cs, code_snips) { if (cs.language == TypeSystem::ShellDeclaration) { s << cs.code() << endl; } } }