1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
|
/*
* xmpp_status.h
* Copyright (C) 2003 Justin Karneges
*
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
#ifndef XMPP_STATUS_H
#define XMPP_STATUS_H
#include <QString>
#include <QDateTime>
#include "xmpp_muc.h"
namespace XMPP
{
class Status
{
public:
enum Type { Offline, Online, Away, XA, DND, Invisible, FFC };
Status(const QString &show="", const QString &status="", int priority=0, bool available=true);
Status(Type type, const QString& status="", int priority=0);
~Status();
int priority() const;
Type type() const;
QString typeString() const;
const QString & show() const;
const QString & status() const;
QDateTime timeStamp() const;
const QString & keyID() const;
bool isAvailable() const;
bool isAway() const;
bool isInvisible() const;
bool hasError() const;
int errorCode() const;
const QString & errorString() const;
const QString & xsigned() const;
const QString & songTitle() const;
const QString & capsNode() const;
const QString & capsVersion() const;
const QString & capsExt() const;
bool isMUC() const;
bool hasMUCItem() const;
const MUCItem & mucItem() const;
bool hasMUCDestroy() const;
const MUCDestroy & mucDestroy() const;
bool hasMUCStatus() const;
int mucStatus() const;
const QString& mucPassword() const;
bool hasMUCHistory() const;
int mucHistoryMaxChars() const;
int mucHistoryMaxStanzas() const;
int mucHistorySeconds() const;
void setPriority(int);
void setType(Type);
void setType(QString);
void setShow(const QString &);
void setStatus(const QString &);
void setTimeStamp(const QDateTime &);
void setKeyID(const QString &);
void setIsAvailable(bool);
void setIsInvisible(bool);
void setError(int, const QString &);
void setCapsNode(const QString&);
void setCapsVersion(const QString&);
void setCapsExt(const QString&);
void setMUC();
void setMUCItem(const MUCItem&);
void setMUCDestroy(const MUCDestroy&);
void setMUCStatus(int);
void setMUCPassword(const QString&);
void setMUCHistory(int maxchars, int maxstanzas, int seconds);
void setXSigned(const QString &);
void setSongTitle(const QString &);
// JEP-153: VCard-based Avatars
const QString& photoHash() const;
void setPhotoHash(const QString&);
bool hasPhotoHash() const;
private:
int v_priority;
QString v_show, v_status, v_key;
QDateTime v_timeStamp;
bool v_isAvailable;
bool v_isInvisible;
QString v_photoHash;
bool v_hasPhotoHash;
QString v_xsigned;
// gabber song extension
QString v_songTitle;
QString v_capsNode, v_capsVersion, v_capsExt;
// MUC
bool v_isMUC, v_hasMUCItem, v_hasMUCDestroy;
MUCItem v_mucItem;
MUCDestroy v_mucDestroy;
int v_mucStatus;
QString v_mucPassword;
int v_mucHistoryMaxChars, v_mucHistoryMaxStanzas, v_mucHistorySeconds;
int ecode;
QString estr;
};
}
#endif
|