summaryrefslogtreecommitdiff
path: root/qt4/TelepathyQt4/connection-lowlevel.h
diff options
context:
space:
mode:
authorJonny Lamb <jonny.lamb@collabora.co.uk>2011-11-30 16:29:54 +0000
committerJonny Lamb <jonny.lamb@collabora.co.uk>2011-11-30 16:29:54 +0000
commit92d7ce512fa88d6e3ffb4c4da4aebeb7e529035a (patch)
tree0e99a3e46337b152a92f8a565f0c10591e85fb91 /qt4/TelepathyQt4/connection-lowlevel.h
parent18746bafae9ac426a512f15c780b5911a8c7eaed (diff)
parent83ab35a5d0568717451cfd328f60fc15995a9f7d (diff)
Merge remote-tracking branch 'qt4/testing'
Diffstat (limited to 'qt4/TelepathyQt4/connection-lowlevel.h')
-rw-r--r--qt4/TelepathyQt4/connection-lowlevel.h96
1 files changed, 96 insertions, 0 deletions
diff --git a/qt4/TelepathyQt4/connection-lowlevel.h b/qt4/TelepathyQt4/connection-lowlevel.h
new file mode 100644
index 000000000..30f1bc80c
--- /dev/null
+++ b/qt4/TelepathyQt4/connection-lowlevel.h
@@ -0,0 +1,96 @@
+/**
+ * This file is part of TelepathyQt4
+ *
+ * @copyright Copyright (C) 2008-2010 Collabora Ltd. <http://www.collabora.co.uk/>
+ * @copyright Copyright (C) 2008-2010 Nokia Corporation
+ * @license LGPL 2.1
+ *
+ * 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_connection_lowlevel_h_HEADER_GUARD_
+#define _TelepathyQt4_connection_lowlevel_h_HEADER_GUARD_
+
+#ifndef IN_TELEPATHY_QT4_HEADER
+#error IN_TELEPATHY_QT4_HEADER
+#endif
+
+#include <TelepathyQt4/Constants>
+#include <TelepathyQt4/Types>
+
+namespace Tp
+{
+
+class Connection;
+class PendingChannel;
+class PendingContactAttributes;
+class PendingHandles;
+class PendingOperation;
+class PendingReady;
+
+class TELEPATHY_QT4_EXPORT ConnectionLowlevel : public QObject, public RefCounted
+{
+ Q_OBJECT
+ Q_DISABLE_COPY(ConnectionLowlevel)
+
+public:
+ ~ConnectionLowlevel();
+
+ bool isValid() const;
+ ConnectionPtr connection() const;
+
+ PendingReady *requestConnect(const Features &requestedFeatures = Features());
+ PendingOperation *requestDisconnect();
+
+ SimpleStatusSpecMap allowedPresenceStatuses() const;
+ uint maxPresenceStatusMessageLength() const;
+
+ PendingOperation *setSelfPresence(const QString &status, const QString &statusMessage);
+
+ PendingChannel *createChannel(const QVariantMap &request);
+ PendingChannel *createChannel(const QVariantMap &request, int timeout);
+ PendingChannel *ensureChannel(const QVariantMap &request);
+ PendingChannel *ensureChannel(const QVariantMap &request, int timeout);
+
+ PendingHandles *requestHandles(HandleType handleType, const QStringList &names);
+ PendingHandles *referenceHandles(HandleType handleType, const UIntList &handles);
+
+ PendingContactAttributes *contactAttributes(const UIntList &handles,
+ const QStringList &interfaces, bool reference = true);
+ QStringList contactAttributeInterfaces() const;
+
+ void injectContactIds(const HandleIdentifierMap &contactIds);
+ void injectContactId(uint handle, const QString &contactId);
+
+private:
+ friend class Connection;
+ friend class ContactManager;
+ friend class PendingContacts;
+
+ TELEPATHY_QT4_NO_EXPORT ConnectionLowlevel(Connection *parent);
+
+ TELEPATHY_QT4_NO_EXPORT bool hasImmortalHandles() const;
+
+ TELEPATHY_QT4_NO_EXPORT bool hasContactId(uint handle) const;
+ TELEPATHY_QT4_NO_EXPORT QString contactId(uint handle) const;
+
+ struct Private;
+ friend struct Private;
+ Private *mPriv;
+};
+
+} // Tp
+
+#endif