2009-04-02 09:23:05 -04:00
|
|
|
/***************************************************************************
|
|
|
|
* Copyright (C) 2008 by normal *
|
|
|
|
* normal@Desktop2 *
|
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU General Public License as published by *
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
|
|
* (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program 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 General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
* along with this program; if not, write to the *
|
|
|
|
* Free Software Foundation, Inc., *
|
|
|
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
|
|
|
***************************************************************************/
|
|
|
|
#ifndef USER_H
|
|
|
|
#define USER_H
|
|
|
|
|
|
|
|
#include <QtGui>
|
|
|
|
#include <QStringList>
|
2009-04-20 08:42:47 -04:00
|
|
|
#include <QTime>
|
2009-04-02 09:23:05 -04:00
|
|
|
|
|
|
|
|
|
|
|
namespace User
|
|
|
|
{
|
|
|
|
enum CONNECTIONTOUSER{
|
|
|
|
OFFLINE,
|
|
|
|
ONLINE,
|
|
|
|
TRYTOCONNECT,
|
|
|
|
ERROR
|
|
|
|
};
|
|
|
|
|
|
|
|
enum ONLINESTATE{
|
|
|
|
USERONLINE,
|
|
|
|
USEROFFLINE,
|
|
|
|
USERINVISIBLE,
|
|
|
|
USERWANTTOCHAT,
|
|
|
|
USERAWAY,
|
|
|
|
USERDONT_DISTURB,
|
|
|
|
USERTRYTOCONNECT
|
|
|
|
};
|
|
|
|
|
|
|
|
}//namespace user
|
|
|
|
|
|
|
|
using namespace User;
|
|
|
|
class cProtocol;
|
|
|
|
class cUser: public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
cUser( cProtocol* Protocol,
|
|
|
|
QString Name,
|
|
|
|
QString I2PDestination,
|
2009-04-20 08:42:47 -04:00
|
|
|
qint32 I2PStream_ID
|
2009-04-02 09:23:05 -04:00
|
|
|
);
|
|
|
|
|
|
|
|
const QString get_Name()const;
|
|
|
|
const QString get_I2PDestination()const;
|
2009-04-20 08:42:47 -04:00
|
|
|
qint32 get_I2PStreamID()const;
|
2009-04-02 09:23:05 -04:00
|
|
|
const QString get_ProtocolVersion()const;
|
|
|
|
const QString get_ClientName()const;
|
|
|
|
const QString get_ClientVersion()const;
|
2009-04-20 08:42:47 -04:00
|
|
|
QColor get_textColor();
|
|
|
|
QFont get_textFont();
|
|
|
|
|
2009-04-02 09:23:05 -04:00
|
|
|
CONNECTIONTOUSER get_ConnectionStatus()const;
|
|
|
|
ONLINESTATE get_OnlineState()const;
|
|
|
|
|
|
|
|
const QStringList &get_ChatMessages();
|
|
|
|
bool getHaveAllreadyOneChatWindow()const;
|
|
|
|
bool getHaveNewUnreadMessages();
|
|
|
|
|
|
|
|
void set_ConnectionStatus(CONNECTIONTOUSER Status);
|
|
|
|
void set_OnlineState(const ONLINESTATE newState);
|
|
|
|
void set_Name(QString newName);
|
2009-04-20 08:42:47 -04:00
|
|
|
void set_I2PStreamID(qint32 ID);
|
2009-04-02 09:23:05 -04:00
|
|
|
void set_ReadyToSend(bool b);
|
|
|
|
void set_ProtocolVersion(QString Version);
|
|
|
|
void set_HaveAllreadyOneChatWindow(bool t);
|
|
|
|
void set_ClientName(QString Name);
|
|
|
|
void set_ClientVersion(QString Version);
|
|
|
|
void IncomingNewChatMessage(QString newMessage);
|
2009-04-20 08:42:47 -04:00
|
|
|
void IncomingMessageFromSystem(QString newMessage);
|
|
|
|
|
|
|
|
void set_textColor(QColor textColor);
|
|
|
|
void set_textFont(QFont textFont);
|
2009-04-02 09:23:05 -04:00
|
|
|
|
|
|
|
public slots:
|
|
|
|
void sendChatMessage(QString Message);
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void OnlineStateChanged();
|
|
|
|
void newMessageRecived();
|
2009-04-20 08:42:47 -04:00
|
|
|
void newIncomingMessageRecived();
|
|
|
|
void connectionOnline();
|
|
|
|
void connectionOffline();
|
2009-04-02 09:23:05 -04:00
|
|
|
private:
|
|
|
|
bool HaveAllreadyOneChatWindow;
|
|
|
|
bool newUnreadMessages;
|
|
|
|
void sendAllunsendedMessages();
|
|
|
|
|
|
|
|
const QString I2PDestination;
|
|
|
|
|
|
|
|
QString Name;
|
2009-04-20 08:42:47 -04:00
|
|
|
qint32 I2PStream_ID;
|
2009-04-02 09:23:05 -04:00
|
|
|
|
|
|
|
bool ReadyToSend;
|
|
|
|
|
|
|
|
CONNECTIONTOUSER ConnectionStatus;
|
|
|
|
ONLINESTATE CurrentOnlineState;
|
|
|
|
QString ProtocolVersion;
|
|
|
|
QString ClientName;
|
|
|
|
QString ClientVersion;
|
|
|
|
QStringList Messages;
|
|
|
|
QStringList unsendedMessages;
|
|
|
|
cProtocol* Protocol;
|
2009-04-20 08:42:47 -04:00
|
|
|
|
|
|
|
//Settings for the chatwindow
|
|
|
|
QColor textColor;
|
|
|
|
QFont textFont;
|
2009-04-02 09:23:05 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|