2014-09-24 00:35:06 +08:00
|
|
|
/*
|
|
|
|
Copyright (C) 2014 by Project Tox <https://tox.im>
|
|
|
|
|
|
|
|
This file is part of qTox, a Qt-based graphical interface for Tox.
|
|
|
|
|
|
|
|
This program is libre 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 3 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 COPYING file for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "filetransferaction.h"
|
|
|
|
#include "filetransferinstance.h"
|
|
|
|
|
2014-09-27 19:23:00 +08:00
|
|
|
#include <QTextEdit>
|
|
|
|
#include <QScrollBar>
|
|
|
|
|
|
|
|
FileTransferAction::FileTransferAction(FileTransferInstance *widget, const QString &author, const QString &date, const bool &me)
|
|
|
|
: ChatAction(me, author, date)
|
|
|
|
, edit(nullptr)
|
2014-09-24 00:35:06 +08:00
|
|
|
{
|
|
|
|
w = widget;
|
|
|
|
|
|
|
|
connect(w, &FileTransferInstance::stateUpdated, this, &FileTransferAction::updateHtml);
|
|
|
|
}
|
|
|
|
|
|
|
|
FileTransferAction::~FileTransferAction()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
QString FileTransferAction::getMessage()
|
|
|
|
{
|
|
|
|
QString widgetHtml;
|
|
|
|
if (w != nullptr)
|
|
|
|
widgetHtml = w->getHtmlImage();
|
|
|
|
else
|
|
|
|
widgetHtml = "<div class=quote>EMPTY CONTENT</div>";
|
|
|
|
return widgetHtml;
|
|
|
|
}
|
|
|
|
|
2014-09-27 19:23:00 +08:00
|
|
|
void FileTransferAction::setup(QTextCursor cursor, QTextEdit *textEdit)
|
2014-09-24 00:35:06 +08:00
|
|
|
{
|
|
|
|
cur = cursor;
|
|
|
|
cur.setKeepPositionOnInsert(true);
|
|
|
|
int end=cur.selectionEnd();
|
|
|
|
cur.setPosition(cur.position());
|
|
|
|
cur.setPosition(end, QTextCursor::KeepAnchor);
|
2014-09-27 19:23:00 +08:00
|
|
|
|
|
|
|
edit = textEdit;
|
2014-09-24 00:35:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void FileTransferAction::updateHtml()
|
|
|
|
{
|
2014-09-27 19:23:00 +08:00
|
|
|
if (cur.isNull() || !edit)
|
2014-09-24 00:35:06 +08:00
|
|
|
return;
|
|
|
|
|
2014-09-27 19:23:00 +08:00
|
|
|
// save old slider value
|
|
|
|
int vSliderVal = edit->verticalScrollBar()->value();
|
|
|
|
|
|
|
|
// update content
|
2014-09-24 00:35:06 +08:00
|
|
|
int pos = cur.selectionStart();
|
|
|
|
cur.removeSelectedText();
|
|
|
|
cur.setKeepPositionOnInsert(false);
|
|
|
|
cur.insertHtml(getMessage());
|
|
|
|
cur.setKeepPositionOnInsert(true);
|
|
|
|
int end = cur.position();
|
|
|
|
cur.setPosition(pos);
|
|
|
|
cur.setPosition(end, QTextCursor::KeepAnchor);
|
|
|
|
|
2014-09-27 19:23:00 +08:00
|
|
|
// restore old slider value
|
|
|
|
edit->verticalScrollBar()->setValue(vSliderVal);
|
|
|
|
|
2014-09-24 00:35:06 +08:00
|
|
|
// Free our ressources if we'll never need to update again
|
|
|
|
if (w->getState() == FileTransferInstance::TransfState::tsCanceled
|
|
|
|
|| w->getState() == FileTransferInstance::TransfState::tsFinished)
|
|
|
|
{
|
|
|
|
name.clear();
|
|
|
|
name.squeeze();
|
|
|
|
date.clear();
|
|
|
|
date.squeeze();
|
|
|
|
cur = QTextCursor();
|
|
|
|
}
|
|
|
|
}
|