|
|
|
/***************************************************************************
|
|
|
|
texteffectplugin.cpp - description
|
|
|
|
-------------------
|
|
|
|
begin : jeu nov 14 2002
|
|
|
|
copyright : (C) 2002 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 <stdlib.h>
|
|
|
|
|
|
|
|
#include <kdebug.h>
|
|
|
|
#include <kgenericfactory.h>
|
|
|
|
|
|
|
|
#include "kopetechatsessionmanager.h"
|
|
|
|
|
|
|
|
#include "texteffectplugin.h"
|
|
|
|
#include "texteffectconfig.h"
|
|
|
|
|
|
|
|
typedef KGenericFactory<TextEffectPlugin> TextEffectPluginFactory;
|
|
|
|
K_EXPORT_COMPONENT_FACTORY( kopete_texteffect, TextEffectPluginFactory( "kopete_texteffect" ) )
|
|
|
|
|
|
|
|
TextEffectPlugin::TextEffectPlugin( TQObject *parent, const char *name, const TQStringList &/*args*/ )
|
|
|
|
: Kopete::Plugin( TextEffectPluginFactory::instance(), parent, name )
|
|
|
|
{
|
|
|
|
if( !pluginStatic_ )
|
|
|
|
pluginStatic_=this;
|
|
|
|
|
|
|
|
m_config = new TextEffectConfig;
|
|
|
|
|
|
|
|
connect ( this , TQT_SIGNAL( settingsChanged() ) , this , TQT_SLOT( slotSettingsChanged() ) );
|
|
|
|
|
|
|
|
connect( Kopete::ChatSessionManager::self(),
|
|
|
|
TQT_SIGNAL( aboutToSend( Kopete::Message & ) ),
|
|
|
|
TQT_SLOT( slotOutgoingMessage( Kopete::Message & ) ) );
|
|
|
|
|
|
|
|
last_color=0;
|
|
|
|
}
|
|
|
|
|
|
|
|
TextEffectPlugin::~TextEffectPlugin()
|
|
|
|
{
|
|
|
|
delete m_config;
|
|
|
|
pluginStatic_ = 0L;
|
|
|
|
}
|
|
|
|
|
|
|
|
TextEffectPlugin* TextEffectPlugin::plugin()
|
|
|
|
{
|
|
|
|
return pluginStatic_ ;
|
|
|
|
}
|
|
|
|
|
|
|
|
TextEffectPlugin* TextEffectPlugin::pluginStatic_ = 0L;
|
|
|
|
|
|
|
|
|
|
|
|
void TextEffectPlugin::slotOutgoingMessage( Kopete::Message& msg )
|
|
|
|
{
|
|
|
|
if(msg.direction() != Kopete::Message::Outbound)
|
|
|
|
return;
|
|
|
|
|
|
|
|
TQStringList colors=m_config->colors();
|
|
|
|
|
|
|
|
if(m_config->colorChar() || m_config->colorWords() || m_config->lamer() || m_config->waves() )
|
|
|
|
{
|
|
|
|
TQString original=msg.plainBody();
|
|
|
|
TQString resultat;
|
|
|
|
|
|
|
|
unsigned int c=0;
|
|
|
|
bool wavein=false;
|
|
|
|
|
|
|
|
for(unsigned int f=0;f<original.length();f++)
|
|
|
|
{
|
|
|
|
TQChar x=original[f];
|
|
|
|
if(f==0 || m_config->colorChar() || (m_config->colorWords() && x==' ' ))
|
|
|
|
{
|
|
|
|
if(f!=0)
|
|
|
|
resultat+="</font>";
|
|
|
|
resultat+="<font color=\"";
|
|
|
|
resultat+=colors[c];
|
|
|
|
if(m_config->colorRandom())
|
|
|
|
c=rand()%colors.count();
|
|
|
|
else
|
|
|
|
{
|
|
|
|
c++;
|
|
|
|
if(c >= colors.count())
|
|
|
|
c=0;
|
|
|
|
}
|
|
|
|
resultat+="\">";
|
|
|
|
}
|
|
|
|
switch (x.latin1())
|
|
|
|
{
|
|
|
|
case '>':
|
|
|
|
resultat+=">";
|
|
|
|
break;
|
|
|
|
case '<':
|
|
|
|
resultat+="<";
|
|
|
|
break;
|
|
|
|
case '&':
|
|
|
|
resultat+="&";
|
|
|
|
break;
|
|
|
|
case '\n':
|
|
|
|
resultat+="<br>";
|
|
|
|
case 'a':
|
|
|
|
case 'A':
|
|
|
|
if(m_config->lamer())
|
|
|
|
{
|
|
|
|
resultat+="4";
|
|
|
|
break;
|
|
|
|
} //else, go to the default, all other case have this check
|
|
|
|
case 'e':
|
|
|
|
case 'E':
|
|
|
|
if(m_config->lamer())
|
|
|
|
{
|
|
|
|
resultat+="3";
|
|
|
|
break;
|
|
|
|
}//else, go to the default, all other case have this check
|
|
|
|
case 'i':
|
|
|
|
case 'I':
|
|
|
|
if(m_config->lamer())
|
|
|
|
{
|
|
|
|
resultat+="1";
|
|
|
|
break;
|
|
|
|
}//else, go to the default, all other case have this check
|
|
|
|
case 'l':
|
|
|
|
case 'L':
|
|
|
|
if(m_config->lamer())
|
|
|
|
{
|
|
|
|
resultat+="|";
|
|
|
|
break;
|
|
|
|
}//else, go to the default, all other case have this check
|
|
|
|
case 't':
|
|
|
|
case 'T':
|
|
|
|
if(m_config->lamer())
|
|
|
|
{
|
|
|
|
resultat+="7";
|
|
|
|
break;
|
|
|
|
}//else, go to the default, all other case have this check
|
|
|
|
case 's':
|
|
|
|
case 'S':
|
|
|
|
if(m_config->lamer())
|
|
|
|
{
|
|
|
|
resultat+="5";
|
|
|
|
break;
|
|
|
|
}//else, go to the default, all other case have this check
|
|
|
|
case 'o':
|
|
|
|
case 'O':
|
|
|
|
if(m_config->lamer())
|
|
|
|
{
|
|
|
|
resultat+="0";
|
|
|
|
break;
|
|
|
|
}//else, go to the default, all other case have this check
|
|
|
|
default:
|
|
|
|
if(m_config->waves())
|
|
|
|
{
|
|
|
|
resultat+= wavein ? x.lower() : x.upper();
|
|
|
|
wavein=!wavein;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
resultat+=x;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if( m_config->colorChar() || m_config->colorWords() )
|
|
|
|
resultat+="</font>";
|
|
|
|
msg.setBody(resultat,Kopete::Message::RichText);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(m_config->colorLines())
|
|
|
|
{
|
|
|
|
if(m_config->colorRandom())
|
|
|
|
{
|
|
|
|
last_color=rand()%colors.count();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
last_color++;
|
|
|
|
if(last_color >= colors.count())
|
|
|
|
last_color=0;
|
|
|
|
}
|
|
|
|
|
|
|
|
msg.setFg(TQColor (colors[last_color]));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void TextEffectPlugin::slotSettingsChanged()
|
|
|
|
{
|
|
|
|
m_config->load();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#include "texteffectplugin.moc"
|
|
|
|
|