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.
101 lines
2.7 KiB
101 lines
2.7 KiB
/*
|
|
ircguiclient.cpp
|
|
|
|
Copyright (c) 2003 by Jason Keirstead <jason@keirstead.org>
|
|
Kopete (c) 2003 by the Kopete developers <kopete-devel@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 <klocale.h>
|
|
|
|
#include <tdeversion.h>
|
|
#if KDE_IS_VERSION( 3, 1, 90 )
|
|
#include <tdeactioncollection.h>
|
|
#else
|
|
// ------------------------------------------------------------
|
|
// TODO: UGLY HACK, remove when we drop KDE 3.1 compatibility
|
|
#ifdef KDE_NO_COMPAT
|
|
#undef KDE_NO_COMPAT
|
|
#include <tdeaction.h>
|
|
#define KDE_NO_COMPAT 1
|
|
#endif
|
|
// ------------------------------------------------------------
|
|
#endif
|
|
|
|
#include <tqptrlist.h>
|
|
#include <kdebug.h>
|
|
#include <tqdom.h>
|
|
|
|
#include "kopetechatsession.h"
|
|
#include "kcodecaction.h"
|
|
#include "ircguiclient.h"
|
|
#include "ircaccount.h"
|
|
#include "irccontact.h"
|
|
|
|
IRCGUIClient::IRCGUIClient( Kopete::ChatSession *parent ) : TQObject(parent) , KXMLGUIClient(parent)
|
|
{
|
|
Kopete::ContactPtrList members = parent->members();
|
|
if( members.count() > 0 )
|
|
{
|
|
m_user = static_cast<IRCContact*>( members.first() );
|
|
|
|
/***
|
|
FIXME: Why doesn't this work???? Have to use DOM hack below now...
|
|
|
|
setXMLFile("ircchatui.rc");
|
|
|
|
unplugActionList( "irccontactactionlist" );
|
|
TQPtrList<TDEAction> *actions = m_user->customContextMenuActions( parent );
|
|
plugActionList( "irccontactactionlist", *actions );
|
|
delete actions;
|
|
*/
|
|
|
|
setXMLFile("ircchatui.rc");
|
|
|
|
TQDomDocument doc = domDocument();
|
|
TQDomNode menu = doc.documentElement().firstChild().firstChild();
|
|
TQPtrList<TDEAction> *actions = m_user->customContextMenuActions( parent );
|
|
if( actions )
|
|
{
|
|
for( TDEAction *a = actions->first(); a; a = actions->next() )
|
|
{
|
|
actionCollection()->insert( a );
|
|
TQDomElement newNode = doc.createElement( "Action" );
|
|
newNode.setAttribute( "name", a->name() );
|
|
menu.appendChild( newNode );
|
|
}
|
|
}
|
|
else
|
|
{
|
|
kdDebug(14120) << k_funcinfo << "Actions == 0" << endl;
|
|
}
|
|
|
|
delete actions;
|
|
|
|
setDOMDocument( doc );
|
|
}
|
|
else
|
|
{
|
|
kdDebug(14120) << k_funcinfo << "Members == 0" << endl;
|
|
}
|
|
}
|
|
|
|
IRCGUIClient::~IRCGUIClient()
|
|
{
|
|
}
|
|
|
|
void IRCGUIClient::slotSelectCodec( const TQTextCodec *codec )
|
|
{
|
|
m_user->setCodec( codec );
|
|
}
|
|
|
|
#include "ircguiclient.moc"
|