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.
191 lines
8.5 KiB
191 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 <qlayout.h>
|
|
#include <qlineedit.h>
|
|
#include <qspinbox.h>
|
|
#include <qcombobox.h>
|
|
#include <qobject.h>
|
|
#include <qtextcodec.h>
|
|
|
|
#include <kdatewidget.h>
|
|
#include <kdebug.h>
|
|
#include <kglobal.h>
|
|
#include <kiconloader.h>
|
|
#include <kjanuswidget.h>
|
|
#include <klocale.h>
|
|
|
|
#include "icqgeneralinfo.h"
|
|
#include "icqcontact.h"
|
|
#include "icqprotocol.h"
|
|
#include "icqworkinfowidget.h"
|
|
#include "icqotherinfowidget.h"
|
|
#include "icqinterestinfowidget.h"
|
|
|
|
|
|
ICQUserInfoWidget::ICQUserInfoWidget( QWidget * 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;
|
|
|
|
QFrame* genInfo = addPage( i18n( "General Info" ),
|
|
i18n( "General ICQ Information" ),
|
|
KGlobal::iconLoader()->loadIcon( QString::fromLatin1( "identity" ), KIcon::Desktop ) );
|
|
QVBoxLayout* genLayout = new QVBoxLayout( genInfo );
|
|
m_genInfoWidget = new ICQGeneralInfoWidget( genInfo, "Basic Information" );
|
|
genLayout->addWidget( m_genInfoWidget );
|
|
|
|
QFrame* workInfo = addPage( i18n( "Work Info" ),
|
|
i18n( "Work Information" ),
|
|
KGlobal::iconLoader()->loadIcon( QString::fromLatin1( "attach" ), KIcon::Desktop ) );
|
|
QVBoxLayout* workLayout = new QVBoxLayout( workInfo );
|
|
m_workInfoWidget = new ICQWorkInfoWidget( workInfo, "Work Information" );
|
|
workLayout->addWidget( m_workInfoWidget );
|
|
|
|
QFrame* otherInfo = addPage( i18n( "Other Info" ),
|
|
i18n( "Other ICQ Information" ),
|
|
KGlobal::iconLoader()->loadIcon( QString::fromLatin1( "email" ), KIcon::Desktop ) );
|
|
QVBoxLayout* otherLayout = new QVBoxLayout( otherInfo );
|
|
m_otherInfoWidget = new ICQOtherInfoWidget( otherInfo, "Other Information" );
|
|
otherLayout->addWidget( m_otherInfoWidget );
|
|
|
|
QFrame* interestInfo = addPage( i18n( "Interest Info" ),
|
|
i18n( "Interest" ),
|
|
KGlobal::iconLoader()->loadIcon( QString::fromLatin1( "email" ), KIcon::Desktop ) );
|
|
QVBoxLayout* interestLayout = new QVBoxLayout( interestInfo );
|
|
m_interestInfoWidget = new ICQInterestInfoWidget( interestInfo, "Other Information" );
|
|
interestLayout->addWidget( m_interestInfoWidget );
|
|
|
|
}
|
|
|
|
void ICQUserInfoWidget::setContact( ICQContact* contact )
|
|
{
|
|
m_contact = contact;
|
|
QObject::connect( contact, SIGNAL( haveBasicInfo( const ICQGeneralUserInfo& ) ),
|
|
this, SLOT( fillBasicInfo( const ICQGeneralUserInfo& ) ) );
|
|
QObject::connect( contact, SIGNAL( haveWorkInfo( const ICQWorkUserInfo& ) ),
|
|
this, SLOT( fillWorkInfo( const ICQWorkUserInfo& ) ) );
|
|
QObject::connect( contact, SIGNAL( haveEmailInfo( const ICQEmailInfo& ) ),
|
|
this, SLOT( fillEmailInfo( const ICQEmailInfo& ) ) );
|
|
QObject::connect( contact, SIGNAL( haveMoreInfo( const ICQMoreUserInfo& ) ),
|
|
this, SLOT( fillMoreInfo( const ICQMoreUserInfo& ) ) );
|
|
QObject::connect( contact, SIGNAL( haveInterestInfo( const ICQInterestInfo& ) ),
|
|
this, SLOT( fillInterestInfo( const ICQInterestInfo& ) ) );
|
|
}
|
|
|
|
void ICQUserInfoWidget::fillBasicInfo( const ICQGeneralUserInfo& ui )
|
|
{
|
|
QTextCodec* 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 ) );
|
|
|
|
QString country = static_cast<ICQProtocol*>( m_contact->protocol() )->countries()[ui.country];
|
|
m_genInfoWidget->countryEdit->setText( country );
|
|
}
|
|
|
|
void ICQUserInfoWidget::fillWorkInfo( const ICQWorkUserInfo& ui )
|
|
{
|
|
QTextCodec* 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() );
|
|
QString 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)
|
|
{
|
|
QTextCodec* codec = m_contact->contactCodec();
|
|
if (info.count>0) {
|
|
QString 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) {
|
|
QString 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) {
|
|
QString 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) {
|
|
QString 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 )
|
|
{
|
|
QTextCodec* codec = m_contact->contactCodec();
|
|
m_genInfoWidget->ageSpinBox->setValue( ui.age );
|
|
if ( ui.birthday.isValid() )
|
|
m_genInfoWidget->birthday->setText( KGlobal::locale()->formatDate( ui.birthday,true ) );
|
|
|
|
QString gender = static_cast<ICQProtocol*>( m_contact->protocol() )->genders()[ui.gender];
|
|
m_genInfoWidget->genderEdit->setText( gender );
|
|
m_genInfoWidget->homepageEdit->setText( codec->toUnicode( ui.homepage ) );
|
|
|
|
QString 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) );
|
|
|
|
QString ocountry = static_cast<ICQProtocol*>( m_contact->protocol() )->countries()[ui.ocountry];
|
|
m_genInfoWidget->oCountryEdit->setText( ocountry );
|
|
|
|
//TODO languages
|
|
}
|
|
|
|
|
|
#include "icquserinfowidget.moc"
|
|
|
|
//kate: indent-mode csands; tab-width 4; space-indent off; replace-tabs off;
|
|
|