1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- /*
- * 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"
- //
- // 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
|