aboutsummaryrefslogtreecommitdiff
path: root/src/base/QXmppStreamInitiationIq_p.h
diff options
context:
space:
mode:
authorJeremy Lainé <jeremy.laine@m4x.org>2012-09-12 16:01:35 +0200
committerJeremy Lainé <jeremy.laine@m4x.org>2012-09-12 16:01:35 +0200
commit2a78066c9fa49517bccebbef2e005a674ab4ad27 (patch)
tree6851d8ff348f0b67559e7a09d3db9dc5ecf0bc13 /src/base/QXmppStreamInitiationIq_p.h
parent07d537a2573f1dd06dd69ba6a5e2fa97357c443b (diff)
downloadqxmpp-2a78066c9fa49517bccebbef2e005a674ab4ad27.tar.gz
make QXmppStreamInitiationIq private API
Diffstat (limited to 'src/base/QXmppStreamInitiationIq_p.h')
-rw-r--r--src/base/QXmppStreamInitiationIq_p.h88
1 files changed, 88 insertions, 0 deletions
diff --git a/src/base/QXmppStreamInitiationIq_p.h b/src/base/QXmppStreamInitiationIq_p.h
new file mode 100644
index 00000000..a8e9eb15
--- /dev/null
+++ b/src/base/QXmppStreamInitiationIq_p.h
@@ -0,0 +1,88 @@
+/*
+ * Copyright (C) 2008-2012 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 QXMPPSTREAMINITIATIONIQ_P_H
+#define QXMPPSTREAMINITIATIONIQ_P_H
+
+#include <QDateTime>
+
+#include "QXmppDataForm.h"
+#include "QXmppIq.h"
+#include "QXmppTransferManager.h"
+
+class QDomElement;
+class QXmlStreamWriter;
+
+//
+// W A R N I N G
+// -------------
+//
+// This file is not part of the QXmpp API. It exists for the convenience
+// of the QXmppTransferManager class.
+//
+// This header file may change from version to version without notice,
+// or even be removed.
+//
+// We mean it.
+//
+
+class QXMPP_AUTOTEST_EXPORT QXmppStreamInitiationIq : public QXmppIq
+{
+public:
+ enum Profile {
+ None = 0,
+ FileTransfer,
+ };
+
+ QXmppDataForm featureForm() const;
+ void setFeatureForm(const QXmppDataForm &form);
+
+ QXmppTransferFileInfo fileInfo() const;
+ void setFileInfo(const QXmppTransferFileInfo &info);
+
+ QString mimeType() const;
+ void setMimeType(const QString &mimeType);
+
+ QXmppStreamInitiationIq::Profile profile() const;
+ void setProfile(QXmppStreamInitiationIq::Profile profile);
+
+ QString siId() const;
+ void setSiId(const QString &id);
+
+ static bool isStreamInitiationIq(const QDomElement &element);
+
+protected:
+ /// \cond
+ void parseElementFromChild(const QDomElement &element);
+ void toXmlElementFromChild(QXmlStreamWriter *writer) const;
+ /// \endcond
+
+private:
+ QXmppDataForm m_featureForm;
+ QXmppTransferFileInfo m_fileInfo;
+ QString m_mimeType;
+ Profile m_profile;
+ QString m_siId;
+};
+
+#endif