aboutsummaryrefslogtreecommitdiff
path: root/src/base/QXmppBookmarkSet.h
diff options
context:
space:
mode:
authorJeremy Lainé <jeremy.laine@m4x.org>2012-02-08 12:51:15 +0000
committerJeremy Lainé <jeremy.laine@m4x.org>2012-02-08 12:51:15 +0000
commitdeb9d6cb53057ca8b90d10d6a3bdc5dcfd1b3ee4 (patch)
treed956bad28e28aadc3c83dbf88b3eddb5e1d9a9f4 /src/base/QXmppBookmarkSet.h
parente8a1ad0cc608f12874ba4bafbd8282fa537ec9fb (diff)
downloadqxmpp-deb9d6cb53057ca8b90d10d6a3bdc5dcfd1b3ee4.tar.gz
move files common to client/server into "base"
Diffstat (limited to 'src/base/QXmppBookmarkSet.h')
-rw-r--r--src/base/QXmppBookmarkSet.h101
1 files changed, 101 insertions, 0 deletions
diff --git a/src/base/QXmppBookmarkSet.h b/src/base/QXmppBookmarkSet.h
new file mode 100644
index 00000000..aa90f2cf
--- /dev/null
+++ b/src/base/QXmppBookmarkSet.h
@@ -0,0 +1,101 @@
+/*
+ * Copyright (C) 2008-2011 The QXmpp developers
+ *
+ * Author:
+ * Jeremy Lainé
+ *
+ * Source:
+ * http://code.google.com/p/qxmpp
+ *
+ * This file is a part of QXmpp library.
+ *
+ * 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.
+ *
+ */
+
+#ifndef QXMPPBOOKMARKSET_H
+#define QXMPPBOOKMARKSET_H
+
+#include <QList>
+#include <QString>
+#include <QUrl>
+#include <QXmlStreamWriter>
+
+class QDomElement;
+
+/// \brief The QXmppBookmarkConference class represents a bookmark for a conference room,
+/// as defined by XEP-0048: Bookmarks.
+///
+class QXmppBookmarkConference
+{
+public:
+ QXmppBookmarkConference();
+
+ bool autoJoin() const;
+ void setAutoJoin(bool autoJoin);
+
+ QString jid() const;
+ void setJid(const QString &jid);
+
+ QString name() const;
+ void setName(const QString &name);
+
+ QString nickName() const;
+ void setNickName(const QString &nickName);
+
+private:
+ bool m_autoJoin;
+ QString m_jid;
+ QString m_name;
+ QString m_nickName;
+};
+
+/// \brief The QXmppBookmarkUrl class represents a bookmark for a web page,
+/// as defined by XEP-0048: Bookmarks.
+///
+class QXmppBookmarkUrl
+{
+public:
+ QString name() const;
+ void setName(const QString &name);
+
+ QUrl url() const;
+ void setUrl(const QUrl &url);
+
+private:
+ QString m_name;
+ QUrl m_url;
+};
+
+/// \brief The QXmppbookmarkSets class represents a set of bookmarks, as defined
+/// by XEP-0048: Bookmarks.
+///
+class QXmppBookmarkSet
+{
+public:
+ QList<QXmppBookmarkConference> conferences() const;
+ void setConferences(const QList<QXmppBookmarkConference> &conferences);
+
+ QList<QXmppBookmarkUrl> urls() const;
+ void setUrls(const QList<QXmppBookmarkUrl> &urls);
+
+ /// \cond
+ static bool isBookmarkSet(const QDomElement &element);
+ void parse(const QDomElement &element);
+ void toXml(QXmlStreamWriter *writer) const;
+ /// \endconf
+
+private:
+ QList<QXmppBookmarkConference> m_conferences;
+ QList<QXmppBookmarkUrl> m_urls;
+};
+
+#endif