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/protocols/oscar/icq/ui/icquserinfowidget.cpp

188 lines
8.5 KiB

/*
Kopete Oscar Protocol
icquserinfowidget.cpp - Display ICQ user info
Copyright (c) 2005 Matt Rogers <mattr@kde.org>
Kopete (c) 2002-2005 by the Kopete developers <kopete-devel@kde.org>
*************************************************************************
* *
* 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 "icquserinfowidget.h"
#include <tqlayout.h>
#include <tqlineedit.h>
#include <tqspinbox.h>
#include <tqcombobox.h>
#include <tqobject.h>
#include <tqtextcodec.h>
#include <kdatewidget.h>
#include <kdebug.h>
#include <tdeglobal.h>
#include <kiconloader.h>
#include <kjanuswidget.h>
#include <tdelocale.h>
#include "icqgeneralinfo.h"
#include "icqcontact.h"
#include "icqprotocol.h"
#include "icqworkinfowidget.h"
#include "icqotherinfowidget.h"
#include "icqinterestinfowidget.h"
ICQUserInfoWidget::ICQUserInfoWidget( TQWidget * parent, const char * name )
: KDialogBase( KDialogBase::IconList, 0, parent, name, false, i18n( "ICQ User Information" ), Ok )
{
kdDebug(14153) << k_funcinfo << "Creating new icq user info widget" << endl;
TQFrame* genInfo = addPage( i18n( "General Info" ),
i18n( "General ICQ Information" ),
TDEGlobal::iconLoader()->loadIcon( TQString::fromLatin1( "identity" ), TDEIcon::Desktop ) );
TQVBoxLayout* genLayout = new TQVBoxLayout( genInfo );
m_genInfoWidget = new ICQGeneralInfoWidget( genInfo, "Basic Information" );
genLayout->addWidget( m_genInfoWidget );
TQFrame* workInfo = addPage( i18n( "Work Info" ),
i18n( "Work Information" ),
TDEGlobal::iconLoader()->loadIcon( TQString::fromLatin1( "attach" ), TDEIcon::Desktop ) );
TQVBoxLayout* workLayout = new TQVBoxLayout( workInfo );
m_workInfoWidget = new ICQWorkInfoWidget( workInfo, "Work Information" );
workLayout->addWidget( m_workInfoWidget );
TQFrame* otherInfo = addPage( i18n( "Other Info" ),
i18n( "Other ICQ Information" ),
TDEGlobal::iconLoader()->loadIcon( TQString::fromLatin1( "email" ), TDEIcon::Desktop ) );
TQVBoxLayout* otherLayout = new TQVBoxLayout( otherInfo );
m_otherInfoWidget = new ICQOtherInfoWidget( otherInfo, "Other Information" );
otherLayout->addWidget( m_otherInfoWidget );
TQFrame* interestInfo = addPage( i18n( "Interest Info" ),
i18n( "Interest" ),
TDEGlobal::iconLoader()->loadIcon( TQString::fromLatin1( "email" ), TDEIcon::Desktop ) );
TQVBoxLayout* interestLayout = new TQVBoxLayout( interestInfo );
m_interestInfoWidget = new ICQInterestInfoWidget( interestInfo, "Other Information" );
interestLayout->addWidget( m_interestInfoWidget );
}
void ICQUserInfoWidget::setContact( ICQContact* contact )
{
m_contact = contact;
TQObject::connect( contact, TQT_SIGNAL( haveBasicInfo( const ICQGeneralUserInfo& ) ),
this, TQT_SLOT( fillBasicInfo( const ICQGeneralUserInfo& ) ) );
TQObject::connect( contact, TQT_SIGNAL( haveWorkInfo( const ICQWorkUserInfo& ) ),
this, TQT_SLOT( fillWorkInfo( const ICQWorkUserInfo& ) ) );
TQObject::connect( contact, TQT_SIGNAL( haveEmailInfo( const ICQEmailInfo& ) ),
this, TQT_SLOT( fillEmailInfo( const ICQEmailInfo& ) ) );
TQObject::connect( contact, TQT_SIGNAL( haveMoreInfo( const ICQMoreUserInfo& ) ),
this, TQT_SLOT( fillMoreInfo( const ICQMoreUserInfo& ) ) );
TQObject::connect( contact, TQT_SIGNAL( haveInterestInfo( const ICQInterestInfo& ) ),
this, TQT_SLOT( fillInterestInfo( const ICQInterestInfo& ) ) );
}
void ICQUserInfoWidget::fillBasicInfo( const ICQGeneralUserInfo& ui )
{
TQTextCodec* codec = m_contact->contactCodec();
m_genInfoWidget->uinEdit->setText( m_contact->contactId() );
m_genInfoWidget->nickNameEdit->setText( codec->toUnicode( ui.nickname ) );
m_genInfoWidget->fullNameEdit->setText( codec->toUnicode( ui.firstName ) + " " + codec->toUnicode( ui.lastName ) );
m_genInfoWidget->ipEdit->setText( m_contact->property( "ipAddress" ).value().toString() );
m_genInfoWidget->emailEdit->setText( codec->toUnicode( ui.email ) );
m_genInfoWidget->cityEdit->setText( codec->toUnicode( ui.city ) );
m_genInfoWidget->stateEdit->setText( codec->toUnicode( ui.state ) );
m_genInfoWidget->phoneEdit->setText( codec->toUnicode( ui.phoneNumber ) );
m_genInfoWidget->faxEdit->setText( codec->toUnicode( ui.faxNumber ) );
m_genInfoWidget->addressEdit->setText( codec->toUnicode( ui.address ) );
m_genInfoWidget->cellEdit->setText( codec->toUnicode( ui.cellNumber ) );
m_genInfoWidget->zipEdit->setText( codec->toUnicode( ui.zip ) );
TQString country = static_cast<ICQProtocol*>( m_contact->protocol() )->countries()[ui.country];
m_genInfoWidget->countryEdit->setText( country );
}
void ICQUserInfoWidget::fillWorkInfo( const ICQWorkUserInfo& ui )
{
TQTextCodec* codec = m_contact->contactCodec();
m_workInfoWidget->cityEdit->setText( codec->toUnicode( ui.city ) );
m_workInfoWidget->stateEdit->setText( codec->toUnicode( ui.state ) );
m_workInfoWidget->phoneEdit->setText( codec->toUnicode( ui.phone ) );
m_workInfoWidget->faxEdit->setText( codec->toUnicode( ui.fax ) );
m_workInfoWidget->addressEdit->setText( codec->toUnicode( ui.address ) );
m_workInfoWidget->zipEdit->setText( codec->toUnicode( ui.zip ) );
m_workInfoWidget->companyEdit->setText( codec->toUnicode( ui.company ) );
m_workInfoWidget->departmentEdit->setText( codec->toUnicode( ui.department ) );
m_workInfoWidget->positionEdit->setText( codec->toUnicode( ui.position ) );
m_workInfoWidget->homepageEdit->setText( codec->toUnicode( ui.homepage ) );
ICQProtocol* p = static_cast<ICQProtocol*>( m_contact->protocol() );
TQString country = p->countries()[ui.country];
m_workInfoWidget->countryEdit->setText( country );
//TODO handle the occupation
}
void ICQUserInfoWidget::fillEmailInfo( const ICQEmailInfo& )
{
}
void ICQUserInfoWidget::fillInterestInfo( const ICQInterestInfo& info)
{
TQTextCodec* codec = m_contact->contactCodec();
if (info.count>0) {
TQString topic = static_cast<ICQProtocol*>( m_contact->protocol() )->interests()[info.topics[0]];
m_interestInfoWidget->topic1->setText( topic );
m_interestInfoWidget->desc1->setText( codec->toUnicode( info.descriptions[0] ) );
}
if (info.count>1) {
TQString topic = static_cast<ICQProtocol*>( m_contact->protocol() )->interests()[info.topics[1]];
m_interestInfoWidget->topic2->setText( topic );
m_interestInfoWidget->desc2->setText( codec->toUnicode( info.descriptions[1] ) );
}
if (info.count>2) {
TQString topic = static_cast<ICQProtocol*>( m_contact->protocol() )->interests()[info.topics[2]];
m_interestInfoWidget->topic3->setText( topic );
m_interestInfoWidget->desc3->setText( codec->toUnicode( info.descriptions[2] ) );
}
if (info.count>3) {
TQString topic = static_cast<ICQProtocol*>( m_contact->protocol() )->interests()[info.topics[3]];
m_interestInfoWidget->topic4->setText( topic );
m_interestInfoWidget->desc4->setText( codec->toUnicode( info.descriptions[3] ) );
}
}
void ICQUserInfoWidget::fillMoreInfo( const ICQMoreUserInfo& ui )
{
TQTextCodec* codec = m_contact->contactCodec();
m_genInfoWidget->ageSpinBox->setValue( ui.age );
if ( ui.birthday.isValid() )
m_genInfoWidget->birthday->setText( TDEGlobal::locale()->formatDate( ui.birthday,true ) );
TQString gender = static_cast<ICQProtocol*>( m_contact->protocol() )->genders()[ui.gender];
m_genInfoWidget->genderEdit->setText( gender );
m_genInfoWidget->homepageEdit->setText( codec->toUnicode( ui.homepage ) );
TQString ms = static_cast<ICQProtocol*>( m_contact->protocol() )->maritals()[ui.marital];
m_genInfoWidget->marital->setText( ms );
m_genInfoWidget->oCityEdit->setText( codec->toUnicode( ui.ocity) );
m_genInfoWidget->oStateEdit->setText( codec->toUnicode( ui.ostate) );
TQString ocountry = static_cast<ICQProtocol*>( m_contact->protocol() )->countries()[ui.ocountry];
m_genInfoWidget->oCountryEdit->setText( ocountry );
//TODO languages
}
#include "icquserinfowidget.moc"