/* * This file is part of TelepathyQt4 * * Copyright (C) 2008 Collabora Ltd. * Copyright (C) 2008 Nokia Corporation * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #ifndef _TelepathyQt4_pending_contacts_h_HEADER_GUARD_ #define _TelepathyQt4_pending_contacts_h_HEADER_GUARD_ #ifndef IN_TELEPATHY_QT4_HEADER #error IN_TELEPATHY_QT4_HEADER #endif #include #include #include #include #include #include #include #include namespace Tp { class ContactManager; class TELEPATHY_QT4_EXPORT PendingContacts : public PendingOperation { Q_OBJECT Q_DISABLE_COPY(PendingContacts); public: ~PendingContacts(); ContactManagerPtr manager() const; Features features() const; bool isForHandles() const; UIntList handles() const; bool isForIdentifiers() const; QStringList identifiers() const; bool isUpgrade() const; QList contactsToUpgrade() const; QList contacts() const; UIntList invalidHandles() const; QStringList validIdentifiers() const; QHash > invalidIdentifiers() const; private Q_SLOTS: void onAttributesFinished(Tp::PendingOperation *); void onRequestHandlesFinished(Tp::PendingOperation *); void onReferenceHandlesFinished(Tp::PendingOperation *); void onNestedFinished(Tp::PendingOperation *); void onInspectHandlesFinished(QDBusPendingCallWatcher *); private: friend class ContactManager; // If errorName is non-empty, these will fail instantly PendingContacts(const ContactManagerPtr &manager, const UIntList &handles, const Features &features, const QStringList &interfaces, const QMap &satisfyingContacts, const QSet &otherContacts, const QString &errorName = QString(), const QString &errorMessage = QString()); PendingContacts(const ContactManagerPtr &manager, const QStringList &identifiers, const Features &features, const QString &errorName = QString(), const QString &errorMessage = QString()); PendingContacts(const ContactManagerPtr &manager, const QList &contacts, const Features &features, const QString &errorName = QString(), const QString &errorMessage = QString()); void allAttributesFetched(); struct Private; friend struct Private; Private *mPriv; }; } // Tp #endif