2009-01-30 14:52:47 -05:00
|
|
|
/****************************************************************
|
|
|
|
* RetroShare is distributed under the following license:
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006, 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 <QtGui>
|
|
|
|
|
|
|
|
#include "PopupChatDialog.h"
|
|
|
|
|
|
|
|
#include <QTextCodec>
|
|
|
|
#include <QTextEdit>
|
|
|
|
#include <QToolBar>
|
|
|
|
#include <QTextCursor>
|
|
|
|
#include <QTextList>
|
|
|
|
#include <QString>
|
|
|
|
#include <QtDebug>
|
|
|
|
#include <QIcon>
|
|
|
|
#include <QPixmap>
|
|
|
|
#include <QHashIterator>
|
|
|
|
|
|
|
|
#include "rsiface/rspeers.h"
|
|
|
|
#include "rsiface/rsmsgs.h"
|
|
|
|
|
|
|
|
#define appDir QApplication::applicationDirPath()
|
|
|
|
|
|
|
|
/* Define the format used for displaying the date and time */
|
|
|
|
#define DATETIME_FMT "MMM dd hh:mm:ss"
|
|
|
|
|
|
|
|
#include <sstream>
|
|
|
|
|
|
|
|
/*****
|
|
|
|
* #define CHAT_DEBUG 1
|
|
|
|
*****/
|
|
|
|
|
|
|
|
/** Default constructor */
|
|
|
|
PopupChatDialog::PopupChatDialog(std::string id, std::string name,
|
|
|
|
QWidget *parent, Qt::WFlags flags)
|
|
|
|
: QMainWindow(parent, flags), dialogId(id), dialogName(name),
|
|
|
|
lastChatTime(0), lastChatName("")
|
|
|
|
|
|
|
|
{
|
|
|
|
/* Invoke Qt Designer generated QObject setup routine */
|
|
|
|
ui.setupUi(this);
|
|
|
|
|
|
|
|
RshareSettings config;
|
|
|
|
config.loadWidgetInformation(this);
|
|
|
|
|
|
|
|
loadEmoticons();
|
|
|
|
|
|
|
|
styleHtm = appDir + "/style/chat/default.htm";
|
|
|
|
|
|
|
|
/* Hide Avatar frame */
|
|
|
|
showAvatarFrame(false);
|
|
|
|
|
|
|
|
connect(ui.avatarFrameButton, SIGNAL(toggled(bool)), this, SLOT(showAvatarFrame(bool)));
|
|
|
|
|
|
|
|
connect(ui.actionAvatar, SIGNAL(triggered()),this, SLOT(getAvatar()));
|
|
|
|
|
|
|
|
connect(ui.chattextEdit, SIGNAL(textChanged ( ) ), this, SLOT(checkChat( ) ));
|
|
|
|
|
|
|
|
connect(ui.sendButton, SIGNAL(clicked( ) ), this, SLOT(sendChat( ) ));
|
|
|
|
|
|
|
|
connect(ui.textboldButton, SIGNAL(clicked()), this, SLOT(setFont()));
|
|
|
|
connect(ui.textunderlineButton, SIGNAL(clicked()), this, SLOT(setFont()));
|
|
|
|
connect(ui.textitalicButton, SIGNAL(clicked()), this, SLOT(setFont()));
|
|
|
|
connect(ui.fontButton, SIGNAL(clicked()), this, SLOT(getFont()));
|
|
|
|
connect(ui.colorButton, SIGNAL(clicked()), this, SLOT(setColor()));
|
|
|
|
connect(ui.emoteiconButton, SIGNAL(clicked()), this, SLOT(smileyWidget()));
|
|
|
|
connect(ui.styleButton, SIGNAL(clicked()), SLOT(changeStyle()));
|
|
|
|
|
|
|
|
// Create the status bar
|
|
|
|
std::ostringstream statusstr;
|
|
|
|
statusstr << "Chatting with: " << dialogName << " !!! " << id;
|
|
|
|
statusBar()->showMessage(QString::fromStdString(statusstr.str()));
|
|
|
|
ui.textBrowser->setOpenExternalLinks ( false );
|
|
|
|
|
|
|
|
QString title = QString::fromStdString(name) + " :" + tr(" RetroShare - Encrypted Chat") ;
|
|
|
|
setWindowTitle(title);
|
|
|
|
|
|
|
|
//set the default avatar
|
|
|
|
//ui.avatarlabel->setPixmap(QPixmap(":/images/retrosharelogo1.png"));
|
|
|
|
|
|
|
|
setWindowIcon(QIcon(QString(":/images/rstray3.png")));
|
|
|
|
|
|
|
|
ui.textboldButton->setIcon(QIcon(QString(":/images/edit-bold.png")));
|
|
|
|
ui.textunderlineButton->setIcon(QIcon(QString(":/images/edit-underline.png")));
|
|
|
|
ui.textitalicButton->setIcon(QIcon(QString(":/images/edit-italic.png")));
|
|
|
|
ui.fontButton->setIcon(QIcon(QString(":/images/fonts.png")));
|
|
|
|
ui.emoteiconButton->setIcon(QIcon(QString(":/images/emoticons/kopete/kopete020.png")));
|
|
|
|
ui.styleButton->setIcon(QIcon(QString(":/images/looknfeel.png")));
|
|
|
|
|
|
|
|
ui.textboldButton->setCheckable(true);
|
|
|
|
ui.textunderlineButton->setCheckable(true);
|
|
|
|
ui.textitalicButton->setCheckable(true);
|
|
|
|
|
|
|
|
/*Disabled style Button when will switch chat style RetroShare will crash need to be fix */
|
|
|
|
//ui.styleButton->setEnabled(false);
|
|
|
|
|
|
|
|
/*QMenu * fontmenu = new QMenu();
|
|
|
|
fontmenu->addAction(ui.actionBold);
|
|
|
|
fontmenu->addAction(ui.actionUnderline);
|
|
|
|
fontmenu->addAction(ui.actionItalic);
|
|
|
|
fontmenu->addAction(ui.actionStrike);
|
|
|
|
ui.fontButton->setMenu(fontmenu);*/
|
|
|
|
|
|
|
|
mCurrentColor = Qt::black;
|
|
|
|
mCurrentFont = QFont("Comic Sans MS", 10);
|
|
|
|
|
|
|
|
colorChanged(mCurrentColor);
|
|
|
|
setFont();
|
|
|
|
|
|
|
|
updateAvatar() ;
|
|
|
|
updatePeerAvatar(id) ;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Destructor. */
|
|
|
|
PopupChatDialog::~PopupChatDialog()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
Overloads the default show() slot so we can set opacity*/
|
|
|
|
|
|
|
|
void PopupChatDialog::show()
|
|
|
|
{
|
|
|
|
|
|
|
|
if(!this->isVisible()) {
|
|
|
|
QMainWindow::show();
|
|
|
|
} else {
|
|
|
|
//QMainWindow::activateWindow();
|
|
|
|
//setWindowState(windowState() & ~Qt::WindowMinimized | Qt::WindowActive);
|
|
|
|
//QMainWindow::raise();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void PopupChatDialog::getfocus()
|
|
|
|
{
|
|
|
|
|
|
|
|
QMainWindow::activateWindow();
|
|
|
|
setWindowState((windowState() & (~Qt::WindowMinimized)) | Qt::WindowActive);
|
|
|
|
QMainWindow::raise();
|
|
|
|
}
|
|
|
|
|
|
|
|
void PopupChatDialog::flash()
|
|
|
|
{
|
|
|
|
|
|
|
|
if(!this->isVisible()) {
|
|
|
|
//QMainWindow::show();
|
|
|
|
} else {
|
|
|
|
// Want to reduce the interference on other applications.
|
|
|
|
//QMainWindow::activateWindow();
|
|
|
|
//setWindowState(windowState() & ~Qt::WindowMinimized | Qt::WindowActive);
|
|
|
|
//QMainWindow::raise();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void PopupChatDialog::closeEvent (QCloseEvent * event)
|
|
|
|
{
|
|
|
|
RshareSettings config;
|
|
|
|
config.saveWidgetInformation(this);
|
|
|
|
|
|
|
|
hide();
|
|
|
|
event->ignore();
|
|
|
|
}
|
|
|
|
|
|
|
|
void PopupChatDialog::updateChat()
|
|
|
|
{
|
|
|
|
/* get chat off queue */
|
|
|
|
|
|
|
|
/* write it out */
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void PopupChatDialog::addChatMsg(ChatInfo *ci)
|
|
|
|
{
|
|
|
|
bool offline = true;
|
|
|
|
|
|
|
|
{
|
|
|
|
RsPeerDetails detail;
|
|
|
|
if (!rsPeers->getPeerDetails(dialogId, detail))
|
|
|
|
{
|
|
|
|
#ifdef CHAT_DEBUG
|
|
|
|
std::cerr << "WARNING CANNOT GET PEER INFO!!!!" << std::endl;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
else if (detail.state & RS_PEER_STATE_CONNECTED)
|
|
|
|
{
|
|
|
|
offline = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (offline)
|
|
|
|
{
|
|
|
|
QString offlineMsg = "<br>\n<span style=\"color:#1D84C9\"><strong> ----- PEER OFFLINE (Chat will be lost) -----</strong></span> \n<br>";
|
|
|
|
ui.textBrowser->setHtml(ui.textBrowser->toHtml() + offlineMsg);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
QString timestamp = "[" + QDateTime::currentDateTime().toString("hh:mm:ss") + "]";
|
|
|
|
QString name = QString::fromStdString(ci ->name);
|
|
|
|
QString message = QString::fromStdWString(ci -> msg);
|
|
|
|
|
|
|
|
/*QHashIterator<QString, QString> i(smileys);
|
|
|
|
while(i.hasNext())
|
|
|
|
{
|
|
|
|
i.next();
|
|
|
|
message.replace(i.key(), "<img src=\"" + i.value() + "\">");
|
|
|
|
}*/
|
|
|
|
|
|
|
|
QHashIterator<QString, QString> i(smileys);
|
|
|
|
while(i.hasNext())
|
|
|
|
{
|
|
|
|
i.next();
|
|
|
|
foreach(QString code, i.key().split("|"))
|
|
|
|
message.replace(code, "<img src=\"" + i.value() + "\" />");
|
|
|
|
}
|
|
|
|
history /*<< nickColor << color << font << fontSize*/ << timestamp << name << message;
|
|
|
|
|
|
|
|
QString formatMsg = loadEmptyStyle()/*.replace(nickColor)
|
|
|
|
.replace(color)
|
|
|
|
.replace(font)
|
|
|
|
.replace(fontSize)*/
|
|
|
|
.replace("%timestamp%", timestamp)
|
|
|
|
.replace("%name%", name)
|
|
|
|
.replace("%message%", message);
|
|
|
|
|
|
|
|
ui.textBrowser->setHtml(ui.textBrowser->toHtml() + formatMsg + "\n");
|
|
|
|
|
|
|
|
QTextCursor cursor = ui.textBrowser->textCursor();
|
|
|
|
cursor.movePosition(QTextCursor::End);
|
|
|
|
ui.textBrowser->setTextCursor(cursor);
|
|
|
|
|
|
|
|
if(ci->chatflags & RS_CHAT_AVATAR_AVAILABLE)
|
|
|
|
{
|
|
|
|
std::cerr << "received msg saying an avatar for peer " << ci->rsid << " is available." << std::endl ;
|
|
|
|
updatePeerAvatar(ci->rsid) ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void PopupChatDialog::checkChat()
|
|
|
|
{
|
|
|
|
/* if <return> at the end of the text -> we can send it! */
|
|
|
|
QTextEdit *chatWidget = ui.chattextEdit;
|
|
|
|
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 ... */
|
|
|
|
sendChat();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
//std::cerr << "No <return> found in :" << txt << ":";
|
|
|
|
//std::cerr << std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void PopupChatDialog::sendChat()
|
|
|
|
{
|
|
|
|
QTextEdit *chatWidget = ui.chattextEdit;
|
|
|
|
|
|
|
|
ChatInfo ci;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
rsiface->lockData(); /* Lock Interface */
|
|
|
|
const RsConfig &conf = rsiface->getConfig();
|
|
|
|
|
|
|
|
ci.rsid = conf.ownId;
|
|
|
|
ci.name = conf.ownName;
|
|
|
|
|
|
|
|
rsiface->unlockData(); /* Unlock Interface */
|
|
|
|
}
|
|
|
|
|
|
|
|
ci.msg = chatWidget->toHtml().toStdWString();
|
|
|
|
ci.chatflags = RS_CHAT_PRIVATE;
|
|
|
|
|
|
|
|
#ifdef CHAT_DEBUG
|
|
|
|
std::cout << "PopupChatDialog:sendChat " << styleHtm.toStdString() << std::endl;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
addChatMsg(&ci);
|
|
|
|
|
|
|
|
/* put proper destination */
|
|
|
|
ci.rsid = dialogId;
|
|
|
|
ci.name = dialogName;
|
|
|
|
|
|
|
|
rsMsgs -> ChatSend(ci);
|
|
|
|
chatWidget ->clear();
|
|
|
|
setFont();
|
|
|
|
|
|
|
|
/* redraw send list */
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
Toggles the ToolBox on and off, changes toggle button text
|
|
|
|
*/
|
|
|
|
void PopupChatDialog::showAvatarFrame(bool show)
|
|
|
|
{
|
|
|
|
if (show) {
|
|
|
|
ui.avatarframe->setVisible(true);
|
|
|
|
ui.avatarFrameButton->setChecked(true);
|
|
|
|
ui.avatarFrameButton->setToolTip(tr("Hide Avatar"));
|
|
|
|
ui.avatarFrameButton->setIcon(QIcon(tr(":images/hide_toolbox_frame.png")));
|
|
|
|
} else {
|
|
|
|
ui.avatarframe->setVisible(false);
|
|
|
|
ui.avatarFrameButton->setChecked(false);
|
|
|
|
ui.avatarFrameButton->setToolTip(tr("Show Avatar"));
|
|
|
|
ui.avatarFrameButton->setIcon(QIcon(tr(":images/show_toolbox_frame.png")));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void PopupChatDialog::setColor()
|
|
|
|
{
|
|
|
|
bool ok;
|
|
|
|
QRgb color = QColorDialog::getRgba(ui.chattextEdit->textColor().rgba(), &ok, this);
|
|
|
|
if (ok) {
|
|
|
|
mCurrentColor = QColor(color);
|
|
|
|
colorChanged(mCurrentColor);
|
|
|
|
}
|
|
|
|
setFont();
|
|
|
|
}
|
|
|
|
|
|
|
|
void PopupChatDialog::colorChanged(const QColor &c)
|
|
|
|
{
|
|
|
|
QPixmap pix(16, 16);
|
|
|
|
pix.fill(c);
|
|
|
|
ui.colorButton->setIcon(pix);
|
|
|
|
}
|
|
|
|
|
|
|
|
void PopupChatDialog::getFont()
|
|
|
|
{
|
|
|
|
bool ok;
|
|
|
|
mCurrentFont = QFontDialog::getFont(&ok, mCurrentFont, this);
|
|
|
|
setFont();
|
|
|
|
}
|
|
|
|
|
|
|
|
void PopupChatDialog::setFont()
|
|
|
|
{
|
|
|
|
|
|
|
|
mCurrentFont.setBold(ui.textboldButton->isChecked());
|
|
|
|
mCurrentFont.setUnderline(ui.textunderlineButton->isChecked());
|
|
|
|
mCurrentFont.setItalic(ui.textitalicButton->isChecked());
|
|
|
|
|
|
|
|
ui.chattextEdit->setFont(mCurrentFont);
|
|
|
|
ui.chattextEdit->setTextColor(mCurrentColor);
|
|
|
|
|
|
|
|
ui.chattextEdit->setFocus();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void PopupChatDialog::loadEmoticons2()
|
|
|
|
{
|
|
|
|
QDir smdir(QApplication::applicationDirPath() + "/emoticons/kopete");
|
|
|
|
//QDir smdir(":/gui/images/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 PopupChatDialog::loadEmoticons()
|
|
|
|
{
|
|
|
|
QString sm_codes;
|
|
|
|
#if defined(Q_OS_WIN32)
|
|
|
|
QFile sm_file(QApplication::applicationDirPath() + "/emoticons/emotes.acs");
|
|
|
|
#else
|
|
|
|
QFile sm_file(QString(":/smileys/emotes.acs"));
|
|
|
|
#endif
|
|
|
|
if(!sm_file.open(QIODevice::ReadOnly))
|
|
|
|
{
|
|
|
|
std::cout << "error opening ressource file" << std::endl ;
|
|
|
|
return ;
|
|
|
|
}
|
|
|
|
sm_codes = sm_file.readAll();
|
|
|
|
sm_file.close();
|
|
|
|
sm_codes.remove("\n");
|
|
|
|
sm_codes.remove("\r");
|
|
|
|
int i = 0;
|
|
|
|
QString smcode;
|
|
|
|
QString smfile;
|
|
|
|
while(sm_codes[i] != '{')
|
|
|
|
{
|
|
|
|
i++;
|
|
|
|
|
|
|
|
}
|
|
|
|
while (i < sm_codes.length()-2)
|
|
|
|
{
|
|
|
|
smcode = "";
|
|
|
|
smfile = "";
|
|
|
|
while(sm_codes[i] != '\"')
|
|
|
|
{
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
i++;
|
|
|
|
while (sm_codes[i] != '\"')
|
|
|
|
{
|
|
|
|
smcode += sm_codes[i];
|
|
|
|
i++;
|
|
|
|
|
|
|
|
}
|
|
|
|
i++;
|
|
|
|
|
|
|
|
while(sm_codes[i] != '\"')
|
|
|
|
{
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
i++;
|
|
|
|
while(sm_codes[i] != '\"' && sm_codes[i+1] != ';')
|
|
|
|
{
|
|
|
|
smfile += sm_codes[i];
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
i++;
|
|
|
|
if(!smcode.isEmpty() && !smfile.isEmpty())
|
|
|
|
#if defined(Q_OS_WIN32)
|
2009-01-25 13:25:36 -05:00
|
|
|
smileys.insert(smcode, smfile);
|
2009-01-30 14:52:47 -05:00
|
|
|
#else
|
|
|
|
smileys.insert(smcode, ":/"+smfile);
|
2009-01-25 13:25:36 -05:00
|
|
|
#endif
|
2009-01-30 14:52:47 -05:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void PopupChatDialog::smileyWidget()
|
|
|
|
{
|
|
|
|
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());
|
|
|
|
++x;
|
|
|
|
if(x > 4)
|
|
|
|
{
|
|
|
|
x = 0;
|
|
|
|
y++;
|
|
|
|
}
|
|
|
|
connect(smButton, SIGNAL(clicked()), this, SLOT(addSmiley()));
|
|
|
|
}
|
|
|
|
|
|
|
|
smWidget->show();
|
|
|
|
}
|
|
|
|
|
|
|
|
void PopupChatDialog::addSmiley()
|
|
|
|
{
|
|
|
|
ui.chattextEdit->setText(ui.chattextEdit->toHtml() + qobject_cast<QPushButton*>(sender())->toolTip().split("|").first());
|
|
|
|
}
|
|
|
|
|
|
|
|
QString PopupChatDialog::loadEmptyStyle()
|
|
|
|
{
|
|
|
|
#ifdef CHAT_DEBUG
|
|
|
|
std::cout << "PopupChatDialog:loadEmptyStyle " << styleHtm.toStdString() << std::endl;
|
|
|
|
#endif
|
|
|
|
QString ret;
|
|
|
|
QFile file(styleHtm);
|
|
|
|
//file.open(QIODevice::ReadOnly);
|
|
|
|
if (file.open(QIODevice::ReadOnly)) {
|
|
|
|
ret = file.readAll();
|
|
|
|
file.close();
|
|
|
|
QString styleTmp = styleHtm;
|
|
|
|
QString styleCss = styleTmp.remove(styleHtm.lastIndexOf("."), styleHtm.length()-styleHtm.lastIndexOf(".")) + ".css";
|
|
|
|
qDebug() << styleCss.toAscii();
|
|
|
|
QFile css(styleCss);
|
|
|
|
QString tmp;
|
|
|
|
if (css.open(QIODevice::ReadOnly)) {
|
|
|
|
tmp = css.readAll();
|
|
|
|
css.close();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
#ifdef CHAT_DEBUG
|
|
|
|
std::cerr << "PopupChatDialog:loadEmptyStyle " << "Missing file of default css " << std::endl;
|
|
|
|
#endif
|
|
|
|
tmp = "";
|
|
|
|
}
|
|
|
|
ret.replace("%css-style%", tmp);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
#ifdef CHAT_DEBUG
|
|
|
|
std::cerr << "PopupChatDialog:loadEmptyStyle " << "Missing file of default style " << std::endl;
|
|
|
|
#endif
|
|
|
|
ret="%timestamp% %name% \n %message% ";
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void PopupChatDialog::changeStyle()
|
|
|
|
{
|
|
|
|
QString newStyle = QFileDialog::getOpenFileName(this, tr("Open Style"),
|
|
|
|
appDir + "/style/chat/",
|
|
|
|
tr("Styles (*.htm)"));
|
|
|
|
if(!newStyle.isEmpty())
|
|
|
|
{
|
|
|
|
QString wholeChat;
|
|
|
|
styleHtm = newStyle;
|
|
|
|
|
|
|
|
|
|
|
|
for(int i = 0; i < history.size(); i+=4)
|
|
|
|
{
|
|
|
|
QString formatMsg = loadEmptyStyle();
|
|
|
|
wholeChat += formatMsg.replace("%timestamp%", history.at(i+1))
|
|
|
|
.replace("%name%", history.at(i+2))
|
|
|
|
.replace("%message%", history.at(i+3)) + "\n";
|
|
|
|
}
|
|
|
|
ui.textBrowser->setHtml(wholeChat);
|
|
|
|
}
|
|
|
|
QTextCursor cursor = ui.textBrowser->textCursor();
|
|
|
|
cursor.movePosition(QTextCursor::End);
|
|
|
|
ui.textBrowser->setTextCursor(cursor);
|
|
|
|
}
|
|
|
|
|
|
|
|
void PopupChatDialog::updatePeerAvatar(const std::string& peer_id)
|
|
|
|
{
|
|
|
|
unsigned char *data = NULL;
|
|
|
|
int size = 0 ;
|
|
|
|
|
|
|
|
std::cerr << "Requesting avatar image for peer " << peer_id << std::endl ;
|
|
|
|
|
|
|
|
rsMsgs->getAvatarData(peer_id,data,size);
|
|
|
|
|
|
|
|
std::cerr << "Image size = " << size << std::endl ;
|
|
|
|
|
|
|
|
if(size == 0)
|
|
|
|
{
|
|
|
|
std::cerr << "Got no image" << std::endl ;
|
|
|
|
return ;
|
|
|
|
}
|
|
|
|
|
|
|
|
// set the image
|
|
|
|
QPixmap pix ;
|
|
|
|
pix.loadFromData(data,size,"JPG") ;
|
|
|
|
ui.avatarlabel->setPixmap(pix); // writes image into ba in JPG format
|
|
|
|
|
|
|
|
delete[] data ;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PopupChatDialog::updateAvatar()
|
|
|
|
{
|
|
|
|
unsigned char *data = NULL;
|
|
|
|
int size = 0 ;
|
|
|
|
|
|
|
|
rsMsgs->getOwnAvatarData(data,size);
|
|
|
|
|
|
|
|
std::cerr << "Image size = " << size << std::endl ;
|
|
|
|
|
|
|
|
if(size == 0)
|
|
|
|
std::cerr << "Got no image" << std::endl ;
|
|
|
|
|
|
|
|
// set the image
|
|
|
|
QPixmap pix ;
|
|
|
|
pix.loadFromData(data,size,"JPG") ;
|
|
|
|
ui.myavatarlabel->setPixmap(pix); // writes image into ba in JPG format
|
|
|
|
|
|
|
|
delete[] data ;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PopupChatDialog::getAvatar()
|
|
|
|
{
|
|
|
|
QString fileName = QFileDialog::getOpenFileName(this, "Load File", QDir::homePath(), "Pictures (*.png *.xpm *.jpg)");
|
|
|
|
if(!fileName.isEmpty())
|
|
|
|
{
|
|
|
|
picture = QPixmap(fileName).scaled(82,82, Qt::KeepAspectRatio);
|
|
|
|
|
|
|
|
std::cerr << "Sending avatar image down the pipe" << std::endl ;
|
|
|
|
|
|
|
|
// send avatar down the pipe for other peers to get it.
|
|
|
|
QByteArray ba;
|
|
|
|
QBuffer buffer(&ba);
|
|
|
|
buffer.open(QIODevice::WriteOnly);
|
|
|
|
picture.save(&buffer, "JPG"); // writes image into ba in JPG format
|
|
|
|
|
|
|
|
std::cerr << "Image size = " << ba.size() << std::endl ;
|
|
|
|
|
|
|
|
rsMsgs->setOwnAvatarData((unsigned char *)(ba.data()),ba.size()) ; // last char 0 included.
|
|
|
|
|
|
|
|
updateAvatar() ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|