/* vim:set ts=4 sw=4 sts=4 et cindent: */ /* * nanodc - The ncurses DC++ client * Copyright © 2005-2006 Markus Lindqvist * * 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. * * Contributor(s): * */ #include #include #include #include namespace ui { WindowLog::WindowLog() { set_title("Logger window"); set_name("nanodc"); set_state(display::STATE_IS_ACTIVE); std::tr1::function listener; listener = std::tr1::bind(&WindowLog::on_log, this, std::tr1::placeholders::_1, std::tr1::placeholders::_2); core::Log::get()->add_listener(std::tr1::bind(&WindowLog::on_log, this, std::tr1::placeholders::_1, std::tr1::placeholders::_2)); events::add_listener("client created", std::tr1::bind(&dcpp::LogManager::addListener, std::tr1::bind(&dcpp::LogManager::getInstance), this)); } void WindowLog::on_log(const std::string &msg, core::MessageType mt) { std::string message = msg; if(mt == core::MT_DEBUG) message = "[debug] " + message; message = utils::to_string(utils::gettid()) + ": " + message; add_line(display::LineEntry(message, 0, -1, display::LineEntry::MESSAGE)); } void WindowLog::on(dcpp::LogManagerListener::Message, time_t, const std::string &message) throw() { add_line(display::LineEntry(message)); } void WindowLog::handle_line(const std::string &line) { add_line(display::LineEntry(line, 0, -1, display::LineEntry::MESSAGE)); } void WindowLog::close() { handle_line("Do not close this window"); } WindowLog::~WindowLog() { dcpp::LogManager::getInstance()->removeListener(this); } } // namespace ui