kateappIface_skel.cpp
00001
00002
00003
00004
00005
00006
00007
00008
00009 #include "./kateappIface.h"
00010
00011 #include <kdatastream.h>
00012
00013
00014 static const char* const KateAppDCOPIface_ftable[6][3] = {
00015 { "DCOPRef", "documentManager()", "documentManager()" },
00016 { "DCOPRef", "activeMainWindow()", "activeMainWindow()" },
00017 { "uint", "activeMainWindowNumber()", "activeMainWindowNumber()" },
00018 { "uint", "mainWindows()", "mainWindows()" },
00019 { "DCOPRef", "mainWindow(uint)", "mainWindow(uint n)" },
00020 { 0, 0, 0 }
00021 };
00022 static const int KateAppDCOPIface_ftable_hiddens[5] = {
00023 0,
00024 0,
00025 0,
00026 0,
00027 0,
00028 };
00029
00030 bool KateAppDCOPIface::process(const QCString &fun, const QByteArray &data, QCString& replyType, QByteArray &replyData)
00031 {
00032 if ( fun == KateAppDCOPIface_ftable[0][1] ) {
00033 replyType = KateAppDCOPIface_ftable[0][0];
00034 QDataStream _replyStream( replyData, IO_WriteOnly );
00035 _replyStream << documentManager( );
00036 } else if ( fun == KateAppDCOPIface_ftable[1][1] ) {
00037 replyType = KateAppDCOPIface_ftable[1][0];
00038 QDataStream _replyStream( replyData, IO_WriteOnly );
00039 _replyStream << activeMainWindow( );
00040 } else if ( fun == KateAppDCOPIface_ftable[2][1] ) {
00041 replyType = KateAppDCOPIface_ftable[2][0];
00042 QDataStream _replyStream( replyData, IO_WriteOnly );
00043 _replyStream << activeMainWindowNumber( );
00044 } else if ( fun == KateAppDCOPIface_ftable[3][1] ) {
00045 replyType = KateAppDCOPIface_ftable[3][0];
00046 QDataStream _replyStream( replyData, IO_WriteOnly );
00047 _replyStream << mainWindows( );
00048 } else if ( fun == KateAppDCOPIface_ftable[4][1] ) {
00049 uint arg0;
00050 QDataStream arg( data, IO_ReadOnly );
00051 if (arg.atEnd()) return false;
00052 arg >> arg0;
00053 replyType = KateAppDCOPIface_ftable[4][0];
00054 QDataStream _replyStream( replyData, IO_WriteOnly );
00055 _replyStream << mainWindow(arg0 );
00056 } else {
00057 return DCOPObject::process( fun, data, replyType, replyData );
00058 }
00059 return true;
00060 }
00061
00062 QCStringList KateAppDCOPIface::interfaces()
00063 {
00064 QCStringList ifaces = DCOPObject::interfaces();
00065 ifaces += "KateAppDCOPIface";
00066 return ifaces;
00067 }
00068
00069 QCStringList KateAppDCOPIface::functions()
00070 {
00071 QCStringList funcs = DCOPObject::functions();
00072 for ( int i = 0; KateAppDCOPIface_ftable[i][2]; i++ ) {
00073 if (KateAppDCOPIface_ftable_hiddens[i])
00074 continue;
00075 QCString func = KateAppDCOPIface_ftable[i][0];
00076 func += ' ';
00077 func += KateAppDCOPIface_ftable[i][2];
00078 funcs << func;
00079 }
00080 return funcs;
00081 }
00082
00083
This file is part of the documentation for kate Library Version 3.4.1.