1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-11 15:27:54 +00:00

- Display console messages on Terminal

- Program seems to be working
This commit is contained in:
Christophe Dumez 2009-12-15 12:55:46 +00:00
parent 1923a51c59
commit 8e39eef7aa
3 changed files with 7 additions and 0 deletions

View File

@ -1184,6 +1184,7 @@ void Bittorrent::addConsoleMessage(QString msg, QColor color) {
consoleMessages.removeFirst();
}
consoleMessages.append(QString::fromUtf8("<font color='grey'>")+ QDateTime::currentDateTime().toString(QString::fromUtf8("dd/MM/yyyy hh:mm:ss")) + QString::fromUtf8("</font> - <font color='") + color.name() +QString::fromUtf8("'><i>") + msg + QString::fromUtf8("</i></font>"));
emit newConsoleMessage(QDateTime::currentDateTime().toString("dd/MM/yyyy hh:mm:ss") + " - " + msg);
}
void Bittorrent::addPeerBanMessage(QString ip, bool from_ipfilter) {

View File

@ -233,6 +233,7 @@ signals:
void downloadFromUrlFailure(QString url, QString reason);
void torrentFinishedChecking(QTorrentHandle& h);
void metadataReceived(QTorrentHandle &h);
void newConsoleMessage(QString msg);
};
#endif

View File

@ -49,6 +49,7 @@ class HeadlessLoader: QObject {
// TODO: Listen on socket for parameters
// Instanciate Bittorrent Object
BTSession = new Bittorrent();
connect(BTSession, SIGNAL(newConsoleMessage(QString)), this, SLOT(displayConsoleMessage(QString)));
// Resume unfinished torrents
BTSession->startUpTorrents();
// TODO: Process command line parameter
@ -64,6 +65,10 @@ class HeadlessLoader: QObject {
void exit() {
qApp->quit();
}
void displayConsoleMessage(QString msg) {
std::cout << msg.toLocal8Bit().data() << std::endl;
}
};
#endif