module dcop

class DCOPClient

DCOPClient is fully implemented except as noted:

registeredApplications ()

TAKES nothing and RETURNS result (a Python list of QCString).

C++:  QCStringList  registeredApplications ()

remoteObjects (remApp)

TAKES remApp (QCString) and RETURNS a tuple - ( result (a Python list of QCString), ok (int)).

C++:  QCStringList  remoteObjects (const QCString& remApp, 
                                   bool* ok = 0)

remoteInterfaces (remApp, remObj)

TAKES remApp (QCString), remObj (QCString) and RETURNS a tuple - ( result (a Python list of QCString), ok (int)).

C++:  QCStringList  remoteInterfaces (const QCString& remApp, 
                                      const QCString& remObj,
                                      bool* ok = 0)

remoteFunctions (remApp, remObj)

TAKES remApp (QCString), remObj (QCString) and RETURNS a tuple - ( result (a Python list of QCString), ok (int)).

C++:  QCStringList  remoteFunctions (const QCString& remApp, 
                                     const QCString& remObj,
                                     bool* ok = 0)

class DCOPObject

DCOPObject is fully implemented except as noted:

functionsDynamic () [KDE 3.0.0 - ]

TAKES nothing and RETURNS result (a Python list of QCString).

C++:  virtual QCStringList  functionsDynamic ()

interfacesDynamic () [KDE 3.0.0 - ]

TAKES nothing and RETURNS result (a Python list of QCString).

C++:  virtual QCStringList  interfacesDynamic ()

interfaces ()

TAKES nothing and RETURNS result (a Python list of QCString).

C++:  virtual QCStringList  interfaces ()

functions ()

TAKES nothing and RETURNS result (a Python list of QCString).

C++:  virtual QCStringList  functions ()

match (partialId) [KDE 3.0.0 - ]

TAKES partialId (QCString) and RETURNS result (a Python list of DCOPObject). match is a static member function.

C++:  static QPtrList<DCOPObject>  match 
          (const QCString& partialId)

match (a0) [ - KDE 3.0.0]

TAKES a0 (QCString) and RETURNS result (a Python list of DCOPObject). match is a static member function.

C++:  static QList<DCOPObject>  match (const QCString& a0)

class DCOPObjectProxy

DCOPObjectProxy is fully implemented except as noted:

class DCOPReply [KDE 3.1.0 - ]

DCOPReply is fully implemented except as noted:

class DCOPArg

DCOPArg is NOT implemented

class DCOPRef

DCOPRef is fully implemented except as noted:

class DCOPStub

DCOPStub is fully implemented except as noted:

DCOPStub (DCOPStub::never_use_t a0)

NOT implemented