/* Copyright (c) 2005 Olivier Goffart Kopete (c) 2005 by the Kopete developers ************************************************************************* * * * This library is free software; you can redistribute it and/or * * modify it under the terms of the GNU Lesser General Public * * License as published by the Free Software Foundation; either * * version 2 of the License, or (at your option) any later version. * * * ************************************************************************* */ #include "contactaddednotifydialog.h" #include #include #include #include #include #include #include #include #include #include #include #include #include "kopetegroup.h" #include "kopeteaccount.h" #include "kopeteuiglobal.h" #include "kopeteprotocol.h" #include "kopetecontactlist.h" #include "kopetemetacontact.h" #include "addressbooklinkwidget.h" #include "addressbookselectordialog.h" #include "contactaddednotifywidget.h" namespace Kopete { namespace UI { struct ContactAddedNotifyDialog::Private { ContactAddedNotifyWidget *widget; Account *account; TQString contactId; TQString addressbookId; }; ContactAddedNotifyDialog::ContactAddedNotifyDialog(const TQString& contactId, const TQString& contactNick, Kopete::Account *account, uint hide) : KDialogBase( Global::mainWidget(), "ContactAddedNotify", /*modal=*/false, i18n("Someone Has Added You"), Ok|Cancel ) { setWFlags(WDestructiveClose | getWFlags() ); d=new Private; d->widget=new ContactAddedNotifyWidget(this); setMainWidget(d->widget); d->account=account; d->contactId=contactId; d->widget->m_label->setText(i18n(" The contact %2 has added you to his/her contactlist. (Account %3)") .tqarg( KURL::encode_string( account->protocol()->pluginId() ) + TQString::tqfromLatin1(":") + KURL::encode_string( account->accountId() ) , contactNick.isEmpty() ? contactId : contactNick + TQString::tqfromLatin1(" < ") + contactId + TQString::tqfromLatin1(" >") , account->accountLabel() ) ); if( hide & InfoButton) d->widget->m_infoButton->hide() ; if( hide & AuthorizeCheckBox ) { d->widget->m_authorizeCb->hide(); d->widget->m_authorizeCb->setChecked(false); } if( hide & AddCheckBox ) { d->widget->m_addCb->hide(); d->widget->m_addCb->setChecked(false); } if( hide & AddGroupBox ) d->widget->m_contactInfoBox->hide(); // Populate the groups list Kopete::GroupList groups=Kopete::ContactList::self()->groups(); for( Kopete::Group *it = groups.first(); it; it = groups.next() ) { TQString groupname = it->displayName(); if ( it->type() == Group::Normal && !groupname.isEmpty() ) { d->widget->m_groupList->insertItem(groupname); } } d->widget->m_groupList->setCurrentText(TQString()); //default to top-level connect( d->widget->widAddresseeLink, TQT_SIGNAL( addresseeChanged( const KABC::Addressee& ) ), this, TQT_SLOT( slotAddresseeSelected( const KABC::Addressee& ) ) ); connect( d->widget->m_infoButton, TQT_SIGNAL( clicked() ), this, TQT_SLOT( slotInfoClicked() ) ); connect( this, TQT_SIGNAL(okClicked()) , this , TQT_SLOT(slotFinished())); } ContactAddedNotifyDialog::~ContactAddedNotifyDialog() { delete d; } bool ContactAddedNotifyDialog::added() const { return d->widget->m_addCb->isChecked(); } bool ContactAddedNotifyDialog::authorized() const { return d->widget->m_authorizeCb->isChecked(); } TQString ContactAddedNotifyDialog::displayName() const { return d->widget->m_displayNameEdit->text(); } Group *ContactAddedNotifyDialog::group() const { TQString grpName=d->widget->m_groupList->currentText(); if(grpName.isEmpty()) return Group::topLevel(); return ContactList::self()->findGroup( grpName ); } MetaContact *ContactAddedNotifyDialog::addContact() const { if(!added() || !d->account) return 0L; MetaContact *metacontact=d->account->addContact(d->contactId, displayName(), group()); if(!metacontact) return 0L; metacontact->setMetaContactId(d->addressbookId); return metacontact; } void ContactAddedNotifyDialog::slotAddresseeSelected( const KABC::Addressee & addr ) { if ( !addr.isEmpty() ) { d->addressbookId = addr.uid(); } } void ContactAddedNotifyDialog::slotInfoClicked() { emit infoClicked(d->contactId); } void ContactAddedNotifyDialog::slotFinished() { emit applyClicked(d->contactId); } } // namespace UI } // namespace Kopete #include "contactaddednotifydialog.moc"