QXmpp  Version:0.4.92
 All Classes Functions Enumerations Enumerator Properties Groups
QXmppStreamInitiationIq.h
1 /*
2  * Copyright (C) 2008-2011 The QXmpp developers
3  *
4  * Author:
5  * Jeremy LainĂ©
6  *
7  * Source:
8  * http://code.google.com/p/qxmpp
9  *
10  * This file is a part of QXmpp library.
11  *
12  * This library is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU Lesser General Public
14  * License as published by the Free Software Foundation; either
15  * version 2.1 of the License, or (at your option) any later version.
16  *
17  * This library is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20  * Lesser General Public License for more details.
21  *
22  */
23 
24 #ifndef QXMPPSTREAMINITIATIONIQ_H
25 #define QXMPPSTREAMINITIATIONIQ_H
26 
27 #include <QDateTime>
28 
29 #include "QXmppIq.h"
30 
31 class QDomElement;
32 class QXmlStreamWriter;
33 
34 class QXMPP_EXPORT QXmppStreamInitiationIq : public QXmppIq
35 {
36 public:
37  enum Profile {
38  None = 0,
39  FileTransfer,
40  };
41 
42  QString mimeType() const;
43  void setMimeType(const QString &mimeType);
44 
45  QXmppStreamInitiationIq::Profile profile() const;
46  void setProfile(QXmppStreamInitiationIq::Profile profile);
47 
48  QString siId() const;
49  void setSiId(const QString &id);
50 
51  QXmppElementList siItems() const;
52  void setSiItems(const QXmppElementList &items);
53 
54  static bool isStreamInitiationIq(const QDomElement &element);
55 
56 protected:
58  void parseElementFromChild(const QDomElement &element);
59  void toXmlElementFromChild(QXmlStreamWriter *writer) const;
61 
62 private:
63  QString m_mimeType;
64  Profile m_profile;
65  QString m_siId;
66  QXmppElementList m_siItems;
67 };
68 
69 #endif