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/libkopete/ui/addressbooklinkwidget.cpp

100 lines
3.2 KiB

/*
AddressBookLinkWidget
A compact widget for showing and changing which address book item a
particular Kopete::MetaContact is related to.
Comprises a label showing the contact's name, a Clear button, and a Change
button that usually invokes the AddressBookSelectorWidget.
Copyright (c) 2006 by Will Stephenson <wstephenson@kde.org>
Kopete (c) 2002-2006 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 <tqapplication.h>
#include <klineedit.h>
#include <tdelocale.h>
#include <kpushbutton.h>
#include <kiconloader.h>
#include <kopetemetacontact.h>
#include "addressbooklinkwidget.h"
#include "addressbookselectordialog.h"
#include "addressbookselectorwidget.h"
namespace Kopete {
namespace UI {
AddressBookLinkWidget::AddressBookLinkWidget( TQWidget * parent, const char * name ) : AddressBookLinkWidgetBase( parent, name ), mMetaContact( 0 )
{
btnClear->setIconSet( SmallIconSet( TQApplication::reverseLayout() ? TQString::fromLatin1( "locationbar_erase" ) : TQString::fromLatin1( "clear_left") ) );
connect( btnClear, TQT_SIGNAL( clicked() ), this, TQT_SLOT( slotClearAddressee() ) );
connect( btnSelectAddressee, TQT_SIGNAL( clicked() ), TQT_SLOT( slotSelectAddressee() ) );
}
void AddressBookLinkWidget::setAddressee( const TDEABC::Addressee& addr )
{
edtAddressee->setText( addr.realName() );
btnClear->setEnabled( !addr.isEmpty() );
}
void AddressBookLinkWidget::setMetaContact( const Kopete::MetaContact * mc )
{
mMetaContact = mc;
}
TQString AddressBookLinkWidget::uid() const
{
return mSelectedUid;
}
void AddressBookLinkWidget::slotClearAddressee()
{
edtAddressee->clear();
btnClear->setEnabled( false );
TDEABC::Addressee mrEmpty;
mSelectedUid = TQString();
emit addresseeChanged( mrEmpty );
}
void AddressBookLinkWidget::slotSelectAddressee()
{
TQString message;
if ( mMetaContact )
message = i18n("Choose the corresponding entry for '%1'" ).arg( mMetaContact->displayName() );
else
message = i18n("Choose the corresponding entry in the address book" );
Kopete::UI::AddressBookSelectorDialog dialog( i18n("Addressbook Association"), message, ( mMetaContact ? mMetaContact->metaContactId() : TQString() ), this );
int result = dialog.exec();
TDEABC::Addressee addr;
if ( result == TQDialog::Accepted )
{
addr = dialog.addressBookSelectorWidget()->addressee();
edtAddressee->setText( addr.realName() );
btnClear->setEnabled( !addr.isEmpty() );
mSelectedUid = ( addr.isEmpty() ? TQString() : addr.uid() );
emit addresseeChanged( addr );
}
}
} // end namespace UI
} // end namespace Kopete
#include "addressbooklinkwidget.moc"