2007-11-14 22:18:48 -05:00
|
|
|
/****************************************************************
|
|
|
|
* RetroShare is distributed under the following license:
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006,2007 crypton
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
****************************************************************/
|
|
|
|
|
|
|
|
#include <QFile>
|
|
|
|
#include <QFileInfo>
|
|
|
|
#include "common/vmessagebox.h"
|
|
|
|
|
|
|
|
#include "rshare.h"
|
|
|
|
#include "PeersDialog.h"
|
|
|
|
#include "rsiface/rsiface.h"
|
2008-01-25 03:49:40 -05:00
|
|
|
#include "rsiface/rspeers.h"
|
2008-04-28 08:09:26 -04:00
|
|
|
#include "rsiface/rsstatus.h"
|
2008-07-10 06:34:49 -04:00
|
|
|
#include "rsiface/rsmsgs.h"
|
2008-01-25 03:49:40 -05:00
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
#include "chat/PopupChatDialog.h"
|
|
|
|
#include "msgs/ChanMsgDialog.h"
|
|
|
|
#include "ChatDialog.h"
|
|
|
|
#include "connect/ConfCertDialog.h"
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
#include <sstream>
|
|
|
|
|
2008-07-10 06:34:49 -04:00
|
|
|
#include <QTextCodec>
|
|
|
|
#include <QTextEdit>
|
|
|
|
#include <QTextCursor>
|
|
|
|
#include <QTextList>
|
|
|
|
#include <QTextStream>
|
|
|
|
#include <QTextDocumentFragment>
|
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
#include <QContextMenuEvent>
|
|
|
|
#include <QMenu>
|
|
|
|
#include <QCursor>
|
|
|
|
#include <QPoint>
|
|
|
|
#include <QMouseEvent>
|
|
|
|
#include <QPixmap>
|
|
|
|
#include <QMessageBox>
|
|
|
|
#include <QHeaderView>
|
2008-07-10 06:34:49 -04:00
|
|
|
#include <QtGui/QKeyEvent>
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
|
|
|
|
/* Images for context menu icons */
|
|
|
|
#define IMAGE_REMOVEFRIEND ":/images/removefriend16.png"
|
|
|
|
#define IMAGE_EXPIORTFRIEND ":/images/exportpeers_16x16.png"
|
2008-04-07 20:31:46 -04:00
|
|
|
#define IMAGE_PEERINFO ":/images/peerdetails_16x16.png"
|
2007-11-14 22:18:48 -05:00
|
|
|
#define IMAGE_CHAT ":/images/chat.png"
|
2008-04-03 17:32:45 -04:00
|
|
|
#define IMAGE_MSG ":/images/message-mail.png"
|
2007-11-14 22:18:48 -05:00
|
|
|
/* Images for Status icons */
|
2008-07-10 06:34:49 -04:00
|
|
|
#define IMAGE_ONLINE ":/images/user/identity24.png"
|
|
|
|
#define IMAGE_OFFLINE ":/images/user/identityoffline24.png"
|
2008-07-09 05:53:47 -04:00
|
|
|
|
|
|
|
/******
|
|
|
|
* #define PEERS_DEBUG 1
|
|
|
|
*****/
|
|
|
|
|
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
/** Constructor */
|
|
|
|
PeersDialog::PeersDialog(QWidget *parent)
|
|
|
|
: MainPage(parent), chatDialog(NULL)
|
|
|
|
{
|
|
|
|
/* Invoke the Qt Designer generated object setup routine */
|
|
|
|
ui.setupUi(this);
|
|
|
|
|
|
|
|
connect( ui.peertreeWidget, SIGNAL( customContextMenuRequested( QPoint ) ), this, SLOT( peertreeWidgetCostumPopupMenu( QPoint ) ) );
|
|
|
|
|
|
|
|
/* hide the Tree +/- */
|
|
|
|
ui.peertreeWidget -> setRootIsDecorated( false );
|
|
|
|
|
|
|
|
/* Set header resize modes and initial section sizes */
|
|
|
|
QHeaderView * _header = ui.peertreeWidget->header () ;
|
|
|
|
_header->setResizeMode (0, QHeaderView::Custom);
|
|
|
|
_header->setResizeMode (1, QHeaderView::Interactive);
|
|
|
|
_header->setResizeMode (2, QHeaderView::Interactive);
|
2008-07-10 06:34:49 -04:00
|
|
|
/*_header->setResizeMode (3, QHeaderView::Interactive);
|
2007-11-14 22:18:48 -05:00
|
|
|
_header->setResizeMode (4, QHeaderView::Interactive);
|
|
|
|
_header->setResizeMode (5, QHeaderView::Interactive);
|
|
|
|
_header->setResizeMode (6, QHeaderView::Interactive);
|
2008-07-10 06:34:49 -04:00
|
|
|
_header->setResizeMode (7, QHeaderView::Interactive);*/
|
2008-03-20 21:03:27 -04:00
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
_header->resizeSection ( 0, 25 );
|
|
|
|
_header->resizeSection ( 1, 100 );
|
|
|
|
_header->resizeSection ( 2, 100 );
|
2008-07-10 06:34:49 -04:00
|
|
|
/*_header->resizeSection ( 3, 120 );
|
2007-11-14 22:18:48 -05:00
|
|
|
_header->resizeSection ( 4, 100 );
|
2008-03-20 21:03:27 -04:00
|
|
|
_header->resizeSection ( 5, 230 );
|
2008-04-03 17:32:45 -04:00
|
|
|
_header->resizeSection ( 6, 120 );
|
2008-07-10 06:34:49 -04:00
|
|
|
_header->resizeSection ( 7, 220 );*/
|
|
|
|
|
|
|
|
|
|
|
|
loadEmoticonsgroupchat();
|
|
|
|
|
|
|
|
//setWindowIcon(QIcon(QString(":/images/rstray3.png")));
|
|
|
|
|
|
|
|
connect(ui.lineEdit, SIGNAL(textChanged ( ) ), this, SLOT(checkChat( ) ));
|
|
|
|
connect(ui.Sendbtn, SIGNAL(clicked()), this, SLOT(sendMsg()));
|
|
|
|
connect(ui.emoticonBtn, SIGNAL(clicked()), this, SLOT(smileyWidgetgroupchat()));
|
|
|
|
|
|
|
|
|
|
|
|
//connect( ui.msgSendList, SIGNAL( customContextMenuRequested( QPoint ) ), this, SLOT( msgSendListCostumPopupMenu( QPoint ) ) );
|
|
|
|
connect( ui.msgText, SIGNAL(customContextMenuRequested(const QPoint&)), this, SLOT(displayInfoChatMenu(const QPoint&)));
|
|
|
|
|
|
|
|
connect(ui.textboldChatButton, SIGNAL(clicked()), this, SLOT(setFont()));
|
|
|
|
connect(ui.textunderlineChatButton, SIGNAL(clicked()), this, SLOT(setFont()));
|
|
|
|
connect(ui.textitalicChatButton, SIGNAL(clicked()), this, SLOT(setFont()));
|
|
|
|
connect(ui.fontsButton, SIGNAL(clicked()), this, SLOT(getFont()));
|
|
|
|
connect(ui.colorChatButton, SIGNAL(clicked()), this, SLOT(setColor()));
|
|
|
|
|
|
|
|
ui.fontsButton->setIcon(QIcon(QString(":/images/fonts.png")));
|
|
|
|
|
|
|
|
_currentColor = Qt::black;
|
|
|
|
QPixmap pxm(24,24);
|
|
|
|
pxm.fill(_currentColor);
|
|
|
|
ui.colorChatButton->setIcon(pxm);
|
|
|
|
|
|
|
|
mCurrentFont = QFont("Comic Sans MS", 12);
|
|
|
|
ui.lineEdit->setFont(mCurrentFont);
|
|
|
|
|
|
|
|
setChatInfo(tr("Welcome to RetroShare's group chat."), QString::fromUtf8("blue"));
|
|
|
|
|
|
|
|
QMenu * grpchatmenu = new QMenu();
|
|
|
|
grpchatmenu->addAction(ui.actionClearChat);
|
|
|
|
ui.menuButton->setMenu(grpchatmenu);
|
|
|
|
|
|
|
|
_underline = false;
|
|
|
|
|
|
|
|
QTimer *timer = new QTimer(this);
|
|
|
|
timer->connect(timer, SIGNAL(timeout()), this, SLOT(insertChat()));
|
|
|
|
timer->start(500); /* half a second */
|
2008-03-20 21:03:27 -04:00
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
|
|
|
|
/* Hide platform specific features */
|
|
|
|
#ifdef Q_WS_WIN
|
|
|
|
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void PeersDialog::setChatDialog(ChatDialog *cd)
|
|
|
|
{
|
|
|
|
chatDialog = cd;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void PeersDialog::peertreeWidgetCostumPopupMenu( QPoint point )
|
|
|
|
{
|
|
|
|
|
|
|
|
QMenu contextMnu( this );
|
|
|
|
QMouseEvent *mevent = new QMouseEvent( QEvent::MouseButtonPress, point, Qt::RightButton, Qt::RightButton, Qt::NoModifier );
|
|
|
|
|
|
|
|
chatAct = new QAction(QIcon(IMAGE_CHAT), tr( "Chat" ), this );
|
|
|
|
connect( chatAct , SIGNAL( triggered() ), this, SLOT( chatfriend() ) );
|
|
|
|
|
|
|
|
msgAct = new QAction(QIcon(IMAGE_MSG), tr( "Message Friend" ), this );
|
|
|
|
connect( msgAct , SIGNAL( triggered() ), this, SLOT( msgfriend() ) );
|
|
|
|
|
|
|
|
connectfriendAct = new QAction( tr( "Connect To Friend" ), this );
|
|
|
|
connect( connectfriendAct , SIGNAL( triggered() ), this, SLOT( connectfriend() ) );
|
|
|
|
|
2008-04-07 20:31:46 -04:00
|
|
|
configurefriendAct = new QAction(QIcon(IMAGE_PEERINFO), tr( "Peer Details" ), this );
|
2007-11-14 22:18:48 -05:00
|
|
|
connect( configurefriendAct , SIGNAL( triggered() ), this, SLOT( configurefriend() ) );
|
|
|
|
|
|
|
|
exportfriendAct = new QAction(QIcon(IMAGE_EXPIORTFRIEND), tr( "Export Friend" ), this );
|
|
|
|
connect( exportfriendAct , SIGNAL( triggered() ), this, SLOT( exportfriend() ) );
|
|
|
|
|
|
|
|
removefriendAct = new QAction(QIcon(IMAGE_REMOVEFRIEND), tr( "Remove Friend" ), this );
|
|
|
|
connect( removefriendAct , SIGNAL( triggered() ), this, SLOT( removefriend() ) );
|
|
|
|
|
|
|
|
|
|
|
|
contextMnu.clear();
|
|
|
|
contextMnu.addAction( chatAct);
|
|
|
|
contextMnu.addAction( msgAct);
|
|
|
|
contextMnu.addSeparator();
|
|
|
|
contextMnu.addAction( configurefriendAct);
|
2008-04-07 20:31:46 -04:00
|
|
|
contextMnu.addSeparator();
|
|
|
|
contextMnu.addAction( connectfriendAct);
|
2007-11-14 22:18:48 -05:00
|
|
|
contextMnu.addAction( exportfriendAct);
|
|
|
|
contextMnu.addAction( removefriendAct);
|
|
|
|
contextMnu.exec( mevent->globalPos() );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* get the list of peers from the RsIface. */
|
|
|
|
void PeersDialog::insertPeers()
|
|
|
|
{
|
2008-01-25 03:49:40 -05:00
|
|
|
std::list<std::string> peers;
|
|
|
|
std::list<std::string>::iterator it;
|
2007-11-14 22:18:48 -05:00
|
|
|
|
2008-01-25 03:49:40 -05:00
|
|
|
if (!rsPeers)
|
|
|
|
{
|
|
|
|
/* not ready yet! */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
rsPeers->getFriendList(peers);
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
/* get a link to the table */
|
|
|
|
QTreeWidget *peerWidget = ui.peertreeWidget;
|
|
|
|
QTreeWidgetItem *oldSelect = getCurrentPeer();
|
|
|
|
QTreeWidgetItem *newSelect = NULL;
|
2008-03-02 09:25:59 -05:00
|
|
|
time_t now = time(NULL);
|
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
std::string oldId;
|
|
|
|
if (oldSelect)
|
|
|
|
{
|
2008-03-20 21:03:27 -04:00
|
|
|
oldId = (oldSelect -> text(7)).toStdString();
|
2007-11-14 22:18:48 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* remove old items ??? */
|
|
|
|
peerWidget->clear();
|
2008-07-10 06:34:49 -04:00
|
|
|
peerWidget->setColumnCount(3);
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
|
|
|
|
QList<QTreeWidgetItem *> items;
|
2008-01-25 03:49:40 -05:00
|
|
|
for(it = peers.begin(); it != peers.end(); it++)
|
2007-11-14 22:18:48 -05:00
|
|
|
{
|
2008-01-25 03:49:40 -05:00
|
|
|
RsPeerDetails detail;
|
|
|
|
if (!rsPeers->getPeerDetails(*it, detail))
|
|
|
|
{
|
|
|
|
continue; /* BAD */
|
|
|
|
}
|
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
/* make a widget per friend */
|
|
|
|
QTreeWidgetItem *item = new QTreeWidgetItem((QTreeWidget*)0);
|
|
|
|
|
|
|
|
/* add all the labels */
|
|
|
|
/* First 5 (1-5) Key Items */
|
|
|
|
/* () Status Icon */
|
|
|
|
item -> setText(0, "");
|
|
|
|
|
|
|
|
/* (0) Status */
|
2008-04-28 08:09:26 -04:00
|
|
|
QString status = QString::fromStdString(RsPeerStateString(detail.state));
|
|
|
|
|
|
|
|
/* Append additional status info from status service */
|
|
|
|
StatusInfo statusInfo;
|
2008-06-13 19:36:40 -04:00
|
|
|
if ((rsStatus) && (rsStatus->getStatus(*it, statusInfo)))
|
2008-04-28 08:09:26 -04:00
|
|
|
{
|
|
|
|
status.append(QString::fromStdString("/" + RsStatusString(statusInfo.status)));
|
|
|
|
}
|
|
|
|
|
|
|
|
item -> setText(1, status);
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
/* (1) Person */
|
2008-01-25 03:49:40 -05:00
|
|
|
item -> setText(2, QString::fromStdString(detail.name));
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
/* (2) Auto Connect */
|
2008-03-02 09:25:59 -05:00
|
|
|
item -> setText(3, QString::fromStdString(detail.autoconnect));
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
/* (3) Trust Level */
|
2008-01-25 03:49:40 -05:00
|
|
|
item -> setText(4,QString::fromStdString(
|
|
|
|
RsPeerTrustString(detail.trustLvl)));
|
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
/* (4) Peer Address */
|
2008-01-25 03:49:40 -05:00
|
|
|
{
|
|
|
|
std::ostringstream out;
|
|
|
|
out << detail.localAddr << ":";
|
|
|
|
out << detail.localPort << "/";
|
|
|
|
out << detail.extAddr << ":";
|
|
|
|
out << detail.extPort;
|
|
|
|
item -> setText(5, QString::fromStdString(out.str()));
|
|
|
|
}
|
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
/* less important ones */
|
|
|
|
/* () Last Contact */
|
2008-01-25 03:49:40 -05:00
|
|
|
item -> setText(6,QString::fromStdString(
|
2008-03-02 09:25:59 -05:00
|
|
|
RsPeerLastConnectString(now - detail.lastConnect)));
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
/* () Org */
|
2008-03-20 21:03:27 -04:00
|
|
|
//item -> setText(7, QString::fromStdString(detail.org));
|
2007-11-14 22:18:48 -05:00
|
|
|
/* () Location */
|
2008-03-20 21:03:27 -04:00
|
|
|
//item -> setText(8, QString::fromStdString(detail.location));
|
2008-01-25 03:49:40 -05:00
|
|
|
/* () Email */
|
2008-03-20 21:03:27 -04:00
|
|
|
//item -> setText(9, QString::fromStdString(detail.email));
|
2007-11-14 22:18:48 -05:00
|
|
|
|
2008-01-25 03:49:40 -05:00
|
|
|
/* Hidden ones: RsCertId */
|
2007-11-14 22:18:48 -05:00
|
|
|
{
|
2008-03-20 21:03:27 -04:00
|
|
|
item -> setText(7, QString::fromStdString(detail.id));
|
2008-01-25 03:49:40 -05:00
|
|
|
if ((oldSelect) && (oldId == detail.id))
|
2007-11-14 22:18:48 -05:00
|
|
|
{
|
|
|
|
newSelect = item;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* () AuthCode */
|
2008-03-20 21:03:27 -04:00
|
|
|
// item -> setText(11, QString::fromStdString(detail.authcode));
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
/* change background */
|
|
|
|
int i;
|
2008-01-25 03:49:40 -05:00
|
|
|
if (detail.state & RS_PEER_STATE_CONNECTED)
|
2007-11-14 22:18:48 -05:00
|
|
|
{
|
|
|
|
/* bright green */
|
2008-03-20 21:03:27 -04:00
|
|
|
for(i = 1; i < 8; i++)
|
2007-11-14 22:18:48 -05:00
|
|
|
{
|
2008-07-10 06:34:49 -04:00
|
|
|
//item -> setBackground(i,QBrush(Qt::green));
|
2007-11-14 22:18:48 -05:00
|
|
|
item -> setIcon(0,(QIcon(IMAGE_ONLINE)));
|
|
|
|
}
|
|
|
|
}
|
2008-02-28 10:58:54 -05:00
|
|
|
else if (detail.state & RS_PEER_STATE_UNREACHABLE)
|
|
|
|
{
|
|
|
|
/* bright green */
|
2008-03-20 21:03:27 -04:00
|
|
|
for(i = 1; i < 8; i++)
|
2008-02-28 10:58:54 -05:00
|
|
|
{
|
|
|
|
item -> setBackground(i,QBrush(Qt::red));
|
|
|
|
item -> setIcon(0,(QIcon(IMAGE_OFFLINE)));
|
|
|
|
}
|
|
|
|
}
|
2008-01-25 03:49:40 -05:00
|
|
|
else if (detail.state & RS_PEER_STATE_ONLINE)
|
2007-11-14 22:18:48 -05:00
|
|
|
{
|
2008-01-25 03:49:40 -05:00
|
|
|
/* bright green */
|
2008-03-20 21:03:27 -04:00
|
|
|
for(i = 1; i < 8; i++)
|
2008-01-25 03:49:40 -05:00
|
|
|
{
|
|
|
|
item -> setBackground(i,QBrush(Qt::cyan));
|
|
|
|
item -> setIcon(0,(QIcon(IMAGE_OFFLINE)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-03-02 09:25:59 -05:00
|
|
|
if (now - detail.lastConnect < 3600)
|
2007-11-14 22:18:48 -05:00
|
|
|
{
|
2008-03-20 21:03:27 -04:00
|
|
|
for(i = 1; i < 8; i++)
|
2007-11-14 22:18:48 -05:00
|
|
|
{
|
2008-07-10 06:34:49 -04:00
|
|
|
//item -> setBackground(i,QBrush(Qt::lightGray));
|
2007-11-14 22:18:48 -05:00
|
|
|
item -> setIcon(0,(QIcon(IMAGE_OFFLINE)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-03-20 21:03:27 -04:00
|
|
|
for(i = 1; i < 8; i++)
|
2007-11-14 22:18:48 -05:00
|
|
|
{
|
|
|
|
item -> setBackground(i,QBrush(Qt::gray));
|
|
|
|
item -> setIcon(0,(QIcon(IMAGE_OFFLINE)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* add to the list */
|
|
|
|
items.append(item);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* add the items in! */
|
|
|
|
peerWidget->insertTopLevelItems(0, items);
|
|
|
|
if (newSelect)
|
|
|
|
{
|
|
|
|
peerWidget->setCurrentItem(newSelect);
|
|
|
|
}
|
|
|
|
|
|
|
|
peerWidget->update(); /* update display */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Utility Fns */
|
|
|
|
std::string getPeerRsCertId(QTreeWidgetItem *i)
|
|
|
|
{
|
2008-03-20 21:03:27 -04:00
|
|
|
std::string id = (i -> text(7)).toStdString();
|
2007-11-14 22:18:48 -05:00
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Open a QFileDialog to browse for export a file. */
|
|
|
|
void PeersDialog::exportfriend()
|
|
|
|
{
|
|
|
|
QTreeWidgetItem *c = getCurrentPeer();
|
2008-07-09 05:53:47 -04:00
|
|
|
|
|
|
|
#ifdef PEERS_DEBUG
|
2007-11-14 22:18:48 -05:00
|
|
|
std::cerr << "PeersDialog::exportfriend()" << std::endl;
|
2008-07-09 05:53:47 -04:00
|
|
|
#endif
|
2007-11-14 22:18:48 -05:00
|
|
|
if (!c)
|
|
|
|
{
|
2008-07-09 05:53:47 -04:00
|
|
|
#ifdef PEERS_DEBUG
|
2007-11-14 22:18:48 -05:00
|
|
|
std::cerr << "PeersDialog::exportfriend() Noone Selected -- sorry" << std::endl;
|
2008-07-09 05:53:47 -04:00
|
|
|
#endif
|
2007-11-14 22:18:48 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string id = getPeerRsCertId(c);
|
|
|
|
QString fileName = QFileDialog::getSaveFileName(this, tr("Save Certificate"), "",
|
|
|
|
tr("Certificates (*.pqi)"));
|
|
|
|
|
|
|
|
std::string file = fileName.toStdString();
|
|
|
|
if (file != "")
|
|
|
|
{
|
2008-07-09 05:53:47 -04:00
|
|
|
#ifdef PEERS_DEBUG
|
2007-11-14 22:18:48 -05:00
|
|
|
std::cerr << "PeersDialog::exportfriend() Saving to: " << file << std::endl;
|
|
|
|
std::cerr << std::endl;
|
2008-07-09 05:53:47 -04:00
|
|
|
#endif
|
2008-01-25 03:49:40 -05:00
|
|
|
if (rsPeers)
|
|
|
|
{
|
|
|
|
rsPeers->SaveCertificateToFile(id, file);
|
|
|
|
}
|
2007-11-14 22:18:48 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void PeersDialog::chatfriend()
|
|
|
|
{
|
|
|
|
QTreeWidgetItem *i = getCurrentPeer();
|
|
|
|
|
|
|
|
if (!i)
|
|
|
|
return;
|
|
|
|
|
|
|
|
std::string name = (i -> text(2)).toStdString();
|
2008-03-20 21:03:27 -04:00
|
|
|
std::string id = (i -> text(7)).toStdString();
|
2008-01-26 08:08:28 -05:00
|
|
|
|
|
|
|
RsPeerDetails detail;
|
|
|
|
if (!rsPeers->getPeerDetails(id, detail))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2007-11-14 22:18:48 -05:00
|
|
|
|
2008-07-10 06:34:49 -04:00
|
|
|
/*if (detail.state & RS_PEER_STATE_CONNECTED)
|
|
|
|
{*/
|
2008-01-26 08:08:28 -05:00
|
|
|
/* must reference ChatDialog */
|
|
|
|
if (chatDialog)
|
|
|
|
{
|
|
|
|
chatDialog->getPrivateChat(id, name, true);
|
|
|
|
}
|
2008-07-10 06:34:49 -04:00
|
|
|
/*}
|
2008-01-26 08:08:28 -05:00
|
|
|
else
|
2008-07-10 06:34:49 -04:00
|
|
|
{*/
|
2007-11-14 22:18:48 -05:00
|
|
|
/* info dialog */
|
2008-07-10 06:34:49 -04:00
|
|
|
// QMessageBox::StandardButton sb = QMessageBox::question ( NULL,
|
|
|
|
// "Friend Not Online",
|
|
|
|
//"Your Friend is offline \nDo you want to send them a Message instead",
|
|
|
|
// (QMessageBox::Yes | QMessageBox::No));
|
|
|
|
/*if (sb == QMessageBox::Yes)
|
2007-11-14 22:18:48 -05:00
|
|
|
{
|
|
|
|
msgfriend();
|
|
|
|
}
|
2008-07-10 06:34:49 -04:00
|
|
|
}*/
|
2008-01-26 08:08:28 -05:00
|
|
|
return;
|
2007-11-14 22:18:48 -05:00
|
|
|
}
|
|
|
|
|
2008-01-26 08:08:28 -05:00
|
|
|
|
2007-11-14 22:18:48 -05:00
|
|
|
void PeersDialog::msgfriend()
|
|
|
|
{
|
2008-07-09 05:53:47 -04:00
|
|
|
#ifdef PEERS_DEBUG
|
2007-11-14 22:18:48 -05:00
|
|
|
std::cerr << "SharedFilesDialog::msgfriend()" << std::endl;
|
2008-07-09 05:53:47 -04:00
|
|
|
#endif
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
QTreeWidgetItem *i = getCurrentPeer();
|
|
|
|
|
|
|
|
if (!i)
|
|
|
|
return;
|
|
|
|
|
|
|
|
std::string status = (i -> text(1)).toStdString();
|
|
|
|
std::string name = (i -> text(2)).toStdString();
|
2008-03-20 21:03:27 -04:00
|
|
|
std::string id = (i -> text(7)).toStdString();
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
rsicontrol -> ClearInMsg();
|
|
|
|
rsicontrol -> SetInMsg(id, true);
|
|
|
|
|
|
|
|
/* create a message */
|
|
|
|
ChanMsgDialog *nMsgDialog = new ChanMsgDialog(true);
|
|
|
|
|
|
|
|
nMsgDialog->newMsg();
|
|
|
|
nMsgDialog->show();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
QTreeWidgetItem *PeersDialog::getCurrentPeer()
|
|
|
|
{
|
|
|
|
/* get the current, and extract the Id */
|
|
|
|
|
|
|
|
/* get a link to the table */
|
|
|
|
QTreeWidget *peerWidget = ui.peertreeWidget;
|
|
|
|
QTreeWidgetItem *item = peerWidget -> currentItem();
|
|
|
|
if (!item)
|
|
|
|
{
|
2008-07-09 05:53:47 -04:00
|
|
|
#ifdef PEERS_DEBUG
|
2007-11-14 22:18:48 -05:00
|
|
|
std::cerr << "Invalid Current Item" << std::endl;
|
2008-07-09 05:53:47 -04:00
|
|
|
#endif
|
2007-11-14 22:18:48 -05:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-07-09 05:53:47 -04:00
|
|
|
#ifdef PEERS_DEBUG
|
2007-11-14 22:18:48 -05:00
|
|
|
/* Display the columns of this item. */
|
|
|
|
std::ostringstream out;
|
|
|
|
out << "CurrentPeerItem: " << std::endl;
|
|
|
|
|
|
|
|
for(int i = 1; i < 6; i++)
|
|
|
|
{
|
|
|
|
QString txt = item -> text(i);
|
|
|
|
out << "\t" << i << ":" << txt.toStdString() << std::endl;
|
|
|
|
}
|
|
|
|
std::cerr << out.str();
|
2008-07-09 05:53:47 -04:00
|
|
|
#endif
|
2007-11-14 22:18:48 -05:00
|
|
|
return item;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* So from the Peers Dialog we can call the following control Functions:
|
|
|
|
* (1) Remove Current. FriendRemove(id)
|
|
|
|
* (2) Allow/DisAllow. FriendStatus(id, accept)
|
|
|
|
* (2) Connect. FriendConnectAttempt(id, accept)
|
|
|
|
* (3) Set Address. FriendSetAddress(id, str, port)
|
|
|
|
* (4) Set Trust. FriendTrustSignature(id, bool)
|
|
|
|
* (5) Configure (GUI Only) -> 3/4
|
|
|
|
*
|
|
|
|
* All of these rely on the finding of the current Id.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
void PeersDialog::removefriend()
|
|
|
|
{
|
|
|
|
QTreeWidgetItem *c = getCurrentPeer();
|
2008-07-09 05:53:47 -04:00
|
|
|
#ifdef PEERS_DEBUG
|
2007-11-14 22:18:48 -05:00
|
|
|
std::cerr << "PeersDialog::removefriend()" << std::endl;
|
2008-07-09 05:53:47 -04:00
|
|
|
#endif
|
2007-11-14 22:18:48 -05:00
|
|
|
if (!c)
|
|
|
|
{
|
2008-07-09 05:53:47 -04:00
|
|
|
#ifdef PEERS_DEBUG
|
2007-11-14 22:18:48 -05:00
|
|
|
std::cerr << "PeersDialog::removefriend() Noone Selected -- sorry" << std::endl;
|
2008-07-09 05:53:47 -04:00
|
|
|
#endif
|
2007-11-14 22:18:48 -05:00
|
|
|
return;
|
|
|
|
}
|
2008-01-25 03:49:40 -05:00
|
|
|
|
|
|
|
if (rsPeers)
|
|
|
|
{
|
|
|
|
rsPeers->removeFriend(getPeerRsCertId(c));
|
|
|
|
}
|
2007-11-14 22:18:48 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void PeersDialog::allowfriend()
|
|
|
|
{
|
|
|
|
QTreeWidgetItem *c = getCurrentPeer();
|
2008-07-09 05:53:47 -04:00
|
|
|
#ifdef PEERS_DEBUG
|
2007-11-14 22:18:48 -05:00
|
|
|
std::cerr << "PeersDialog::allowfriend()" << std::endl;
|
2008-07-09 05:53:47 -04:00
|
|
|
#endif
|
2007-11-14 22:18:48 -05:00
|
|
|
/*
|
|
|
|
bool accept = true;
|
|
|
|
rsServer->FriendStatus(getPeerRsCertId(c), accept);
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void PeersDialog::connectfriend()
|
|
|
|
{
|
|
|
|
QTreeWidgetItem *c = getCurrentPeer();
|
2008-07-09 05:53:47 -04:00
|
|
|
#ifdef PEERS_DEBUG
|
2007-11-14 22:18:48 -05:00
|
|
|
std::cerr << "PeersDialog::connectfriend()" << std::endl;
|
2008-07-09 05:53:47 -04:00
|
|
|
#endif
|
2008-04-07 18:54:15 -04:00
|
|
|
if (!c)
|
|
|
|
{
|
2008-07-09 05:53:47 -04:00
|
|
|
#ifdef PEERS_DEBUG
|
2008-04-07 18:54:15 -04:00
|
|
|
std::cerr << "PeersDialog::connectfriend() Noone Selected -- sorry" << std::endl;
|
2008-07-09 05:53:47 -04:00
|
|
|
#endif
|
2008-04-07 18:54:15 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-01-25 03:49:40 -05:00
|
|
|
if (rsPeers)
|
|
|
|
{
|
|
|
|
rsPeers->connectAttempt(getPeerRsCertId(c));
|
|
|
|
}
|
2007-11-14 22:18:48 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void PeersDialog::setaddressfriend()
|
|
|
|
{
|
|
|
|
QTreeWidgetItem *c = getCurrentPeer();
|
2008-07-09 05:53:47 -04:00
|
|
|
#ifdef PEERS_DEBUG
|
2007-11-14 22:18:48 -05:00
|
|
|
std::cerr << "PeersDialog::setaddressfriend()" << std::endl;
|
2008-07-09 05:53:47 -04:00
|
|
|
#endif
|
2007-11-14 22:18:48 -05:00
|
|
|
|
|
|
|
/* need to get the input address / port */
|
|
|
|
/*
|
|
|
|
std::string addr;
|
|
|
|
unsigned short port;
|
|
|
|
rsServer->FriendSetAddress(getPeerRsCertId(c), addr, port);
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
|
|
|
void PeersDialog::trustfriend()
|
|
|
|
{
|
|
|
|
QTreeWidgetItem *c = getCurrentPeer();
|
2008-07-09 05:53:47 -04:00
|
|
|
#ifdef PEERS_DEBUG
|
2007-11-14 22:18:48 -05:00
|
|
|
std::cerr << "PeersDialog::trustfriend()" << std::endl;
|
2008-07-09 05:53:47 -04:00
|
|
|
#endif
|
2007-11-14 22:18:48 -05:00
|
|
|
/*
|
|
|
|
bool trust = true;
|
|
|
|
rsServer->FriendTrust(getPeerRsCertId(c), trust);
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* GUI stuff -> don't do anything directly with Control */
|
|
|
|
void PeersDialog::configurefriend()
|
|
|
|
{
|
|
|
|
/* display Dialog */
|
2008-07-09 05:53:47 -04:00
|
|
|
#ifdef PEERS_DEBUG
|
2007-11-14 22:18:48 -05:00
|
|
|
std::cerr << "PeersDialog::configurefriend()" << std::endl;
|
2008-07-09 05:53:47 -04:00
|
|
|
#endif
|
2007-11-14 22:18:48 -05:00
|
|
|
QTreeWidgetItem *c = getCurrentPeer();
|
|
|
|
|
|
|
|
|
|
|
|
static ConfCertDialog *confdialog = new ConfCertDialog();
|
|
|
|
|
|
|
|
|
|
|
|
if (!c)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* set the Id */
|
|
|
|
std::string id = getPeerRsCertId(c);
|
|
|
|
|
|
|
|
confdialog -> loadId(id);
|
|
|
|
confdialog -> show();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-07-10 06:34:49 -04:00
|
|
|
void PeersDialog::insertChat()
|
|
|
|
{
|
|
|
|
if (!rsMsgs->chatAvailable())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::list<ChatInfo> newchat;
|
|
|
|
if (!rsMsgs->getNewChat(newchat))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
QTextEdit *msgWidget = ui.msgText;
|
|
|
|
std::list<ChatInfo>::iterator it;
|
|
|
|
|
|
|
|
|
|
|
|
/* add in lines at the bottom */
|
|
|
|
for(it = newchat.begin(); it != newchat.end(); it++)
|
|
|
|
{
|
|
|
|
std::string msg(it->msg.begin(), it->msg.end());
|
|
|
|
std::cerr << "ChatDialog::insertChat(): " << msg << std::endl;
|
|
|
|
|
|
|
|
/* are they private? */
|
|
|
|
if (it->chatflags & RS_CHAT_PRIVATE)
|
|
|
|
{
|
|
|
|
PopupChatDialog *pcd = getPrivateChat(it->rsid, it->name, true);
|
|
|
|
pcd->addChatMsg(&(*it));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::ostringstream out;
|
|
|
|
QString currenttxt = msgWidget->toHtml();
|
|
|
|
QString extraTxt;
|
|
|
|
|
|
|
|
QString timestamp = QDateTime::currentDateTime().toString("hh:mm:ss");
|
|
|
|
QString name = QString::fromStdString(it->name);
|
|
|
|
QString line = "<span style=\"color:#C00000\">" + timestamp + "</span>" +
|
|
|
|
"<span style=\"color:#2D84C9\"><strong>" + " " + name + "</strong></span>";
|
|
|
|
|
|
|
|
extraTxt += line;
|
|
|
|
|
|
|
|
extraTxt += QString::fromStdWString(it->msg);
|
|
|
|
|
|
|
|
/* add it everytime */
|
|
|
|
currenttxt += extraTxt;
|
|
|
|
|
|
|
|
QHashIterator<QString, QString> i(smileys);
|
|
|
|
while(i.hasNext())
|
|
|
|
{
|
|
|
|
i.next();
|
|
|
|
currenttxt.replace(i.key(), "<img src=\"" + i.value() + "\">");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
msgWidget->setHtml(currenttxt);
|
|
|
|
|
|
|
|
|
|
|
|
QScrollBar *qsb = msgWidget->verticalScrollBar();
|
|
|
|
qsb -> setValue(qsb->maximum());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void PeersDialog::checkChat()
|
|
|
|
{
|
|
|
|
/* if <return> at the end of the text -> we can send it! */
|
|
|
|
QTextEdit *chatWidget = ui.lineEdit;
|
|
|
|
std::string txt = chatWidget->toPlainText().toStdString();
|
|
|
|
if ('\n' == txt[txt.length()-1])
|
|
|
|
{
|
|
|
|
//std::cerr << "Found <return> found at end of :" << txt << ": should send!";
|
|
|
|
//std::cerr << std::endl;
|
|
|
|
if (txt.length()-1 == txt.find('\n')) /* only if on first line! */
|
|
|
|
{
|
|
|
|
/* should remove last char ... */
|
|
|
|
sendMsg();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
//std::cerr << "No <return> found in :" << txt << ":";
|
|
|
|
//std::cerr << std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void PeersDialog::sendMsg()
|
|
|
|
{
|
|
|
|
QTextEdit *lineWidget = ui.lineEdit;
|
|
|
|
|
|
|
|
ChatInfo ci;
|
|
|
|
//ci.msg = lineWidget->Text().toStdWString();
|
|
|
|
ci.msg = lineWidget->toHtml().toStdWString();
|
|
|
|
ci.chatflags = RS_CHAT_PUBLIC;
|
|
|
|
|
|
|
|
std::string msg(ci.msg.begin(), ci.msg.end());
|
|
|
|
std::cerr << "ChatDialog::sendMsg(): " << msg << std::endl;
|
|
|
|
|
|
|
|
rsMsgs -> ChatSend(ci);
|
|
|
|
ui.lineEdit->clear();
|
|
|
|
setFont();
|
|
|
|
|
|
|
|
/* redraw send list */
|
|
|
|
insertSendList();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void PeersDialog::insertSendList()
|
|
|
|
{
|
|
|
|
std::list<std::string> peers;
|
|
|
|
std::list<std::string>::iterator it;
|
|
|
|
|
|
|
|
if (!rsPeers)
|
|
|
|
{
|
|
|
|
/* not ready yet! */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
rsPeers->getOnlineList(peers);
|
|
|
|
|
|
|
|
/* get a link to the table */
|
|
|
|
//QTreeWidget *sendWidget = ui.msgSendList;
|
|
|
|
QList<QTreeWidgetItem *> items;
|
|
|
|
|
|
|
|
for(it = peers.begin(); it != peers.end(); it++)
|
|
|
|
{
|
|
|
|
|
|
|
|
RsPeerDetails details;
|
|
|
|
if (!rsPeers->getPeerDetails(*it, details))
|
|
|
|
{
|
|
|
|
continue; /* BAD */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* make a widget per friend */
|
|
|
|
QTreeWidgetItem *item = new QTreeWidgetItem((QTreeWidget*)0);
|
|
|
|
|
|
|
|
/* add all the labels */
|
|
|
|
/* (0) Person */
|
|
|
|
item -> setText(0, QString::fromStdString(details.name));
|
|
|
|
|
|
|
|
item -> setFlags(Qt::ItemIsUserCheckable | Qt::ItemIsEnabled);
|
|
|
|
//item -> setFlags(Qt::ItemIsUserCheckable);
|
|
|
|
|
|
|
|
item -> setCheckState(0, Qt::Checked);
|
|
|
|
|
|
|
|
if (rsicontrol->IsInChat(*it))
|
|
|
|
{
|
|
|
|
item -> setCheckState(0, Qt::Checked);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
item -> setCheckState(0, Qt::Unchecked);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* disable for the moment */
|
|
|
|
item -> setFlags(Qt::ItemIsUserCheckable);
|
|
|
|
item -> setCheckState(0, Qt::Checked);
|
|
|
|
|
|
|
|
/* add to the list */
|
|
|
|
items.append(item);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* remove old items */
|
|
|
|
//sendWidget->clear();
|
|
|
|
//sendWidget->setColumnCount(1);
|
|
|
|
|
|
|
|
/* add the items in! */
|
|
|
|
//sendWidget->insertTopLevelItems(0, items);
|
|
|
|
|
|
|
|
//sendWidget->update(); /* update display */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* to toggle the state */
|
|
|
|
|
|
|
|
|
|
|
|
void PeersDialog::toggleSendItem( QTreeWidgetItem *item, int col )
|
|
|
|
{
|
|
|
|
std::cerr << "ToggleSendItem()" << std::endl;
|
|
|
|
|
|
|
|
/* extract id */
|
|
|
|
std::string id = (item -> text(4)).toStdString();
|
|
|
|
|
|
|
|
/* get state */
|
|
|
|
bool inChat = (Qt::Checked == item -> checkState(0)); /* alway column 0 */
|
|
|
|
|
|
|
|
/* call control fns */
|
|
|
|
|
|
|
|
rsicontrol -> SetInChat(id, inChat);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
PopupChatDialog *PeersDialog::getPrivateChat(std::string id, std::string name, bool show)
|
|
|
|
{
|
|
|
|
/* see if it exists already */
|
|
|
|
PopupChatDialog *popupchatdialog = NULL;
|
|
|
|
|
|
|
|
std::map<std::string, PopupChatDialog *>::iterator it;
|
|
|
|
if (chatDialogs.end() != (it = chatDialogs.find(id)))
|
|
|
|
{
|
|
|
|
/* exists already */
|
|
|
|
popupchatdialog = it->second;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
popupchatdialog = new PopupChatDialog(id, name);
|
|
|
|
chatDialogs[id] = popupchatdialog;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (show)
|
|
|
|
{
|
|
|
|
popupchatdialog->show();
|
|
|
|
}
|
|
|
|
|
|
|
|
return popupchatdialog;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void PeersDialog::clearOldChats()
|
|
|
|
{
|
|
|
|
/* nothing yet */
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void PeersDialog::setColor()
|
|
|
|
{
|
|
|
|
|
|
|
|
bool ok;
|
|
|
|
QRgb color = QColorDialog::getRgba(ui.lineEdit->textColor().rgba(), &ok, this);
|
|
|
|
if (ok) {
|
|
|
|
_currentColor = QColor(color);
|
|
|
|
QPixmap pxm(24,24);
|
|
|
|
pxm.fill(_currentColor);
|
|
|
|
ui.colorChatButton->setIcon(pxm);
|
|
|
|
}
|
|
|
|
setFont();
|
|
|
|
}
|
|
|
|
|
|
|
|
void PeersDialog::getFont()
|
|
|
|
{
|
|
|
|
bool ok;
|
|
|
|
mCurrentFont = QFontDialog::getFont(&ok, mCurrentFont, this);
|
|
|
|
setFont();
|
|
|
|
}
|
|
|
|
|
|
|
|
void PeersDialog::setFont()
|
|
|
|
{
|
|
|
|
mCurrentFont.setBold(ui.textboldChatButton->isChecked());
|
|
|
|
mCurrentFont.setUnderline(ui.textunderlineChatButton->isChecked());
|
|
|
|
mCurrentFont.setItalic(ui.textitalicChatButton->isChecked());
|
|
|
|
ui.lineEdit->setFont(mCurrentFont);
|
|
|
|
ui.lineEdit->setTextColor(_currentColor);
|
|
|
|
|
|
|
|
ui.lineEdit->setFocus();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void PeersDialog::underline()
|
|
|
|
{
|
|
|
|
_underline = !_underline;
|
|
|
|
ui.lineEdit->setFontUnderline(_underline);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Update Chat Info information
|
|
|
|
void PeersDialog::setChatInfo(QString info, QColor color)
|
|
|
|
{
|
|
|
|
static unsigned int nbLines = 0;
|
|
|
|
++nbLines;
|
|
|
|
// Check log size, clear it if too big
|
|
|
|
if(nbLines > 200) {
|
|
|
|
ui.msgText->clear();
|
|
|
|
nbLines = 1;
|
|
|
|
}
|
|
|
|
ui.msgText->append(QString::fromUtf8("<font color='grey'>")+ QTime::currentTime().toString(QString::fromUtf8("hh:mm:ss")) + QString::fromUtf8("</font> - <font color='") + color.name() +QString::fromUtf8("'><i>") + info + QString::fromUtf8("</i></font>"));
|
|
|
|
}
|
|
|
|
|
|
|
|
void PeersDialog::on_actionClearChat_triggered()
|
|
|
|
{
|
|
|
|
ui.msgText->clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void PeersDialog::displayInfoChatMenu(const QPoint& pos)
|
|
|
|
{
|
|
|
|
// Log Menu
|
|
|
|
QMenu myChatMenu(this);
|
|
|
|
myChatMenu.addAction(ui.actionClearChat);
|
|
|
|
// XXX: Why mapToGlobal() is not enough?
|
|
|
|
myChatMenu.exec(mapToGlobal(pos)+QPoint(0,80));
|
|
|
|
}
|
|
|
|
|
|
|
|
void PeersDialog::loadEmoticonsgroupchat()
|
|
|
|
{
|
|
|
|
QDir smdir(QApplication::applicationDirPath() + "/emoticons/kopete");
|
|
|
|
QFileInfoList sminfo = smdir.entryInfoList(QStringList() << "*.gif" << "*.png", QDir::Files, QDir::Name);
|
|
|
|
foreach(QFileInfo info, sminfo)
|
|
|
|
{
|
|
|
|
QString smcode = info.fileName().replace(".gif", "");
|
|
|
|
QString smstring;
|
|
|
|
for(int i = 0; i < 9; i+=3)
|
|
|
|
{
|
|
|
|
smstring += QString((char)smcode.mid(i,3).toInt());
|
|
|
|
}
|
|
|
|
//qDebug(smstring.toAscii());
|
|
|
|
smileys.insert(smstring, info.absoluteFilePath());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void PeersDialog::smileyWidgetgroupchat()
|
|
|
|
{
|
|
|
|
qDebug("MainWindow::smileyWidget()");
|
|
|
|
QWidget *smWidget = new QWidget;
|
|
|
|
smWidget->setWindowTitle("Emoticons");
|
|
|
|
smWidget->setWindowIcon(QIcon(QString(":/images/rstray3.png")));
|
|
|
|
smWidget->setFixedSize(256,256);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int x = 0, y = 0;
|
|
|
|
|
|
|
|
QHashIterator<QString, QString> i(smileys);
|
|
|
|
while(i.hasNext())
|
|
|
|
{
|
|
|
|
i.next();
|
|
|
|
QPushButton *smButton = new QPushButton("", smWidget);
|
|
|
|
smButton->setGeometry(x*24, y*24, 24,24);
|
|
|
|
smButton->setIconSize(QSize(24,24));
|
|
|
|
smButton->setIcon(QPixmap(i.value()));
|
|
|
|
smButton->setToolTip(i.key());
|
|
|
|
//smButton->setFixedSize(24,24);
|
|
|
|
++x;
|
|
|
|
if(x > 4)
|
|
|
|
{
|
|
|
|
x = 0;
|
|
|
|
y++;
|
|
|
|
}
|
|
|
|
connect(smButton, SIGNAL(clicked()), this, SLOT(addSmileys()));
|
|
|
|
}
|
|
|
|
|
|
|
|
smWidget->show();
|
|
|
|
}
|
|
|
|
|
|
|
|
void PeersDialog::addSmileys()
|
|
|
|
{
|
|
|
|
ui.lineEdit->setText(ui.lineEdit->toHtml() + qobject_cast<QPushButton*>(sender())->toolTip());
|
|
|
|
}
|
2007-11-14 22:18:48 -05:00
|
|
|
|