summaryrefslogtreecommitdiff
path: root/TelepathyQt/account-set-internal.h
diff options
context:
space:
mode:
authorJeremy Whiting <jeremy.whiting@collabora.com>2011-11-10 15:21:06 -0700
committerAndre Moreira Magalhaes (andrunko) <andre.magalhaes@collabora.co.uk>2011-11-24 14:45:44 -0200
commitbe40b6f313c8d7b1f0fb59fd06ea87b0934e4bad (patch)
treeed66d713ce0d85acf0bcb65d3145693e4d150dae /TelepathyQt/account-set-internal.h
parentaafde57c570a56bb98df4103a4ee38ed25b91897 (diff)
Renamed TelepathyQt4 directory to TelepathyQt.
Diffstat (limited to 'TelepathyQt/account-set-internal.h')
-rw-r--r--TelepathyQt/account-set-internal.h82
1 files changed, 82 insertions, 0 deletions
diff --git a/TelepathyQt/account-set-internal.h b/TelepathyQt/account-set-internal.h
new file mode 100644
index 00000000..f7dbf9e0
--- /dev/null
+++ b/TelepathyQt/account-set-internal.h
@@ -0,0 +1,82 @@
+/**
+ * This file is part of TelepathyQt
+ *
+ * @copyright Copyright (C) 2010 Collabora Ltd. <http://www.collabora.co.uk/>
+ * @copyright Copyright (C) 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
+ */
+
+#include <TelepathyQt/AccountPropertyFilter>
+
+namespace Tp
+{
+
+class ConnectionCapabilities;
+
+struct TP_QT_NO_EXPORT AccountSet::Private
+{
+ class AccountWrapper;
+
+ Private(AccountSet *parent, const AccountManagerPtr &accountManager,
+ const AccountFilterConstPtr &filter);
+ Private(AccountSet *parent, const AccountManagerPtr &accountManager,
+ const QVariantMap &filter);
+
+ void init();
+ void connectSignals();
+ void insertAccounts();
+ void insertAccount(const AccountPtr &account);
+ void removeAccount(const AccountPtr &account);
+ void wrapAccount(const AccountPtr &account);
+ void filterAccount(const AccountPtr &account);
+ bool accountMatchFilter(AccountWrapper *account);
+
+ AccountSet *parent;
+ AccountManagerPtr accountManager;
+ AccountFilterConstPtr filter;
+ QHash<QString, AccountWrapper *> wrappers;
+ QHash<QString, AccountPtr> accounts;
+ bool ready;
+};
+
+class TP_QT_NO_EXPORT AccountSet::Private::AccountWrapper : public QObject
+{
+ Q_OBJECT
+
+public:
+ AccountWrapper(const AccountPtr &account, QObject *parent = 0);
+ ~AccountWrapper();
+
+ AccountPtr account() const { return mAccount; }
+
+Q_SIGNALS:
+ void accountRemoved(const Tp::AccountPtr &account);
+ void accountPropertyChanged(const Tp::AccountPtr &account,
+ const QString &propertyName);
+ void accountCapabilitiesChanged(const Tp::AccountPtr &account,
+ const Tp::ConnectionCapabilities &capabilities);
+
+private Q_SLOTS:
+ TP_QT_NO_EXPORT void onAccountRemoved();
+ TP_QT_NO_EXPORT void onAccountPropertyChanged(const QString &propertyName);
+ TP_QT_NO_EXPORT void onAccountCapalitiesChanged(const Tp::ConnectionCapabilities &capabilities);
+
+private:
+ AccountPtr mAccount;
+};
+
+} // Tp