mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
6b2cdaf9e1
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@8311 b45a01b8-16f6-495d-af2f-9b41ad6348cc
105 lines
3.1 KiB
C++
105 lines
3.1 KiB
C++
/****************************************************************
|
|
*
|
|
* RetroShare is distributed under the following license:
|
|
*
|
|
* Copyright (C) 2011, RetroShare Team
|
|
*
|
|
* 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., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
****************************************************************/
|
|
|
|
#ifndef CHATDIALOG_H
|
|
#define CHATDIALOG_H
|
|
|
|
#include <QWidget>
|
|
#include <retroshare/rsmsgs.h>
|
|
|
|
class ChatWidget;
|
|
class RSStyle;
|
|
|
|
class ChatDialog : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
static ChatDialog *getExistingChat(ChatId id);
|
|
static ChatDialog *getChat(ChatId id, uint chatflags = 0);
|
|
static void cleanupChat();
|
|
static void chatFriend(const ChatId &peerId, bool forceFocus = true);
|
|
static void chatFriend(const RsPgpId &gpgId, bool forceFocus = true);
|
|
static void closeChat(const ChatId &chat_id);
|
|
static void chatMessageReceived(ChatMessage msg);
|
|
|
|
virtual void showDialog(uint /*chatflags*/) {}
|
|
|
|
virtual ChatWidget *getChatWidget() = 0;
|
|
virtual bool hasPeerStatus() = 0;
|
|
virtual bool notifyBlink() = 0;
|
|
|
|
void addToParent(QWidget *newParent);
|
|
void removeFromParent(QWidget *oldParent);
|
|
|
|
QString getTitle();
|
|
bool hasNewMessages();
|
|
bool isTyping();
|
|
|
|
bool setStyle();
|
|
const RSStyle *getStyle();
|
|
|
|
int getPeerStatus();
|
|
void setPeerStatus(uint32_t state);
|
|
|
|
void focusDialog();
|
|
|
|
ChatId getChatId(){ return mChatId; }
|
|
|
|
signals:
|
|
void infoChanged(ChatDialog *dialog);
|
|
void newMessage(ChatDialog *dialog);
|
|
void dialogClose(ChatDialog *dialog);
|
|
|
|
private slots:
|
|
void chatInfoChanged(ChatWidget*);
|
|
void chatNewMessage(ChatWidget*);
|
|
|
|
protected:
|
|
explicit ChatDialog(QWidget *parent = 0, Qt::WindowFlags flags = 0);
|
|
virtual ~ChatDialog();
|
|
|
|
void closeEvent(QCloseEvent *event);
|
|
virtual bool canClose() { return true; }
|
|
|
|
virtual QString getPeerName(const ChatId &sslid) const ; // can be overloaded for chat dialogs that have specific peers
|
|
virtual QString getOwnName() const;
|
|
|
|
virtual void init(ChatId id, const QString &title);
|
|
virtual void addChatMsg(const ChatMessage& msg) = 0;
|
|
|
|
ChatId mChatId;
|
|
};
|
|
|
|
class ChatFriendMethod: public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
ChatFriendMethod(QObject* parent, RsPeerId peerId): QObject(parent), mPeerId(peerId){}
|
|
public slots:
|
|
void chatFriend(){ChatDialog::chatFriend(ChatId(mPeerId));}
|
|
private:
|
|
RsPeerId mPeerId;
|
|
};
|
|
|
|
#endif // CHATDIALOG_H
|