/* * Bittorrent Client using Qt and libtorrent. * Copyright (C) 2011 Christophe Dumez * * 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. * * In addition, as a special exception, the copyright holders give permission to * link this program with the OpenSSL project's "OpenSSL" library (or with * modified versions of it that use the same license as the "OpenSSL" library), * and distribute the linked executables. You must obey the GNU General Public * License in all respects for all of the code used other than "OpenSSL". If you * modify file(s), you may extend this exception to your version of the file(s), * but you are not obligated to do so. If you do not wish to do so, delete this * exception statement from your version. */ #include "executionlogwidget.h" #include #include #include #include "base/global.h" #include "guiiconprovider.h" #include "loglistwidget.h" #include "ui_executionlogwidget.h" ExecutionLogWidget::ExecutionLogWidget(QWidget *parent, const Log::MsgTypes &types) : QWidget(parent) , m_ui(new Ui::ExecutionLogWidget) , m_msgList(new LogListWidget(MAX_LOG_MESSAGES, Log::MsgTypes(types))) , m_peerList(new LogListWidget(MAX_LOG_MESSAGES)) { m_ui->setupUi(this); #ifndef Q_OS_MAC m_ui->tabConsole->setTabIcon(0, GuiIconProvider::instance()->getIcon("view-calendar-journal")); m_ui->tabConsole->setTabIcon(1, GuiIconProvider::instance()->getIcon("view-filter")); #endif m_ui->tabGeneral->layout()->addWidget(m_msgList); m_ui->tabBan->layout()->addWidget(m_peerList); const Logger *const logger = Logger::instance(); for (const Log::Msg &msg : asConst(logger->getMessages())) addLogMessage(msg); for (const Log::Peer &peer : asConst(logger->getPeers())) addPeerMessage(peer); connect(logger, &Logger::newLogMessage, this, &ExecutionLogWidget::addLogMessage); connect(logger, &Logger::newLogPeer, this, &ExecutionLogWidget::addPeerMessage); } ExecutionLogWidget::~ExecutionLogWidget() { delete m_msgList; delete m_peerList; delete m_ui; } void ExecutionLogWidget::showMsgTypes(const Log::MsgTypes &types) { m_msgList->showMsgTypes(types); } void ExecutionLogWidget::addLogMessage(const Log::Msg &msg) { QString text; QDateTime time = QDateTime::fromMSecsSinceEpoch(msg.timestamp); QColor color; switch (msg.type) { case Log::INFO: color.setNamedColor("blue"); break; case Log::WARNING: color.setNamedColor("orange"); break; case Log::CRITICAL: color.setNamedColor("red"); break; default: color = QApplication::palette().color(QPalette::WindowText); } text = "" + time.toString(Qt::SystemLocaleShortDate) + " - " + msg.message + ""; m_msgList->appendLine(text, msg.type); } void ExecutionLogWidget::addPeerMessage(const Log::Peer &peer) { QString text; QDateTime time = QDateTime::fromMSecsSinceEpoch(peer.timestamp); if (peer.blocked) text = "" + time.toString(Qt::SystemLocaleShortDate) + " - " + tr("%1 was blocked %2", "x.y.z.w was blocked").arg(peer.ip, peer.reason); else text = "" + time.toString(Qt::SystemLocaleShortDate) + " - " + tr("%1 was banned", "x.y.z.w was banned").arg(peer.ip); m_peerList->appendLine(text, Log::NORMAL); }