/* irceditaccountwidget.cpp - IRC Account Widget Copyright (c) 2005 by Tommi Rantala Copyright (c) 2003 by Olivier Goffart Copyright (c) 2003 by Jason Keirstead Kopete (c) 2003-2005 by the Kopete developers ************************************************************************* * * * 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 "irceditaccountwidget.h" #include "ircaccount.h" #include "ircusercontact.h" #include "ircprotocol.h" #include "kcodecaction.h" #include "kircengine.h" #include "kopetepasswordwidget.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include IRCEditAccountWidget::IRCEditAccountWidget(IRCProtocol *proto, IRCAccount *ident, QWidget *parent, const char * ) : IRCEditAccountBase(parent), KopeteEditAccountWidget(ident) { mProtocol = proto; // default charset/encoding for new accounts: utf-8, see http://www.iana.org/assignments/character-sets int currentCodec = 106; if( account() ) { QString nickName = account()->mySelf()->nickName(); QString serverInfo = account()->accountId(); mNickName->setText( nickName ); mAltNickname->setText( account()->altNick() ); mUserName->setText( account()->userName() ); m_realNameLineEdit->setText( account()->realName() ); partMessage->setText( account()->defaultPart() ); quitMessage->setText( account()->defaultQuit() ); if( account()->codec() ) currentCodec = account()->codec()->mibEnum(); mPasswordWidget->load ( &account()->password() ); preferSSL->setChecked(account()->configGroup()->readBoolEntry("PreferSSL")); autoShowServerWindow->setChecked( account()->configGroup()->readBoolEntry("AutoShowServerWindow") ); autoConnect->setChecked( static_cast(account())->excludeConnect() ); KConfigGroup *config = account()->configGroup(); serverNotices->setCurrentItem( config->readNumEntry( "ServerNotices", IRCAccount::ServerWindow ) - 1 ); serverMessages->setCurrentItem( config->readNumEntry( "ServerMessages", IRCAccount::ServerWindow ) - 1 ); informationReplies->setCurrentItem( config->readNumEntry( "InformationReplies", IRCAccount::ActiveWindow ) - 1 ); errorMessages->setCurrentItem( config->readNumEntry( "ErrorMessages", IRCAccount::ActiveWindow ) - 1 ); QStringList cmds = account()->connectCommands(); for( QStringList::Iterator i = cmds.begin(); i != cmds.end(); ++i ) new QListViewItem( commandList, *i ); const QMap< QString, QString > replies = account()->customCtcpReplies(); for( QMap< QString, QString >::ConstIterator it = replies.begin(); it != replies.end(); ++it ) new QListViewItem( ctcpList, it.key(), it.data() ); } mUserName->setValidator( new QRegExpValidator( QString::fromLatin1("^[^\\s]*$"), mUserName ) ); mNickName->setValidator( new QRegExpValidator( QString::fromLatin1("^[^#+&][^\\s]*$"), mNickName ) ); mAltNickname->setValidator( new QRegExpValidator( QString::fromLatin1("^[^#+&][^\\s]*$"), mAltNickname ) ); charset->insertStringList( KCodecAction::supportedEncodings() ); for (int i = 0; i < charset->count(); ++i) { QString encoding = KGlobal::charsets()->encodingForName(charset->text(i)); if (KGlobal::charsets()->codecForName(encoding)->mibEnum() == currentCodec) { charset->setCurrentItem( i ); break; } } connect( commandList, SIGNAL( contextMenu( KListView *, QListViewItem *, const QPoint & ) ), this, SLOT( slotCommandContextMenu( KListView *, QListViewItem *, const QPoint & ) ) ); connect( ctcpList, SIGNAL( contextMenu( KListView *, QListViewItem *, const QPoint & ) ), this, SLOT( slotCtcpContextMenu( KListView *, QListViewItem *, const QPoint & ) ) ); connect( addButton, SIGNAL( clicked() ), this, SLOT( slotAddCommand() ) ); connect( editButton, SIGNAL( clicked() ), this, SLOT(slotEditNetworks() ) ); connect( addReply, SIGNAL( clicked() ), this, SLOT( slotAddCtcp() ) ); connect( network, SIGNAL( activated( const QString & ) ), this, SLOT( slotUpdateNetworkDescription( const QString &) ) ); connect( IRCProtocol::protocol(), SIGNAL( networkConfigUpdated( const QString & ) ), this, SLOT( slotUpdateNetworks( const QString & ) ) ); slotUpdateNetworks( QString::null ); } IRCEditAccountWidget::~IRCEditAccountWidget() { } IRCAccount *IRCEditAccountWidget::account () { return dynamic_cast(KopeteEditAccountWidget::account () ); } void IRCEditAccountWidget::slotUpdateNetworks( const QString & selectedNetwork ) { network->clear(); uint i = 0; QStringList keys; for( QDictIterator it( IRCProtocol::protocol()->networks() ); it.current(); ++it ) keys.append( it.currentKey() ); keys.sort(); QStringList::Iterator end = keys.end(); for( QStringList::Iterator it = keys.begin(); it != end; ++it ) { IRCNetwork * current = IRCProtocol::protocol()->networks()[*it]; network->insertItem( current->name ); if ( ( account() && account()->networkName() == current->name ) || current->name == selectedNetwork ) { network->setCurrentItem( i ); description->setText( current->description ); } ++i; } } void IRCEditAccountWidget::slotEditNetworks() { IRCProtocol::protocol()->editNetworks( network->currentText() ); } void IRCEditAccountWidget::slotUpdateNetworkDescription( const QString &network ) { description->setText( IRCProtocol::protocol()->networks()[ network ]->description ); } void IRCEditAccountWidget::slotCommandContextMenu( KListView *, QListViewItem *item, const QPoint &p ) { QPopupMenu popup; popup.insertItem( i18n("Remove Command"), 1 ); if( popup.exec( p ) == 1 ) delete item; } void IRCEditAccountWidget::slotCtcpContextMenu( KListView *, QListViewItem *item, const QPoint &p ) { QPopupMenu popup; popup.insertItem( i18n("Remove CTCP Reply"), 1 ); if( popup.exec( p ) == 1 ) delete item; } void IRCEditAccountWidget::slotAddCommand() { if ( !commandEdit->text().isEmpty() ) { new QListViewItem( commandList, commandEdit->text() ); commandEdit->clear(); } } void IRCEditAccountWidget::slotAddCtcp() { if ( !newCTCP->text().isEmpty() && !newReply->text().isEmpty() ) { new QListViewItem( ctcpList, newCTCP->text(), newReply->text() ); newCTCP->clear(); newReply->clear(); } } QString IRCEditAccountWidget::generateAccountId( const QString &network ) { KConfig *config = KGlobal::config(); QString nextId = network; uint accountNumber = 1; while( config->hasGroup( QString("Account_%1_%2").arg( m_protocol->pluginId() ).arg( nextId ) ) ) { nextId = QString::fromLatin1("%1_%2").arg( network ).arg( ++accountNumber ); } kdDebug( 14120 ) << k_funcinfo << " ID IS: " << nextId << endl; return nextId; } Kopete::Account *IRCEditAccountWidget::apply() { QString nickName = mNickName->text(); QString networkName = network->currentText(); if( !account() ) { setAccount( new IRCAccount( mProtocol, generateAccountId(networkName), QString::null, networkName, nickName ) ); } else { account()->setNickName( nickName ); account()->setNetwork( networkName ); } mPasswordWidget->save( &account()->password() ); account()->setAltNick( mAltNickname->text() ); account()->setUserName( mUserName->text() ); account()->setRealName( m_realNameLineEdit->text() ); account()->setDefaultPart( partMessage->text() ); account()->setDefaultQuit( quitMessage->text() ); account()->setAutoShowServerWindow( autoShowServerWindow->isChecked() ); account()->setExcludeConnect( autoConnect->isChecked() ); account()->setMessageDestinations( serverNotices->currentItem() + 1, serverMessages->currentItem() + 1, informationReplies->currentItem() + 1, errorMessages->currentItem() + 1 ); account()->configGroup()->writeEntry("PreferSSL", preferSSL->isChecked()); QStringList cmds; for( QListViewItem *i = commandList->firstChild(); i; i = i->nextSibling() ) cmds.append( i->text(0) ); QMap< QString, QString > replies; for( QListViewItem *i = ctcpList->firstChild(); i; i = i->nextSibling() ) replies[ i->text(0) ] = i->text(1); account()->setCustomCtcpReplies( replies ); account()->setConnectCommands( cmds ); KCharsets *c = KGlobal::charsets(); account()->setCodec( c->codecForName( c->encodingForName( charset->currentText() ) ) ); return account(); } bool IRCEditAccountWidget::validateData() { if( mNickName->text().isEmpty() ) KMessageBox::sorry(this, i18n("You must enter a nickname."), i18n("Kopete")); else return true; return false; } #include "irceditaccountwidget.moc"