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.
tdenetwork/kopete/plugins/highlight/highlightplugin.cpp

104 lines
3.4 KiB

/***************************************************************************
highlightplugin.cpp - description
-------------------
begin : mar 14 2003
copyright : (C) 2003 by Olivier Goffart
email : ogoffart @ kde.org
***************************************************************************/
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
#include <tqregexp.h>
#include <kgenericfactory.h>
#include <knotifyclient.h>
#include "kopetechatsessionmanager.h"
#include "kopeteview.h"
#include "filter.h"
#include "highlightplugin.h"
#include "highlightconfig.h"
typedef KGenericFactory<HighlightPlugin> HighlightPluginFactory;
K_EXPORT_COMPONENT_FACTORY( kopete_highlight, HighlightPluginFactory( "kopete_highlight" ) )
HighlightPlugin::HighlightPlugin( TQObject *parent, const char *name, const TQStringList &/*args*/ )
: Kopete::Plugin( HighlightPluginFactory::instance(), parent, name )
{
if( !pluginStatic_ )
pluginStatic_=this;
connect( Kopete::ChatSessionManager::self(), TQT_SIGNAL( aboutToDisplay( Kopete::Message & ) ), TQT_SLOT( slotIncomingMessage( Kopete::Message & ) ) );
connect ( this , TQT_SIGNAL( settingsChanged() ) , this , TQT_SLOT( slotSettingsChanged() ) );
m_config = new HighlightConfig;
m_config->load();
}
HighlightPlugin::~HighlightPlugin()
{
pluginStatic_ = 0L;
delete m_config;
}
HighlightPlugin* HighlightPlugin::plugin()
{
return pluginStatic_ ;
}
HighlightPlugin* HighlightPlugin::pluginStatic_ = 0L;
void HighlightPlugin::slotIncomingMessage( Kopete::Message& msg )
{
if(msg.direction() != Kopete::Message::Inbound)
return; // FIXME: highlighted internal/actions messages are not showed correctly in the chat window (bad style)
// but they should maybe be highlinghted if needed
TQPtrList<Filter> filters=m_config->filters();
TQPtrListIterator<Filter> it( filters );
Filter *f;
while ((f = it.current()) != 0 )
{
++it;
if(f->isRegExp ?
msg.plainBody().contains(TQRegExp(f->search , f->caseSensitive)) :
msg.plainBody().contains(f->search , f->caseSensitive) )
{
if(f->setBG)
msg.setBg(f->BG);
if(f->setFG)
msg.setFg(f->FG);
if(f->setImportance)
msg.setImportance((Kopete::Message::MessageImportance)f->importance);
if(f->playSound)
KNotifyClient::userEvent (TQString(), KNotifyClient::Sound, KNotifyClient::Default, f->soundFN );
if (f->raiseView &&
msg.manager() && msg.manager()->view()) {
KopeteView *theview = msg.manager()->view();
theview->raise();
}
break; //uh?
}
}
}
void HighlightPlugin::slotSettingsChanged()
{
m_config->load();
}
#include "highlightplugin.moc"