Home · All Classes · All Namespaces · Modules · Functions · Files
cli-connection-body.hpp
00001 #define IN_TP_QT_HEADER
00002 #include "TelepathyQt/connection.h"
00003 
00004 namespace Tp
00005 {
00006 namespace Client
00007 {
00008 
00009 ConnectionInterface::ConnectionInterface(const QString& busName, const QString& objectPath, QObject *parent)
00010     : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), QDBusConnection::sessionBus(), parent)
00011 {
00012 }
00013 
00014 ConnectionInterface::ConnectionInterface(const QDBusConnection& connection, const QString& busName, const QString& objectPath, QObject *parent)
00015     : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), connection, parent)
00016 {
00017 }
00018 
00019 ConnectionInterface::ConnectionInterface(Tp::DBusProxy *proxy)
00020     : Tp::AbstractInterface(proxy, staticInterfaceName())
00021 {
00022 }
00023 
00024 void ConnectionInterface::invalidate(Tp::DBusProxy *proxy,
00025         const QString &error, const QString &message)
00026 {
00027     disconnect(this, SIGNAL(SelfHandleChanged(uint)), NULL, NULL);
00028     disconnect(this, SIGNAL(SelfContactChanged(uint, const QString&)), NULL, NULL);
00029     disconnect(this, SIGNAL(NewChannel(const QDBusObjectPath&, const QString&, uint, uint, bool)), NULL, NULL);
00030     disconnect(this, SIGNAL(ConnectionError(const QString&, const QVariantMap&)), NULL, NULL);
00031     disconnect(this, SIGNAL(StatusChanged(uint, uint)), NULL, NULL);
00032 
00033     Tp::AbstractInterface::invalidate(proxy, error, message);
00034 }
00035 
00036 ConnectionInterfaceAddressingInterface::ConnectionInterfaceAddressingInterface(const QString& busName, const QString& objectPath, QObject *parent)
00037     : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), QDBusConnection::sessionBus(), parent)
00038 {
00039 }
00040 
00041 ConnectionInterfaceAddressingInterface::ConnectionInterfaceAddressingInterface(const QDBusConnection& connection, const QString& busName, const QString& objectPath, QObject *parent)
00042     : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), connection, parent)
00043 {
00044 }
00045 
00046 ConnectionInterfaceAddressingInterface::ConnectionInterfaceAddressingInterface(Tp::DBusProxy *proxy)
00047     : Tp::AbstractInterface(proxy, staticInterfaceName())
00048 {
00049 }
00050 
00051 ConnectionInterfaceAddressingInterface::ConnectionInterfaceAddressingInterface(const Tp::Client::ConnectionInterface& mainInterface)
00052     : Tp::AbstractInterface(mainInterface.service(), mainInterface.path(), staticInterfaceName(), mainInterface.connection(), mainInterface.parent())
00053 {
00054 }
00055 
00056 ConnectionInterfaceAddressingInterface::ConnectionInterfaceAddressingInterface(const Tp::Client::ConnectionInterface& mainInterface, QObject *parent)
00057     : Tp::AbstractInterface(mainInterface.service(), mainInterface.path(), staticInterfaceName(), mainInterface.connection(), parent)
00058 {
00059 }
00060 
00061 void ConnectionInterfaceAddressingInterface::invalidate(Tp::DBusProxy *proxy,
00062         const QString &error, const QString &message)
00063 {
00064 
00065     Tp::AbstractInterface::invalidate(proxy, error, message);
00066 }
00067 
00068 ConnectionInterfaceAliasingInterface::ConnectionInterfaceAliasingInterface(const QString& busName, const QString& objectPath, QObject *parent)
00069     : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), QDBusConnection::sessionBus(), parent)
00070 {
00071 }
00072 
00073 ConnectionInterfaceAliasingInterface::ConnectionInterfaceAliasingInterface(const QDBusConnection& connection, const QString& busName, const QString& objectPath, QObject *parent)
00074     : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), connection, parent)
00075 {
00076 }
00077 
00078 ConnectionInterfaceAliasingInterface::ConnectionInterfaceAliasingInterface(Tp::DBusProxy *proxy)
00079     : Tp::AbstractInterface(proxy, staticInterfaceName())
00080 {
00081 }
00082 
00083 ConnectionInterfaceAliasingInterface::ConnectionInterfaceAliasingInterface(const Tp::Client::ConnectionInterface& mainInterface)
00084     : Tp::AbstractInterface(mainInterface.service(), mainInterface.path(), staticInterfaceName(), mainInterface.connection(), mainInterface.parent())
00085 {
00086 }
00087 
00088 ConnectionInterfaceAliasingInterface::ConnectionInterfaceAliasingInterface(const Tp::Client::ConnectionInterface& mainInterface, QObject *parent)
00089     : Tp::AbstractInterface(mainInterface.service(), mainInterface.path(), staticInterfaceName(), mainInterface.connection(), parent)
00090 {
00091 }
00092 
00093 void ConnectionInterfaceAliasingInterface::invalidate(Tp::DBusProxy *proxy,
00094         const QString &error, const QString &message)
00095 {
00096     disconnect(this, SIGNAL(AliasesChanged(const Tp::AliasPairList&)), NULL, NULL);
00097 
00098     Tp::AbstractInterface::invalidate(proxy, error, message);
00099 }
00100 
00101 ConnectionInterfaceAnonymityInterface::ConnectionInterfaceAnonymityInterface(const QString& busName, const QString& objectPath, QObject *parent)
00102     : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), QDBusConnection::sessionBus(), parent)
00103 {
00104 }
00105 
00106 ConnectionInterfaceAnonymityInterface::ConnectionInterfaceAnonymityInterface(const QDBusConnection& connection, const QString& busName, const QString& objectPath, QObject *parent)
00107     : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), connection, parent)
00108 {
00109 }
00110 
00111 ConnectionInterfaceAnonymityInterface::ConnectionInterfaceAnonymityInterface(Tp::DBusProxy *proxy)
00112     : Tp::AbstractInterface(proxy, staticInterfaceName())
00113 {
00114 }
00115 
00116 ConnectionInterfaceAnonymityInterface::ConnectionInterfaceAnonymityInterface(const Tp::Client::ConnectionInterface& mainInterface)
00117     : Tp::AbstractInterface(mainInterface.service(), mainInterface.path(), staticInterfaceName(), mainInterface.connection(), mainInterface.parent())
00118 {
00119 }
00120 
00121 ConnectionInterfaceAnonymityInterface::ConnectionInterfaceAnonymityInterface(const Tp::Client::ConnectionInterface& mainInterface, QObject *parent)
00122     : Tp::AbstractInterface(mainInterface.service(), mainInterface.path(), staticInterfaceName(), mainInterface.connection(), parent)
00123 {
00124 }
00125 
00126 void ConnectionInterfaceAnonymityInterface::invalidate(Tp::DBusProxy *proxy,
00127         const QString &error, const QString &message)
00128 {
00129     disconnect(this, SIGNAL(AnonymityModesChanged(uint)), NULL, NULL);
00130 
00131     Tp::AbstractInterface::invalidate(proxy, error, message);
00132 }
00133 
00134 ConnectionInterfaceAvatarsInterface::ConnectionInterfaceAvatarsInterface(const QString& busName, const QString& objectPath, QObject *parent)
00135     : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), QDBusConnection::sessionBus(), parent)
00136 {
00137 }
00138 
00139 ConnectionInterfaceAvatarsInterface::ConnectionInterfaceAvatarsInterface(const QDBusConnection& connection, const QString& busName, const QString& objectPath, QObject *parent)
00140     : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), connection, parent)
00141 {
00142 }
00143 
00144 ConnectionInterfaceAvatarsInterface::ConnectionInterfaceAvatarsInterface(Tp::DBusProxy *proxy)
00145     : Tp::AbstractInterface(proxy, staticInterfaceName())
00146 {
00147 }
00148 
00149 ConnectionInterfaceAvatarsInterface::ConnectionInterfaceAvatarsInterface(const Tp::Client::ConnectionInterface& mainInterface)
00150     : Tp::AbstractInterface(mainInterface.service(), mainInterface.path(), staticInterfaceName(), mainInterface.connection(), mainInterface.parent())
00151 {
00152 }
00153 
00154 ConnectionInterfaceAvatarsInterface::ConnectionInterfaceAvatarsInterface(const Tp::Client::ConnectionInterface& mainInterface, QObject *parent)
00155     : Tp::AbstractInterface(mainInterface.service(), mainInterface.path(), staticInterfaceName(), mainInterface.connection(), parent)
00156 {
00157 }
00158 
00159 void ConnectionInterfaceAvatarsInterface::invalidate(Tp::DBusProxy *proxy,
00160         const QString &error, const QString &message)
00161 {
00162     disconnect(this, SIGNAL(AvatarUpdated(uint, const QString&)), NULL, NULL);
00163     disconnect(this, SIGNAL(AvatarRetrieved(uint, const QString&, const QByteArray&, const QString&)), NULL, NULL);
00164 
00165     Tp::AbstractInterface::invalidate(proxy, error, message);
00166 }
00167 
00168 ConnectionInterfaceBalanceInterface::ConnectionInterfaceBalanceInterface(const QString& busName, const QString& objectPath, QObject *parent)
00169     : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), QDBusConnection::sessionBus(), parent)
00170 {
00171 }
00172 
00173 ConnectionInterfaceBalanceInterface::ConnectionInterfaceBalanceInterface(const QDBusConnection& connection, const QString& busName, const QString& objectPath, QObject *parent)
00174     : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), connection, parent)
00175 {
00176 }
00177 
00178 ConnectionInterfaceBalanceInterface::ConnectionInterfaceBalanceInterface(Tp::DBusProxy *proxy)
00179     : Tp::AbstractInterface(proxy, staticInterfaceName())
00180 {
00181 }
00182 
00183 ConnectionInterfaceBalanceInterface::ConnectionInterfaceBalanceInterface(const Tp::Client::ConnectionInterface& mainInterface)
00184     : Tp::AbstractInterface(mainInterface.service(), mainInterface.path(), staticInterfaceName(), mainInterface.connection(), mainInterface.parent())
00185 {
00186 }
00187 
00188 ConnectionInterfaceBalanceInterface::ConnectionInterfaceBalanceInterface(const Tp::Client::ConnectionInterface& mainInterface, QObject *parent)
00189     : Tp::AbstractInterface(mainInterface.service(), mainInterface.path(), staticInterfaceName(), mainInterface.connection(), parent)
00190 {
00191 }
00192 
00193 void ConnectionInterfaceBalanceInterface::invalidate(Tp::DBusProxy *proxy,
00194         const QString &error, const QString &message)
00195 {
00196     disconnect(this, SIGNAL(BalanceChanged(const Tp::CurrencyAmount&)), NULL, NULL);
00197 
00198     Tp::AbstractInterface::invalidate(proxy, error, message);
00199 }
00200 
00201 ConnectionInterfaceCapabilitiesInterface::ConnectionInterfaceCapabilitiesInterface(const QString& busName, const QString& objectPath, QObject *parent)
00202     : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), QDBusConnection::sessionBus(), parent)
00203 {
00204 }
00205 
00206 ConnectionInterfaceCapabilitiesInterface::ConnectionInterfaceCapabilitiesInterface(const QDBusConnection& connection, const QString& busName, const QString& objectPath, QObject *parent)
00207     : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), connection, parent)
00208 {
00209 }
00210 
00211 ConnectionInterfaceCapabilitiesInterface::ConnectionInterfaceCapabilitiesInterface(Tp::DBusProxy *proxy)
00212     : Tp::AbstractInterface(proxy, staticInterfaceName())
00213 {
00214 }
00215 
00216 ConnectionInterfaceCapabilitiesInterface::ConnectionInterfaceCapabilitiesInterface(const Tp::Client::ConnectionInterface& mainInterface)
00217     : Tp::AbstractInterface(mainInterface.service(), mainInterface.path(), staticInterfaceName(), mainInterface.connection(), mainInterface.parent())
00218 {
00219 }
00220 
00221 ConnectionInterfaceCapabilitiesInterface::ConnectionInterfaceCapabilitiesInterface(const Tp::Client::ConnectionInterface& mainInterface, QObject *parent)
00222     : Tp::AbstractInterface(mainInterface.service(), mainInterface.path(), staticInterfaceName(), mainInterface.connection(), parent)
00223 {
00224 }
00225 
00226 void ConnectionInterfaceCapabilitiesInterface::invalidate(Tp::DBusProxy *proxy,
00227         const QString &error, const QString &message)
00228 {
00229     disconnect(this, SIGNAL(CapabilitiesChanged(const Tp::CapabilityChangeList&)), NULL, NULL);
00230 
00231     Tp::AbstractInterface::invalidate(proxy, error, message);
00232 }
00233 
00234 ConnectionInterfaceCellularInterface::ConnectionInterfaceCellularInterface(const QString& busName, const QString& objectPath, QObject *parent)
00235     : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), QDBusConnection::sessionBus(), parent)
00236 {
00237 }
00238 
00239 ConnectionInterfaceCellularInterface::ConnectionInterfaceCellularInterface(const QDBusConnection& connection, const QString& busName, const QString& objectPath, QObject *parent)
00240     : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), connection, parent)
00241 {
00242 }
00243 
00244 ConnectionInterfaceCellularInterface::ConnectionInterfaceCellularInterface(Tp::DBusProxy *proxy)
00245     : Tp::AbstractInterface(proxy, staticInterfaceName())
00246 {
00247 }
00248 
00249 ConnectionInterfaceCellularInterface::ConnectionInterfaceCellularInterface(const Tp::Client::ConnectionInterface& mainInterface)
00250     : Tp::AbstractInterface(mainInterface.service(), mainInterface.path(), staticInterfaceName(), mainInterface.connection(), mainInterface.parent())
00251 {
00252 }
00253 
00254 ConnectionInterfaceCellularInterface::ConnectionInterfaceCellularInterface(const Tp::Client::ConnectionInterface& mainInterface, QObject *parent)
00255     : Tp::AbstractInterface(mainInterface.service(), mainInterface.path(), staticInterfaceName(), mainInterface.connection(), parent)
00256 {
00257 }
00258 
00259 void ConnectionInterfaceCellularInterface::invalidate(Tp::DBusProxy *proxy,
00260         const QString &error, const QString &message)
00261 {
00262     disconnect(this, SIGNAL(IMSIChanged(const QString&)), NULL, NULL);
00263 
00264     Tp::AbstractInterface::invalidate(proxy, error, message);
00265 }
00266 
00267 ConnectionInterfaceClientTypesInterface::ConnectionInterfaceClientTypesInterface(const QString& busName, const QString& objectPath, QObject *parent)
00268     : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), QDBusConnection::sessionBus(), parent)
00269 {
00270 }
00271 
00272 ConnectionInterfaceClientTypesInterface::ConnectionInterfaceClientTypesInterface(const QDBusConnection& connection, const QString& busName, const QString& objectPath, QObject *parent)
00273     : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), connection, parent)
00274 {
00275 }
00276 
00277 ConnectionInterfaceClientTypesInterface::ConnectionInterfaceClientTypesInterface(Tp::DBusProxy *proxy)
00278     : Tp::AbstractInterface(proxy, staticInterfaceName())
00279 {
00280 }
00281 
00282 ConnectionInterfaceClientTypesInterface::ConnectionInterfaceClientTypesInterface(const Tp::Client::ConnectionInterface& mainInterface)
00283     : Tp::AbstractInterface(mainInterface.service(), mainInterface.path(), staticInterfaceName(), mainInterface.connection(), mainInterface.parent())
00284 {
00285 }
00286 
00287 ConnectionInterfaceClientTypesInterface::ConnectionInterfaceClientTypesInterface(const Tp::Client::ConnectionInterface& mainInterface, QObject *parent)
00288     : Tp::AbstractInterface(mainInterface.service(), mainInterface.path(), staticInterfaceName(), mainInterface.connection(), parent)
00289 {
00290 }
00291 
00292 void ConnectionInterfaceClientTypesInterface::invalidate(Tp::DBusProxy *proxy,
00293         const QString &error, const QString &message)
00294 {
00295     disconnect(this, SIGNAL(ClientTypesUpdated(uint, const QStringList&)), NULL, NULL);
00296 
00297     Tp::AbstractInterface::invalidate(proxy, error, message);
00298 }
00299 
00300 ConnectionInterfaceContactBlockingInterface::ConnectionInterfaceContactBlockingInterface(const QString& busName, const QString& objectPath, QObject *parent)
00301     : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), QDBusConnection::sessionBus(), parent)
00302 {
00303 }
00304 
00305 ConnectionInterfaceContactBlockingInterface::ConnectionInterfaceContactBlockingInterface(const QDBusConnection& connection, const QString& busName, const QString& objectPath, QObject *parent)
00306     : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), connection, parent)
00307 {
00308 }
00309 
00310 ConnectionInterfaceContactBlockingInterface::ConnectionInterfaceContactBlockingInterface(Tp::DBusProxy *proxy)
00311     : Tp::AbstractInterface(proxy, staticInterfaceName())
00312 {
00313 }
00314 
00315 ConnectionInterfaceContactBlockingInterface::ConnectionInterfaceContactBlockingInterface(const Tp::Client::ConnectionInterface& mainInterface)
00316     : Tp::AbstractInterface(mainInterface.service(), mainInterface.path(), staticInterfaceName(), mainInterface.connection(), mainInterface.parent())
00317 {
00318 }
00319 
00320 ConnectionInterfaceContactBlockingInterface::ConnectionInterfaceContactBlockingInterface(const Tp::Client::ConnectionInterface& mainInterface, QObject *parent)
00321     : Tp::AbstractInterface(mainInterface.service(), mainInterface.path(), staticInterfaceName(), mainInterface.connection(), parent)
00322 {
00323 }
00324 
00325 void ConnectionInterfaceContactBlockingInterface::invalidate(Tp::DBusProxy *proxy,
00326         const QString &error, const QString &message)
00327 {
00328     disconnect(this, SIGNAL(BlockedContactsChanged(const Tp::HandleIdentifierMap&, const Tp::HandleIdentifierMap&)), NULL, NULL);
00329 
00330     Tp::AbstractInterface::invalidate(proxy, error, message);
00331 }
00332 
00333 ConnectionInterfaceContactCapabilitiesInterface::ConnectionInterfaceContactCapabilitiesInterface(const QString& busName, const QString& objectPath, QObject *parent)
00334     : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), QDBusConnection::sessionBus(), parent)
00335 {
00336 }
00337 
00338 ConnectionInterfaceContactCapabilitiesInterface::ConnectionInterfaceContactCapabilitiesInterface(const QDBusConnection& connection, const QString& busName, const QString& objectPath, QObject *parent)
00339     : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), connection, parent)
00340 {
00341 }
00342 
00343 ConnectionInterfaceContactCapabilitiesInterface::ConnectionInterfaceContactCapabilitiesInterface(Tp::DBusProxy *proxy)
00344     : Tp::AbstractInterface(proxy, staticInterfaceName())
00345 {
00346 }
00347 
00348 ConnectionInterfaceContactCapabilitiesInterface::ConnectionInterfaceContactCapabilitiesInterface(const Tp::Client::ConnectionInterface& mainInterface)
00349     : Tp::AbstractInterface(mainInterface.service(), mainInterface.path(), staticInterfaceName(), mainInterface.connection(), mainInterface.parent())
00350 {
00351 }
00352 
00353 ConnectionInterfaceContactCapabilitiesInterface::ConnectionInterfaceContactCapabilitiesInterface(const Tp::Client::ConnectionInterface& mainInterface, QObject *parent)
00354     : Tp::AbstractInterface(mainInterface.service(), mainInterface.path(), staticInterfaceName(), mainInterface.connection(), parent)
00355 {
00356 }
00357 
00358 void ConnectionInterfaceContactCapabilitiesInterface::invalidate(Tp::DBusProxy *proxy,
00359         const QString &error, const QString &message)
00360 {
00361     disconnect(this, SIGNAL(ContactCapabilitiesChanged(const Tp::ContactCapabilitiesMap&)), NULL, NULL);
00362 
00363     Tp::AbstractInterface::invalidate(proxy, error, message);
00364 }
00365 
00366 ConnectionInterfaceContactGroupsInterface::ConnectionInterfaceContactGroupsInterface(const QString& busName, const QString& objectPath, QObject *parent)
00367     : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), QDBusConnection::sessionBus(), parent)
00368 {
00369 }
00370 
00371 ConnectionInterfaceContactGroupsInterface::ConnectionInterfaceContactGroupsInterface(const QDBusConnection& connection, const QString& busName, const QString& objectPath, QObject *parent)
00372     : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), connection, parent)
00373 {
00374 }
00375 
00376 ConnectionInterfaceContactGroupsInterface::ConnectionInterfaceContactGroupsInterface(Tp::DBusProxy *proxy)
00377     : Tp::AbstractInterface(proxy, staticInterfaceName())
00378 {
00379 }
00380 
00381 ConnectionInterfaceContactGroupsInterface::ConnectionInterfaceContactGroupsInterface(const Tp::Client::ConnectionInterface& mainInterface)
00382     : Tp::AbstractInterface(mainInterface.service(), mainInterface.path(), staticInterfaceName(), mainInterface.connection(), mainInterface.parent())
00383 {
00384 }
00385 
00386 ConnectionInterfaceContactGroupsInterface::ConnectionInterfaceContactGroupsInterface(const Tp::Client::ConnectionInterface& mainInterface, QObject *parent)
00387     : Tp::AbstractInterface(mainInterface.service(), mainInterface.path(), staticInterfaceName(), mainInterface.connection(), parent)
00388 {
00389 }
00390 
00391 void ConnectionInterfaceContactGroupsInterface::invalidate(Tp::DBusProxy *proxy,
00392         const QString &error, const QString &message)
00393 {
00394     disconnect(this, SIGNAL(GroupsChanged(const Tp::UIntList&, const QStringList&, const QStringList&)), NULL, NULL);
00395     disconnect(this, SIGNAL(GroupsCreated(const QStringList&)), NULL, NULL);
00396     disconnect(this, SIGNAL(GroupRenamed(const QString&, const QString&)), NULL, NULL);
00397     disconnect(this, SIGNAL(GroupsRemoved(const QStringList&)), NULL, NULL);
00398 
00399     Tp::AbstractInterface::invalidate(proxy, error, message);
00400 }
00401 
00402 ConnectionInterfaceContactInfoInterface::ConnectionInterfaceContactInfoInterface(const QString& busName, const QString& objectPath, QObject *parent)
00403     : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), QDBusConnection::sessionBus(), parent)
00404 {
00405 }
00406 
00407 ConnectionInterfaceContactInfoInterface::ConnectionInterfaceContactInfoInterface(const QDBusConnection& connection, const QString& busName, const QString& objectPath, QObject *parent)
00408     : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), connection, parent)
00409 {
00410 }
00411 
00412 ConnectionInterfaceContactInfoInterface::ConnectionInterfaceContactInfoInterface(Tp::DBusProxy *proxy)
00413     : Tp::AbstractInterface(proxy, staticInterfaceName())
00414 {
00415 }
00416 
00417 ConnectionInterfaceContactInfoInterface::ConnectionInterfaceContactInfoInterface(const Tp::Client::ConnectionInterface& mainInterface)
00418     : Tp::AbstractInterface(mainInterface.service(), mainInterface.path(), staticInterfaceName(), mainInterface.connection(), mainInterface.parent())
00419 {
00420 }
00421 
00422 ConnectionInterfaceContactInfoInterface::ConnectionInterfaceContactInfoInterface(const Tp::Client::ConnectionInterface& mainInterface, QObject *parent)
00423     : Tp::AbstractInterface(mainInterface.service(), mainInterface.path(), staticInterfaceName(), mainInterface.connection(), parent)
00424 {
00425 }
00426 
00427 void ConnectionInterfaceContactInfoInterface::invalidate(Tp::DBusProxy *proxy,
00428         const QString &error, const QString &message)
00429 {
00430     disconnect(this, SIGNAL(ContactInfoChanged(uint, const Tp::ContactInfoFieldList&)), NULL, NULL);
00431 
00432     Tp::AbstractInterface::invalidate(proxy, error, message);
00433 }
00434 
00435 ConnectionInterfaceContactListInterface::ConnectionInterfaceContactListInterface(const QString& busName, const QString& objectPath, QObject *parent)
00436     : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), QDBusConnection::sessionBus(), parent)
00437 {
00438 }
00439 
00440 ConnectionInterfaceContactListInterface::ConnectionInterfaceContactListInterface(const QDBusConnection& connection, const QString& busName, const QString& objectPath, QObject *parent)
00441     : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), connection, parent)
00442 {
00443 }
00444 
00445 ConnectionInterfaceContactListInterface::ConnectionInterfaceContactListInterface(Tp::DBusProxy *proxy)
00446     : Tp::AbstractInterface(proxy, staticInterfaceName())
00447 {
00448 }
00449 
00450 ConnectionInterfaceContactListInterface::ConnectionInterfaceContactListInterface(const Tp::Client::ConnectionInterface& mainInterface)
00451     : Tp::AbstractInterface(mainInterface.service(), mainInterface.path(), staticInterfaceName(), mainInterface.connection(), mainInterface.parent())
00452 {
00453 }
00454 
00455 ConnectionInterfaceContactListInterface::ConnectionInterfaceContactListInterface(const Tp::Client::ConnectionInterface& mainInterface, QObject *parent)
00456     : Tp::AbstractInterface(mainInterface.service(), mainInterface.path(), staticInterfaceName(), mainInterface.connection(), parent)
00457 {
00458 }
00459 
00460 void ConnectionInterfaceContactListInterface::invalidate(Tp::DBusProxy *proxy,
00461         const QString &error, const QString &message)
00462 {
00463     disconnect(this, SIGNAL(ContactListStateChanged(uint)), NULL, NULL);
00464     disconnect(this, SIGNAL(ContactsChangedWithID(const Tp::ContactSubscriptionMap&, const Tp::HandleIdentifierMap&, const Tp::HandleIdentifierMap&)), NULL, NULL);
00465     disconnect(this, SIGNAL(ContactsChanged(const Tp::ContactSubscriptionMap&, const Tp::UIntList&)), NULL, NULL);
00466 
00467     Tp::AbstractInterface::invalidate(proxy, error, message);
00468 }
00469 
00470 ConnectionInterfaceContactsInterface::ConnectionInterfaceContactsInterface(const QString& busName, const QString& objectPath, QObject *parent)
00471     : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), QDBusConnection::sessionBus(), parent)
00472 {
00473 }
00474 
00475 ConnectionInterfaceContactsInterface::ConnectionInterfaceContactsInterface(const QDBusConnection& connection, const QString& busName, const QString& objectPath, QObject *parent)
00476     : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), connection, parent)
00477 {
00478 }
00479 
00480 ConnectionInterfaceContactsInterface::ConnectionInterfaceContactsInterface(Tp::DBusProxy *proxy)
00481     : Tp::AbstractInterface(proxy, staticInterfaceName())
00482 {
00483 }
00484 
00485 ConnectionInterfaceContactsInterface::ConnectionInterfaceContactsInterface(const Tp::Client::ConnectionInterface& mainInterface)
00486     : Tp::AbstractInterface(mainInterface.service(), mainInterface.path(), staticInterfaceName(), mainInterface.connection(), mainInterface.parent())
00487 {
00488 }
00489 
00490 ConnectionInterfaceContactsInterface::ConnectionInterfaceContactsInterface(const Tp::Client::ConnectionInterface& mainInterface, QObject *parent)
00491     : Tp::AbstractInterface(mainInterface.service(), mainInterface.path(), staticInterfaceName(), mainInterface.connection(), parent)
00492 {
00493 }
00494 
00495 void ConnectionInterfaceContactsInterface::invalidate(Tp::DBusProxy *proxy,
00496         const QString &error, const QString &message)
00497 {
00498 
00499     Tp::AbstractInterface::invalidate(proxy, error, message);
00500 }
00501 
00502 ConnectionInterfaceLocationInterface::ConnectionInterfaceLocationInterface(const QString& busName, const QString& objectPath, QObject *parent)
00503     : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), QDBusConnection::sessionBus(), parent)
00504 {
00505 }
00506 
00507 ConnectionInterfaceLocationInterface::ConnectionInterfaceLocationInterface(const QDBusConnection& connection, const QString& busName, const QString& objectPath, QObject *parent)
00508     : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), connection, parent)
00509 {
00510 }
00511 
00512 ConnectionInterfaceLocationInterface::ConnectionInterfaceLocationInterface(Tp::DBusProxy *proxy)
00513     : Tp::AbstractInterface(proxy, staticInterfaceName())
00514 {
00515 }
00516 
00517 ConnectionInterfaceLocationInterface::ConnectionInterfaceLocationInterface(const Tp::Client::ConnectionInterface& mainInterface)
00518     : Tp::AbstractInterface(mainInterface.service(), mainInterface.path(), staticInterfaceName(), mainInterface.connection(), mainInterface.parent())
00519 {
00520 }
00521 
00522 ConnectionInterfaceLocationInterface::ConnectionInterfaceLocationInterface(const Tp::Client::ConnectionInterface& mainInterface, QObject *parent)
00523     : Tp::AbstractInterface(mainInterface.service(), mainInterface.path(), staticInterfaceName(), mainInterface.connection(), parent)
00524 {
00525 }
00526 
00527 void ConnectionInterfaceLocationInterface::invalidate(Tp::DBusProxy *proxy,
00528         const QString &error, const QString &message)
00529 {
00530     disconnect(this, SIGNAL(LocationUpdated(uint, const QVariantMap&)), NULL, NULL);
00531 
00532     Tp::AbstractInterface::invalidate(proxy, error, message);
00533 }
00534 
00535 ConnectionInterfaceMailNotificationInterface::ConnectionInterfaceMailNotificationInterface(const QString& busName, const QString& objectPath, QObject *parent)
00536     : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), QDBusConnection::sessionBus(), parent)
00537 {
00538 }
00539 
00540 ConnectionInterfaceMailNotificationInterface::ConnectionInterfaceMailNotificationInterface(const QDBusConnection& connection, const QString& busName, const QString& objectPath, QObject *parent)
00541     : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), connection, parent)
00542 {
00543 }
00544 
00545 ConnectionInterfaceMailNotificationInterface::ConnectionInterfaceMailNotificationInterface(Tp::DBusProxy *proxy)
00546     : Tp::AbstractInterface(proxy, staticInterfaceName())
00547 {
00548 }
00549 
00550 ConnectionInterfaceMailNotificationInterface::ConnectionInterfaceMailNotificationInterface(const Tp::Client::ConnectionInterface& mainInterface)
00551     : Tp::AbstractInterface(mainInterface.service(), mainInterface.path(), staticInterfaceName(), mainInterface.connection(), mainInterface.parent())
00552 {
00553 }
00554 
00555 ConnectionInterfaceMailNotificationInterface::ConnectionInterfaceMailNotificationInterface(const Tp::Client::ConnectionInterface& mainInterface, QObject *parent)
00556     : Tp::AbstractInterface(mainInterface.service(), mainInterface.path(), staticInterfaceName(), mainInterface.connection(), parent)
00557 {
00558 }
00559 
00560 void ConnectionInterfaceMailNotificationInterface::invalidate(Tp::DBusProxy *proxy,
00561         const QString &error, const QString &message)
00562 {
00563     disconnect(this, SIGNAL(MailsReceived(const Tp::MailList&)), NULL, NULL);
00564     disconnect(this, SIGNAL(UnreadMailsChanged(uint, const Tp::MailList&, const QStringList&)), NULL, NULL);
00565 
00566     Tp::AbstractInterface::invalidate(proxy, error, message);
00567 }
00568 
00569 ConnectionInterfacePowerSavingInterface::ConnectionInterfacePowerSavingInterface(const QString& busName, const QString& objectPath, QObject *parent)
00570     : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), QDBusConnection::sessionBus(), parent)
00571 {
00572 }
00573 
00574 ConnectionInterfacePowerSavingInterface::ConnectionInterfacePowerSavingInterface(const QDBusConnection& connection, const QString& busName, const QString& objectPath, QObject *parent)
00575     : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), connection, parent)
00576 {
00577 }
00578 
00579 ConnectionInterfacePowerSavingInterface::ConnectionInterfacePowerSavingInterface(Tp::DBusProxy *proxy)
00580     : Tp::AbstractInterface(proxy, staticInterfaceName())
00581 {
00582 }
00583 
00584 ConnectionInterfacePowerSavingInterface::ConnectionInterfacePowerSavingInterface(const Tp::Client::ConnectionInterface& mainInterface)
00585     : Tp::AbstractInterface(mainInterface.service(), mainInterface.path(), staticInterfaceName(), mainInterface.connection(), mainInterface.parent())
00586 {
00587 }
00588 
00589 ConnectionInterfacePowerSavingInterface::ConnectionInterfacePowerSavingInterface(const Tp::Client::ConnectionInterface& mainInterface, QObject *parent)
00590     : Tp::AbstractInterface(mainInterface.service(), mainInterface.path(), staticInterfaceName(), mainInterface.connection(), parent)
00591 {
00592 }
00593 
00594 void ConnectionInterfacePowerSavingInterface::invalidate(Tp::DBusProxy *proxy,
00595         const QString &error, const QString &message)
00596 {
00597     disconnect(this, SIGNAL(PowerSavingChanged(bool)), NULL, NULL);
00598 
00599     Tp::AbstractInterface::invalidate(proxy, error, message);
00600 }
00601 
00602 ConnectionInterfacePresenceInterface::ConnectionInterfacePresenceInterface(const QString& busName, const QString& objectPath, QObject *parent)
00603     : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), QDBusConnection::sessionBus(), parent)
00604 {
00605 }
00606 
00607 ConnectionInterfacePresenceInterface::ConnectionInterfacePresenceInterface(const QDBusConnection& connection, const QString& busName, const QString& objectPath, QObject *parent)
00608     : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), connection, parent)
00609 {
00610 }
00611 
00612 ConnectionInterfacePresenceInterface::ConnectionInterfacePresenceInterface(Tp::DBusProxy *proxy)
00613     : Tp::AbstractInterface(proxy, staticInterfaceName())
00614 {
00615 }
00616 
00617 ConnectionInterfacePresenceInterface::ConnectionInterfacePresenceInterface(const Tp::Client::ConnectionInterface& mainInterface)
00618     : Tp::AbstractInterface(mainInterface.service(), mainInterface.path(), staticInterfaceName(), mainInterface.connection(), mainInterface.parent())
00619 {
00620 }
00621 
00622 ConnectionInterfacePresenceInterface::ConnectionInterfacePresenceInterface(const Tp::Client::ConnectionInterface& mainInterface, QObject *parent)
00623     : Tp::AbstractInterface(mainInterface.service(), mainInterface.path(), staticInterfaceName(), mainInterface.connection(), parent)
00624 {
00625 }
00626 
00627 void ConnectionInterfacePresenceInterface::invalidate(Tp::DBusProxy *proxy,
00628         const QString &error, const QString &message)
00629 {
00630     disconnect(this, SIGNAL(PresenceUpdate(const Tp::ContactPresences&)), NULL, NULL);
00631 
00632     Tp::AbstractInterface::invalidate(proxy, error, message);
00633 }
00634 
00635 ConnectionInterfaceRequestsInterface::ConnectionInterfaceRequestsInterface(const QString& busName, const QString& objectPath, QObject *parent)
00636     : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), QDBusConnection::sessionBus(), parent)
00637 {
00638 }
00639 
00640 ConnectionInterfaceRequestsInterface::ConnectionInterfaceRequestsInterface(const QDBusConnection& connection, const QString& busName, const QString& objectPath, QObject *parent)
00641     : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), connection, parent)
00642 {
00643 }
00644 
00645 ConnectionInterfaceRequestsInterface::ConnectionInterfaceRequestsInterface(Tp::DBusProxy *proxy)
00646     : Tp::AbstractInterface(proxy, staticInterfaceName())
00647 {
00648 }
00649 
00650 ConnectionInterfaceRequestsInterface::ConnectionInterfaceRequestsInterface(const Tp::Client::ConnectionInterface& mainInterface)
00651     : Tp::AbstractInterface(mainInterface.service(), mainInterface.path(), staticInterfaceName(), mainInterface.connection(), mainInterface.parent())
00652 {
00653 }
00654 
00655 ConnectionInterfaceRequestsInterface::ConnectionInterfaceRequestsInterface(const Tp::Client::ConnectionInterface& mainInterface, QObject *parent)
00656     : Tp::AbstractInterface(mainInterface.service(), mainInterface.path(), staticInterfaceName(), mainInterface.connection(), parent)
00657 {
00658 }
00659 
00660 void ConnectionInterfaceRequestsInterface::invalidate(Tp::DBusProxy *proxy,
00661         const QString &error, const QString &message)
00662 {
00663     disconnect(this, SIGNAL(NewChannels(const Tp::ChannelDetailsList&)), NULL, NULL);
00664     disconnect(this, SIGNAL(ChannelClosed(const QDBusObjectPath&)), NULL, NULL);
00665 
00666     Tp::AbstractInterface::invalidate(proxy, error, message);
00667 }
00668 
00669 ConnectionInterfaceServicePointInterface::ConnectionInterfaceServicePointInterface(const QString& busName, const QString& objectPath, QObject *parent)
00670     : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), QDBusConnection::sessionBus(), parent)
00671 {
00672 }
00673 
00674 ConnectionInterfaceServicePointInterface::ConnectionInterfaceServicePointInterface(const QDBusConnection& connection, const QString& busName, const QString& objectPath, QObject *parent)
00675     : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), connection, parent)
00676 {
00677 }
00678 
00679 ConnectionInterfaceServicePointInterface::ConnectionInterfaceServicePointInterface(Tp::DBusProxy *proxy)
00680     : Tp::AbstractInterface(proxy, staticInterfaceName())
00681 {
00682 }
00683 
00684 ConnectionInterfaceServicePointInterface::ConnectionInterfaceServicePointInterface(const Tp::Client::ConnectionInterface& mainInterface)
00685     : Tp::AbstractInterface(mainInterface.service(), mainInterface.path(), staticInterfaceName(), mainInterface.connection(), mainInterface.parent())
00686 {
00687 }
00688 
00689 ConnectionInterfaceServicePointInterface::ConnectionInterfaceServicePointInterface(const Tp::Client::ConnectionInterface& mainInterface, QObject *parent)
00690     : Tp::AbstractInterface(mainInterface.service(), mainInterface.path(), staticInterfaceName(), mainInterface.connection(), parent)
00691 {
00692 }
00693 
00694 void ConnectionInterfaceServicePointInterface::invalidate(Tp::DBusProxy *proxy,
00695         const QString &error, const QString &message)
00696 {
00697     disconnect(this, SIGNAL(ServicePointsChanged(const Tp::ServicePointInfoList&)), NULL, NULL);
00698 
00699     Tp::AbstractInterface::invalidate(proxy, error, message);
00700 }
00701 
00702 ConnectionInterfaceSimplePresenceInterface::ConnectionInterfaceSimplePresenceInterface(const QString& busName, const QString& objectPath, QObject *parent)
00703     : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), QDBusConnection::sessionBus(), parent)
00704 {
00705 }
00706 
00707 ConnectionInterfaceSimplePresenceInterface::ConnectionInterfaceSimplePresenceInterface(const QDBusConnection& connection, const QString& busName, const QString& objectPath, QObject *parent)
00708     : Tp::AbstractInterface(busName, objectPath, staticInterfaceName(), connection, parent)
00709 {
00710 }
00711 
00712 ConnectionInterfaceSimplePresenceInterface::ConnectionInterfaceSimplePresenceInterface(Tp::DBusProxy *proxy)
00713     : Tp::AbstractInterface(proxy, staticInterfaceName())
00714 {
00715 }
00716 
00717 ConnectionInterfaceSimplePresenceInterface::ConnectionInterfaceSimplePresenceInterface(const Tp::Client::ConnectionInterface& mainInterface)
00718     : Tp::AbstractInterface(mainInterface.service(), mainInterface.path(), staticInterfaceName(), mainInterface.connection(), mainInterface.parent())
00719 {
00720 }
00721 
00722 ConnectionInterfaceSimplePresenceInterface::ConnectionInterfaceSimplePresenceInterface(const Tp::Client::ConnectionInterface& mainInterface, QObject *parent)
00723     : Tp::AbstractInterface(mainInterface.service(), mainInterface.path(), staticInterfaceName(), mainInterface.connection(), parent)
00724 {
00725 }
00726 
00727 void ConnectionInterfaceSimplePresenceInterface::invalidate(Tp::DBusProxy *proxy,
00728         const QString &error, const QString &message)
00729 {
00730     disconnect(this, SIGNAL(PresencesChanged(const Tp::SimpleContactPresences&)), NULL, NULL);
00731 
00732     Tp::AbstractInterface::invalidate(proxy, error, message);
00733 }
00734 }
00735 }


Copyright © 2008-2011 Collabora Ltd. and Nokia Corporation
Telepathy-Qt 0.9.4