diff options
Diffstat (limited to 'dcopjava/dcopidl2java/stubimpl.cpp')
-rw-r--r-- | dcopjava/dcopidl2java/stubimpl.cpp | 68 |
1 files changed, 34 insertions, 34 deletions
diff --git a/dcopjava/dcopidl2java/stubimpl.cpp b/dcopjava/dcopidl2java/stubimpl.cpp index dbb84a93..55e474c9 100644 --- a/dcopjava/dcopidl2java/stubimpl.cpp +++ b/dcopjava/dcopidl2java/stubimpl.cpp @@ -33,15 +33,15 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #include "main.h" -TTQString javaType(TTQString type) +TQString javaType(TQString type) { if (type == "bool") return "boolean"; - if (type == "TTQString") + if (type == "TQString") return "String"; - if (type == "TTQCString") + if (type == "TQCString") return "String"; - if (type == "TTQStringList") + if (type == "TQStringList") return "String[]"; if (type == "short int") return "short"; @@ -52,50 +52,50 @@ TTQString javaType(TTQString type) } -TTQString javaRightAttribute(TTQString attr) +TQString javaRightAttribute(TQString attr) { if (attr == "&") - return TTQString::null; + return TQString::null; return "!!!NOT IMPLEMENTED: " + attr; } -TTQString javaLeftAttribute(TTQString attr) +TQString javaLeftAttribute(TQString attr) { if (attr == "const") - return TTQString::null; + return TQString::null; return "!!!NOT IMPLEMENTED: " + attr; } -TTQString javaQualifier(TTQString qual) +TQString javaQualifier(TQString qual) { if (qual == "const") - return TTQString::null; + return TQString::null; return "!!!NOT IMPLEMENTED: " + qual; } -TTQString underscore(TTQString in) +TQString underscore(TQString in) { - return in.replace(TTQRegExp(" "), "_"); + return in.replace(TQRegExp(" "), "_"); } -TTQString defValue(TTQString type) +TQString defValue(TQString type) { if (type == "bool") return "false"; - if (type == "TTQString") + if (type == "TQString") return "null"; - if (type == "TTQStringList") + if (type == "TQStringList") return "null"; if (type == "DCOPRef") return "null"; - if (type == "TTQCString") + if (type == "TQCString") return "null"; return "0"; @@ -105,13 +105,13 @@ TTQString defValue(TTQString type) /** * Writes the stub implementation */ -void generateStubImpl( const TTQString& idl, const TTQString& package, const TTQString& filename, TTQDomElement de ) +void generateStubImpl( const TQString& idl, const TQString& package, const TQString& filename, TQDomElement de ) { - TTQFile impl( filename ); + TQFile impl( filename ); if ( !impl.open( IO_WriteOnly ) ) qFatal("Could not write to %s", filename.latin1() ); - TTQTextStream str( &impl ); + TQTextStream str( &impl ); str << "/****************************************************************************" << endl; str << "**" << endl; @@ -129,16 +129,16 @@ void generateStubImpl( const TTQString& idl, const TTQString& package, const TTQ str << "import org.kde.DCOP.*;" << endl; str << endl << endl; - TTQDomElement e = de.firstChild().toElement(); + TQDomElement e = de.firstChild().toElement(); for( ; !e.isNull(); e = e.nextSibling().toElement() ) { if ( e.tagName() == "CLASS" ) { - TTQDomElement n = e.firstChild().toElement(); + TQDomElement n = e.firstChild().toElement(); ASSERT( n.tagName() == "NAME" ); - TTQString className = n.firstChild().toText().data() + "_stub"; + TQString className = n.firstChild().toText().data() + "_stub"; // find dcop parent ( rightmost super class ) - TTQString DCOPParent; - TTQDomElement s = n.nextSibling().toElement(); + TQString DCOPParent; + TQDomElement s = n.nextSibling().toElement(); for( ; !s.isNull(); s = s.nextSibling().toElement() ) { if ( s.tagName() == "SUPER" ) DCOPParent = s.firstChild().toText().data(); @@ -163,9 +163,9 @@ void generateStubImpl( const TTQString& idl, const TTQString& package, const TTQ s = e.firstChild().toElement(); for( ; !s.isNull(); s = s.nextSibling().toElement() ) { if ( s.tagName() == "FUNC" ) { - TTQDomElement r = s.firstChild().toElement(); + TQDomElement r = s.firstChild().toElement(); ASSERT( r.tagName() == "TYPE" ); - TTQString result = r.firstChild().toText().data(); + TQString result = r.firstChild().toText().data(); str << " public "; bool async = result == "ASYNC"; if ( async) @@ -180,11 +180,11 @@ void generateStubImpl( const TTQString& idl, const TTQString& package, const TTQ r = r.nextSibling().toElement(); ASSERT ( r.tagName() == "NAME" ); - TTQString funcName = r.firstChild().toText().data(); + TQString funcName = r.firstChild().toText().data(); str << funcName << "("; - TTQStringList args; - TTQStringList argtypes; + TQStringList args; + TQStringList argtypes; bool first = TRUE; r = r.nextSibling().toElement(); for( ; !r.isNull(); r = r.nextSibling().toElement() ) { @@ -192,7 +192,7 @@ void generateStubImpl( const TTQString& idl, const TTQString& package, const TTQ str << ", "; first = FALSE; ASSERT( r.tagName() == "ARG" ); - TTQDomElement a = r.firstChild().toElement(); + TQDomElement a = r.firstChild().toElement(); ASSERT( a.tagName() == "TYPE" ); if ( a.hasAttribute( "qleft" ) ) str << javaLeftAttribute(a.attribute("qleft")) << " "; @@ -202,7 +202,7 @@ void generateStubImpl( const TTQString& idl, const TTQString& package, const TTQ str << javaRightAttribute(a.attribute("qright")) << " "; else str << " "; - args.append(TTQString("arg") + TTQString::number(args.count())) ; + args.append(TQString("arg") + TQString::number(args.count())) ; str << args.last(); } str << ")"; @@ -215,7 +215,7 @@ void generateStubImpl( const TTQString& idl, const TTQString& package, const TTQ funcName += "("; first = TRUE; - for( TTQStringList::Iterator it = argtypes.begin(); it != argtypes.end(); ++it ){ + for( TQStringList::Iterator it = argtypes.begin(); it != argtypes.end(); ++it ){ if ( !first ) funcName += ","; first = FALSE; @@ -230,7 +230,7 @@ void generateStubImpl( const TTQString& idl, const TTQString& package, const TTQ str << " try" << endl; str << " {" << endl; - TTQStringList::Iterator itt, ita; + TQStringList::Iterator itt, ita; for (itt = argtypes.begin(), ita = args.begin(); itt != argtypes.end(); ++itt, ++ita) str << " write_" << *itt << "(os, " << *ita << ");" << endl; } @@ -256,7 +256,7 @@ void generateStubImpl( const TTQString& idl, const TTQString& package, const TTQ str << " try" << endl; str << " {" << endl; - TTQStringList::Iterator itt, ita; + TQStringList::Iterator itt, ita; for (itt = argtypes.begin(), ita = args.begin(); itt != argtypes.end(); ++itt, ++ita) str << " write_" << underscore(*itt) << "(os, " << *ita << ");" << endl; |