From 114a878c64ce6f8223cfd22d76a20eb16d177e5e Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdevelop@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- languages/cpp/qtdesignercppintegration.cpp | 218 +++++++++++++++++++++++++++++ 1 file changed, 218 insertions(+) create mode 100644 languages/cpp/qtdesignercppintegration.cpp (limited to 'languages/cpp/qtdesignercppintegration.cpp') diff --git a/languages/cpp/qtdesignercppintegration.cpp b/languages/cpp/qtdesignercppintegration.cpp new file mode 100644 index 00000000..76581003 --- /dev/null +++ b/languages/cpp/qtdesignercppintegration.cpp @@ -0,0 +1,218 @@ +/*************************************************************************** +* Copyright (C) 2004 by Alexander Dymo * +* adymo@mksat.net * +* Portions Copyright (C) 2003 Roberto Raggi (roberto@kdevelop.org) * +* * +* 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. * +* * +* 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 General Public License * +* along with this program; if not, write to the * +* Free Software Foundation, Inc., * +* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * +***************************************************************************/ +#include "qtdesignercppintegration.h" + +#include +#include + +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include + +#include "backgroundparser.h" +#include "cppsupportpart.h" +#include "codemodel_utils.h" +#include "implementationwidget.h" + +QtDesignerCppIntegration::QtDesignerCppIntegration( KDevLanguageSupport *part, + ImplementationWidget *impl ) +: QtDesignerIntegration( part, impl, true, 0 ) +{} + +void QtDesignerCppIntegration::addFunctionToClass( KInterfaceDesigner::Function function, ClassDom klass ) +{ + m_part->partController() ->editDocument( KURL( klass->fileName() ) ); + KTextEditor::EditInterface* editIface = dynamic_cast( m_part->partController() ->activePart() ); + if ( !editIface ) + { + /// @todo show messagebox + // QDialog::accept(); + return ; + } + + int line, column; + klass->getEndPosition( &line, &column ); + + // compute the insertion point map + QMap > points; + + const FunctionList functionList = klass->functionList(); + for ( FunctionList::ConstIterator it = functionList.begin(); it != functionList.end(); ++it ) + { + int funEndLine, funEndColumn; + ( *it ) ->getEndPosition( &funEndLine, &funEndColumn ); + QString access = accessID( *it ); + QPair funEndPoint = qMakePair( funEndLine, funEndColumn ); + + if ( !points.contains( access ) || points[ access ] < funEndPoint ) + { + points[ access ] = funEndPoint; + } + } + + int insertedLine = 0; + + QString access = function.access + ( function.type == KInterfaceDesigner::ftQtSlot ? " slots" : "" ); + + QString str = function.returnType + " " + function.function; + if ( function.specifier == "virtual" ) + str = "virtual " + str; + else if ( function.specifier == "pure virtual" ) + str = "virtual " + str + " = 0"; + else if ( function.specifier == "static" ) + str = "static " + str; + str += ";\n"; + str = " " + str; + + QPair pt; + if ( points.contains( access ) ) + { + pt = points[ access ]; + } + else + { + str.prepend( access + ":\n" ); + points[ access ] = qMakePair( line - 1, 0 ); + pt = points[ access ]; // end of class declaration + } + + editIface->insertText( pt.first + insertedLine + 1, 0 /*pt.second*/, str ); + insertedLine += str.contains( QChar( '\n' ) ); + + CppSupportPart *cppPart = dynamic_cast( m_part ); + cppPart->backgroundParser() ->addFile( klass->fileName() ); + + if ( function.specifier == "pure virtual" ) + return ; + + + //implementation + QString stri = function.returnType + " " + klass->name() + "::" + function.function; + if ( function.specifier == "static" ) + stri = "static " + stri; + stri += "\n{\n}\n"; + stri = "\n" + stri; + + QFileInfo fi( klass->fileName() ); + QString implementationFile = fi.absFilePath(); + implementationFile.replace( ".h", ".cpp" ); + + QFileInfo fileInfo( implementationFile ); + if ( !QFile::exists( fileInfo.absFilePath() ) ) + { + if ( KDevCreateFile * createFileSupp = m_part->extension( "KDevelop/CreateFile" ) ) + createFileSupp->createNewFile( fileInfo.extension(), fileInfo.dirPath( true ), fileInfo.fileName() ); + } + + m_part->partController() ->editDocument( KURL( implementationFile ) ); + editIface = dynamic_cast( m_part->partController() ->activePart() ); + if ( !editIface ) + return ; + + int atLine = 0, atColumn = 0; + TranslationUnitAST *translationUnit = 0; + ParsedFilePointer p = cppPart->backgroundParser() ->translationUnit( implementationFile ); + if( p ) translationUnit = *p; + if ( translationUnit ) + { + translationUnit->getEndPosition( &atLine, &atColumn ); + kdDebug() << "atLine: " << atLine << endl; + stri = "\n" + stri; + } + else + { + atLine = editIface->numLines(); + line = editIface->numLines(); + while ( line > 0 ) + { + if ( editIface->textLine( line ).isEmpty() ) + { + --line; + continue; + } + else + { + if ( editIface->textLine( line ).contains( QRegExp( ".*#include .*\\.moc.*" ) ) ) + atLine = line; + break; + } + } + kdDebug() << "atLine (2): " << atLine << endl; + atColumn = 0; + } + + // editIface->insertLine( atLine + 1, QString::fromLatin1("") ); + kdDebug() << "at line in intg: " << atLine << " atCol: " << atColumn << endl; + kdDebug() << "text: " << stri << endl; + editIface->insertText( atLine, atColumn, stri ); + KTextEditor::View *activeView = dynamic_cast( m_part->partController() ->activePart() ->widget() ); + if ( activeView ) + { + KTextEditor::ViewCursorInterface * cursor = dynamic_cast( activeView ); + if ( cursor ) + cursor->setCursorPositionReal( atLine + 3, 1 ); + } + + cppPart->backgroundParser() ->addFile( implementationFile ); +} + +QString QtDesignerCppIntegration::accessID( FunctionDom fun ) const +{ + if ( fun->isSignal() ) + return QString::fromLatin1( "signals" ); + + switch ( fun->access() ) + { + case CodeModelItem::Public: + if ( fun->isSlot() ) + return QString::fromLatin1( "public slots" ); + return QString::fromLatin1( "public" ); + + case CodeModelItem::Protected: + if ( fun->isSlot() ) + return QString::fromLatin1( "protected slots" ); + return QString::fromLatin1( "protected" ); + + case CodeModelItem::Private: + if ( fun->isSlot() ) + return QString::fromLatin1( "private slots" ); + return QString::fromLatin1( "private" ); + } + + return QString::null; +} + +void QtDesignerCppIntegration::processImplementationName( QString &name ) +{ + name.replace( ".h", ".cpp" ); +} + +#include "qtdesignercppintegration.moc" + +//kate: indent-mode csands; tab-width 4; space-indent off; -- cgit v1.2.1