1 | /**********************************************************************
|
---|
2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved.
|
---|
3 | **
|
---|
4 | ** This file is part of Qt Designer.
|
---|
5 | **
|
---|
6 | ** This file may be distributed and/or modified under the terms of the
|
---|
7 | ** GNU General Public License version 2 as published by the Free Software
|
---|
8 | ** Foundation and appearing in the file LICENSE.GPL included in the
|
---|
9 | ** packaging of this file.
|
---|
10 | **
|
---|
11 | ** Licensees holding valid Qt Enterprise Edition or Qt Professional Edition
|
---|
12 | ** licenses may use this file in accordance with the Qt Commercial License
|
---|
13 | ** Agreement provided with the Software.
|
---|
14 | **
|
---|
15 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
|
---|
16 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
---|
17 | **
|
---|
18 | ** See http://www.trolltech.com/gpl/ for GPL licensing information.
|
---|
19 | ** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for
|
---|
20 | ** information about Qt Commercial License Agreements.
|
---|
21 | **
|
---|
22 | ** Contact info@trolltech.com if any conditions of this licensing are
|
---|
23 | ** not clear to you.
|
---|
24 | **
|
---|
25 | **********************************************************************/
|
---|
26 |
|
---|
27 | #include "parser.h"
|
---|
28 | #include <qobject.h>
|
---|
29 | #include <qstringlist.h>
|
---|
30 |
|
---|
31 | class NormalizeObject : public QObject
|
---|
32 | {
|
---|
33 | public:
|
---|
34 | NormalizeObject() : QObject() {}
|
---|
35 | static QCString normalizeSignalSlot( const char *signalSlot ) { return QObject::normalizeSignalSlot( signalSlot ); }
|
---|
36 | };
|
---|
37 |
|
---|
38 | QString Parser::cleanArgs( const QString &func )
|
---|
39 | {
|
---|
40 | QString slot( func );
|
---|
41 | int begin = slot.find( "(" ) + 1;
|
---|
42 | QString args = slot.mid( begin );
|
---|
43 | args = args.left( args.find( ")" ) );
|
---|
44 | QStringList lst = QStringList::split( ',', args );
|
---|
45 | QString res = slot.left( begin );
|
---|
46 | for ( QStringList::Iterator it = lst.begin(); it != lst.end(); ++it ) {
|
---|
47 | if ( it != lst.begin() )
|
---|
48 | res += ",";
|
---|
49 | QString arg = *it;
|
---|
50 | int pos = 0;
|
---|
51 | if ( ( pos = arg.find( "&" ) ) != -1 ) {
|
---|
52 | arg = arg.left( pos + 1 );
|
---|
53 | } else if ( ( pos = arg.find( "*" ) ) != -1 ) {
|
---|
54 | arg = arg.left( pos + 1 );
|
---|
55 | } else {
|
---|
56 | arg = arg.simplifyWhiteSpace();
|
---|
57 | if ( ( pos = arg.find( ':' ) ) != -1 )
|
---|
58 | arg = arg.left( pos ).simplifyWhiteSpace() + ":" + arg.mid( pos + 1 ).simplifyWhiteSpace();
|
---|
59 | QStringList l = QStringList::split( ' ', arg );
|
---|
60 | if ( l.count() == 2 ) {
|
---|
61 | if ( l[ 0 ] != "const" && l[ 0 ] != "unsigned" && l[ 0 ] != "var" )
|
---|
62 | arg = l[ 0 ];
|
---|
63 | } else if ( l.count() == 3 ) {
|
---|
64 | arg = l[ 0 ] + " " + l[ 1 ];
|
---|
65 | }
|
---|
66 | }
|
---|
67 | res += arg;
|
---|
68 | }
|
---|
69 | res += ")";
|
---|
70 |
|
---|
71 | return QString::fromLatin1( NormalizeObject::normalizeSignalSlot( res.latin1() ) );
|
---|
72 | }
|
---|