You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
konversation/konversation/src/notificationhandler.cpp

335 lines
12 KiB

/*
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.
*/
/*
copyright: (C) 2004 by Peter Simonsson
email: psn@linux.se
*/
#include "notificationhandler.h"
#include "common.h"
#include "chatwindow.h"
#include "konversationapplication.h"
#include "konversationmainwindow.h"
#include "viewcontainer.h"
#include "trayicon.h"
#include "server.h"
#include <tqstylesheet.h>
#include <knotifyclient.h>
#include <kstringhandler.h>
#include <tdelocale.h>
namespace Konversation
{
NotificationHandler::NotificationHandler(KonversationApplication* parent, const char* name)
: TQObject(parent, name)
{
m_mainWindow = parent->getMainWindow();
}
NotificationHandler::~NotificationHandler()
{
}
void NotificationHandler::message(ChatWindow* chatWin, const TQString& fromNick, const TQString& message)
{
if (!chatWin || !chatWin->notificationsEnabled())
return;
if (Preferences::disableNotifyWhileAway() && chatWin->getServer() && chatWin->getServer()->isAway())
return;
TQString cleanedMessage = TQStyleSheet::escape(Konversation::removeIrcMarkup(message));
TQString cutup = addLineBreaks(cleanedMessage);
KNotifyClient::event(m_mainWindow->winId(), "message", TQString("<qt>&lt;%1&gt; %2</qt>").arg(fromNick).arg(cutup));
if(!Preferences::trayNotifyOnlyOwnNick())
{
startTrayNotification(chatWin);
}
if(Preferences::oSDShowChannel() &&
(!m_mainWindow->isActiveWindow() || (chatWin != m_mainWindow->getViewContainer()->getFrontView())))
{
KonversationApplication* konvApp = static_cast<KonversationApplication*>(kapp);
konvApp->osd->showOSD('(' + chatWin->getName() + ") <" + fromNick + "> " + cleanedMessage);
}
}
void NotificationHandler::nick(ChatWindow* chatWin, const TQString& fromNick, const TQString& message)
{
if (!chatWin || !chatWin->notificationsEnabled())
return;
if (Preferences::disableNotifyWhileAway() && chatWin->getServer() && chatWin->getServer()->isAway())
return;
TQString cleanedMessage = TQStyleSheet::escape(Konversation::removeIrcMarkup(message));
TQString cutup = addLineBreaks(cleanedMessage);
KNotifyClient::event(m_mainWindow->winId(), "nick", TQString("<qt>&lt;%1&gt; %2</qt>").arg(fromNick).arg(cutup));
startTrayNotification(chatWin);
KonversationApplication* konvApp = static_cast<KonversationApplication*>(kapp);
if((Preferences::oSDShowChannel() || Preferences::oSDShowOwnNick()) &&
(!m_mainWindow->isActiveWindow() ||
(chatWin != m_mainWindow->getViewContainer()->getFrontView())))
{
konvApp->osd->showOSD(i18n("[HighLight] (%1) <%2> %3").arg(chatWin->getName()).arg(fromNick).arg(cleanedMessage));
}
}
void NotificationHandler::queryMessage(ChatWindow* chatWin,
const TQString& fromNick, const TQString& message)
{
if (!chatWin || !chatWin->notificationsEnabled())
return;
if (Preferences::disableNotifyWhileAway() && chatWin->getServer() && chatWin->getServer()->isAway())
return;
TQString cleanedMessage = TQStyleSheet::escape(Konversation::removeIrcMarkup(message));
TQString cutup = addLineBreaks(cleanedMessage);
KNotifyClient::event(m_mainWindow->winId(), "queryMessage", TQString("<qt>&lt;%1&gt; %2</qt>").arg(fromNick).arg(cutup));
startTrayNotification(chatWin);
KonversationApplication* konvApp = static_cast<KonversationApplication*>(kapp);
if(Preferences::oSDShowQuery() && (!m_mainWindow->isActiveWindow() ||
(chatWin != m_mainWindow->getViewContainer()->getFrontView())))
{
konvApp->osd->showOSD(i18n("[Query] <%1> %2").arg(fromNick).arg(cleanedMessage));
}
}
void NotificationHandler::startTrayNotification(ChatWindow* chatWin)
{
if (!chatWin || !chatWin->notificationsEnabled())
return;
if (!chatWin->getServer() || (Preferences::disableNotifyWhileAway() && chatWin->getServer()->isAway()))
return;
if (!m_mainWindow->isActiveWindow() && chatWin->getServer()->isConnected())
m_mainWindow->systemTrayIcon()->startNotification();
}
void NotificationHandler::join(ChatWindow* chatWin, const TQString& nick)
{
if (!chatWin || !chatWin->notificationsEnabled())
return;
if (Preferences::disableNotifyWhileAway() && chatWin->getServer() && chatWin->getServer()->isAway())
return;
KNotifyClient::event(m_mainWindow->winId(), "join", i18n("%1 joined %2").arg(nick, chatWin->getName()));
// OnScreen Message
if(Preferences::oSDShowChannelEvent() &&
(!m_mainWindow->isActiveWindow() || (chatWin != m_mainWindow->getViewContainer()->getFrontView())))
{
KonversationApplication* konvApp = static_cast<KonversationApplication*>(kapp);
konvApp->osd->showOSD(i18n("%1 joined %2").arg(nick, chatWin->getName()));
}
}
void NotificationHandler::part(ChatWindow* chatWin, const TQString& nick)
{
if (!chatWin || !chatWin->notificationsEnabled())
return;
if (Preferences::disableNotifyWhileAway() && chatWin->getServer() && chatWin->getServer()->isAway())
return;
KNotifyClient::event(m_mainWindow->winId(), "part", i18n("%1 parted %2").arg(nick, chatWin->getName()));
// OnScreen Message
if(Preferences::oSDShowChannelEvent() &&
(!m_mainWindow->isActiveWindow() || (chatWin != m_mainWindow->getViewContainer()->getFrontView())))
{
KonversationApplication* konvApp = static_cast<KonversationApplication*>(kapp);
konvApp->osd->showOSD(i18n("%1 parted %2").arg(nick, chatWin->getName()));
}
}
void NotificationHandler::quit(ChatWindow* chatWin, const TQString& nick)
{
if (!chatWin || !chatWin->notificationsEnabled())
return;
if (Preferences::disableNotifyWhileAway() && chatWin->getServer() && chatWin->getServer()->isAway())
return;
KNotifyClient::event(m_mainWindow->winId(), "part", i18n("%1 quit %2").arg(nick, chatWin->getServer()->getServerName()));
}
void NotificationHandler::nickChange(ChatWindow* chatWin, const TQString& oldNick, const TQString& newNick)
{
if (!chatWin || !chatWin->notificationsEnabled())
return;
if (Preferences::disableNotifyWhileAway() && chatWin->getServer() && chatWin->getServer()->isAway())
return;
KNotifyClient::event(m_mainWindow->winId(), "nickchange", i18n("%1 changed nickname to %2").arg(oldNick, newNick));
}
void NotificationHandler::dccIncoming(ChatWindow* chatWin, const TQString& fromNick)
{
if (!chatWin || !chatWin->notificationsEnabled())
return;
if (Preferences::disableNotifyWhileAway() && chatWin->getServer() && chatWin->getServer()->isAway())
return;
KNotifyClient::event(m_mainWindow->winId(), "dcc_incoming", i18n("%1 wants to send a file to you").arg(fromNick));
}
void NotificationHandler::mode(ChatWindow* chatWin, const TQString& /*nick*/)
{
if (!chatWin || !chatWin->notificationsEnabled())
return;
if (Preferences::disableNotifyWhileAway() && chatWin->getServer() && chatWin->getServer()->isAway())
return;
KNotifyClient::event(m_mainWindow->winId(), "mode");
}
void NotificationHandler::query(ChatWindow* chatWin, const TQString& fromNick)
{
if (!chatWin || !chatWin->notificationsEnabled())
return;
if (Preferences::disableNotifyWhileAway() && chatWin->getServer() && chatWin->getServer()->isAway())
return;
startTrayNotification(chatWin);
KNotifyClient::event(m_mainWindow->winId(), "query",
i18n("%1 has started a conversation (query) with you.").arg(fromNick));
}
void NotificationHandler::nickOnline(ChatWindow* chatWin, const TQString& nick)
{
if (!chatWin || !chatWin->notificationsEnabled())
return;
if (Preferences::disableNotifyWhileAway() && chatWin->getServer() && chatWin->getServer()->isAway())
return;
KNotifyClient::event(m_mainWindow->winId(), "notify",
i18n("%1 is online (%2).").arg(nick).arg(chatWin->getServer()->getServerName()));
}
void NotificationHandler::nickOffline(ChatWindow* chatWin, const TQString& nick)
{
if (!chatWin || !chatWin->notificationsEnabled())
return;
if (Preferences::disableNotifyWhileAway() && chatWin->getServer() && chatWin->getServer()->isAway())
return;
KNotifyClient::event(m_mainWindow->winId(), "notify",
i18n("%1 went offline (%2).").arg(nick).arg(chatWin->getServer()->getServerName()));
}
void NotificationHandler::kick(ChatWindow* chatWin, const TQString& channel,const TQString& nick)
{
if (!chatWin || !chatWin->notificationsEnabled())
return;
if (Preferences::disableNotifyWhileAway() && chatWin->getServer() && chatWin->getServer()->isAway())
return;
KNotifyClient::event(m_mainWindow->winId(), "kick",
i18n("You are kicked by %1 from %2").arg(nick).arg(channel));
}
void NotificationHandler::dccChat(ChatWindow* chatWin, const TQString& nick)
{
if (!chatWin || !chatWin->notificationsEnabled())
return;
if (Preferences::disableNotifyWhileAway() && chatWin->getServer() && chatWin->getServer()->isAway())
return;
KNotifyClient::event(m_mainWindow->winId(), "dccChat",
i18n("%1 started a dcc chat with you").arg(nick));
}
void NotificationHandler::highlight(ChatWindow* chatWin, const TQString& fromNick, const TQString& message)
{
if (!chatWin || !chatWin->notificationsEnabled())
return;
if (Preferences::disableNotifyWhileAway() && chatWin->getServer() && chatWin->getServer()->isAway())
return;
startTrayNotification(chatWin);
if(Preferences::oSDShowOwnNick() &&
(!m_mainWindow->isActiveWindow() || (chatWin != m_mainWindow->getViewContainer()->getFrontView())))
{
KonversationApplication* konvApp = static_cast<KonversationApplication*>(kapp);
// if there was no nick associated, this must be a command message, so don't try displaying
// an empty nick in <>
if(fromNick.isEmpty())
konvApp->osd->showOSD(i18n("[HighLight] (%1) *** %2").arg(chatWin->getName()).arg(message));
// normal highlight message
else
konvApp->osd->showOSD(i18n("[HighLight] (%1) <%2> %3").arg(chatWin->getName()).arg(fromNick).arg(message));
}
}
void NotificationHandler::connectionFailure(ChatWindow* chatWin, const TQString& server)
{
if (!chatWin || !chatWin->notificationsEnabled())
return;
KNotifyClient::event(m_mainWindow->winId(), "connectionFailure",
i18n("Failed to connect to %1").arg(server));
}
void NotificationHandler::channelJoin(ChatWindow* chatWin, const TQString& channel)
{
if (!chatWin || !chatWin->notificationsEnabled())
return;
if (Preferences::disableNotifyWhileAway() && chatWin->getServer() && chatWin->getServer()->isAway())
return;
KNotifyClient::event(m_mainWindow->winId(), "channelJoin", i18n("You have joined %1.").arg(channel));
}
TQString NotificationHandler::addLineBreaks(const TQString& string)
{
TQString cutup = string;
int offset = 0;
for(uint i = 0; i < string.length(); i += 50)
{
cutup.insert(i + (offset * 4), "<br>");
++offset;
}
return cutup;
}
}
#include "notificationhandler.moc"