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.
288 lines
8.4 KiB
288 lines
8.4 KiB
/*
|
|
MetaContactSelectorWidget
|
|
|
|
Copyright (c) 2005 by Duncan Mac-Vicar Prett <duncan@kde.org>
|
|
|
|
Kopete (c) 2002-2005 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 <tqcheckbox.h>
|
|
#include <tqlabel.h>
|
|
#include <tqtooltip.h>
|
|
#include <tqwhatsthis.h>
|
|
#include <tqvbox.h>
|
|
#include <tqimage.h>
|
|
#include <tqpixmap.h>
|
|
#include <tqpainter.h>
|
|
#include <tqlayout.h>
|
|
#include <tqvaluelist.h>
|
|
|
|
#include <kapplication.h>
|
|
#include <kconfig.h>
|
|
#include <klocale.h>
|
|
#include <kiconloader.h>
|
|
|
|
#include <tdeversion.h>
|
|
#include <kinputdialog.h>
|
|
#include <kpushbutton.h>
|
|
#include <kactivelabel.h>
|
|
#include <kdebug.h>
|
|
#include <klistview.h>
|
|
#include <klistviewsearchline.h>
|
|
|
|
#include "kopetelistview.h"
|
|
#include "kopetelistviewsearchline.h"
|
|
#include "kopetecontactlist.h"
|
|
#include "kopetemetacontact.h"
|
|
#include "metacontactselectorwidget_base.h"
|
|
#include "metacontactselectorwidget.h"
|
|
|
|
using namespace Kopete::UI::ListView;
|
|
|
|
namespace Kopete
|
|
{
|
|
namespace UI
|
|
{
|
|
|
|
class MetaContactSelectorWidgetLVI::Private
|
|
{
|
|
public:
|
|
Kopete::MetaContact *metaContact;
|
|
FaceComponent *metaContactPhoto;
|
|
ImageComponent *metaContactIcon;
|
|
DisplayNameComponent *nameText;
|
|
TextComponent *extraText;
|
|
BoxComponent *contactIconBox;
|
|
BoxComponent *spacerBox;
|
|
int photoSize;
|
|
int contactIconSize;
|
|
};
|
|
|
|
|
|
MetaContactSelectorWidgetLVI::MetaContactSelectorWidgetLVI(Kopete::MetaContact *mc, TQListView *parent, TQObject *owner, const char *name) : Kopete::UI::ListView::Item(parent, owner, name) , d( new Private() )
|
|
{
|
|
d->metaContact = mc;
|
|
d->photoSize = 60;
|
|
|
|
connect( d->metaContact, TQT_SIGNAL( photoChanged() ),
|
|
TQT_SLOT( slotPhotoChanged() ) );
|
|
connect( d->metaContact, TQT_SIGNAL( displayNameChanged(const TQString&, const TQString&) ),
|
|
TQT_SLOT( slotDisplayNameChanged() ) );
|
|
buildVisualComponents();
|
|
}
|
|
|
|
Kopete::MetaContact* MetaContactSelectorWidgetLVI::metaContact()
|
|
{
|
|
return d->metaContact;
|
|
}
|
|
|
|
void MetaContactSelectorWidgetLVI::slotDisplayNameChanged()
|
|
{
|
|
if ( d->nameText )
|
|
{
|
|
d->nameText->setText( d->metaContact->displayName() );
|
|
|
|
// delay the sort if we can
|
|
if ( ListView::ListView *lv = dynamic_cast<ListView::ListView *>( listView() ) )
|
|
lv->delayedSort();
|
|
else
|
|
listView()->sort();
|
|
}
|
|
}
|
|
|
|
TQString MetaContactSelectorWidgetLVI::text ( int /* column */ ) const
|
|
{
|
|
return d->metaContact->displayName();
|
|
}
|
|
|
|
void MetaContactSelectorWidgetLVI::slotPhotoChanged()
|
|
{
|
|
TQPixmap photoPixmap;
|
|
TQImage photoImg = d->metaContact->photo();
|
|
if ( !photoImg.isNull() && (photoImg.width() > 0) && (photoImg.height() > 0) )
|
|
{
|
|
int photoSize = d->photoSize;
|
|
|
|
photoImg = photoImg.smoothScale( photoSize, photoSize, TQ_ScaleMin ) ;
|
|
|
|
// draw a 1 pixel black border
|
|
photoPixmap = photoImg;
|
|
TQPainter p(&photoPixmap);
|
|
p.setPen(TQt::black);
|
|
p.drawLine(0, 0, photoPixmap.width()-1, 0);
|
|
p.drawLine(0, photoPixmap.height()-1, photoPixmap.width()-1, photoPixmap.height()-1);
|
|
p.drawLine(0, 0, 0, photoPixmap.height()-1);
|
|
p.drawLine(photoPixmap.width()-1, 0, photoPixmap.width()-1, photoPixmap.height()-1);
|
|
}
|
|
else
|
|
{
|
|
// if no photo use the smilie icon
|
|
photoPixmap=SmallIcon(d->metaContact->statusIcon(), d->photoSize);
|
|
}
|
|
d->metaContactPhoto->setPixmap( photoPixmap, false);
|
|
}
|
|
|
|
void MetaContactSelectorWidgetLVI::buildVisualComponents()
|
|
{
|
|
// empty...
|
|
while ( component( 0 ) )
|
|
delete component( 0 );
|
|
|
|
d->nameText = 0L;
|
|
d->metaContactPhoto = 0L;
|
|
d->extraText = 0L;
|
|
d->contactIconSize = 16;
|
|
d->photoSize = 48;
|
|
|
|
Component *hbox = new BoxComponent( this, BoxComponent::Horizontal );
|
|
d->spacerBox = new BoxComponent( hbox, BoxComponent::Horizontal );
|
|
|
|
d->contactIconSize = IconSize( KIcon::Small );
|
|
Component *imageBox = new BoxComponent( hbox, BoxComponent::Vertical );
|
|
new VSpacerComponent( imageBox );
|
|
// include borders in size
|
|
d->metaContactPhoto = new FaceComponent( imageBox, d->photoSize , d->photoSize );
|
|
new VSpacerComponent( imageBox );
|
|
Component *vbox = new BoxComponent( hbox, BoxComponent::Vertical );
|
|
d->nameText = new DisplayNameComponent( vbox );
|
|
d->extraText = new TextComponent( vbox );
|
|
|
|
Component *box = new BoxComponent( vbox, BoxComponent::Horizontal );
|
|
d->contactIconBox = new BoxComponent( box, BoxComponent::Horizontal );
|
|
|
|
slotUpdateContactBox();
|
|
slotDisplayNameChanged();
|
|
slotPhotoChanged();
|
|
}
|
|
|
|
void MetaContactSelectorWidgetLVI::slotUpdateContactBox()
|
|
{
|
|
TQPtrList<Kopete::Contact> contacts = d->metaContact->contacts();
|
|
for(Kopete::Contact *c = contacts.first(); c; c = contacts.next())
|
|
{
|
|
new ContactComponent(d->contactIconBox, c, IconSize( KIcon::Small ));
|
|
}
|
|
}
|
|
|
|
class MetaContactSelectorWidget::Private
|
|
{
|
|
public:
|
|
MetaContactSelectorWidget_Base *widget;
|
|
TQValueList<Kopete::MetaContact *> excludedMetaContacts;
|
|
};
|
|
|
|
|
|
MetaContactSelectorWidget::MetaContactSelectorWidget( TQWidget *parent, const char *name )
|
|
: TQWidget( parent, name ), d( new Private() )
|
|
{
|
|
TQBoxLayout *l = new TQVBoxLayout(this);
|
|
d->widget = new MetaContactSelectorWidget_Base(this);
|
|
l->addWidget(d->widget);
|
|
|
|
connect( d->widget->metaContactListView, TQT_SIGNAL( clicked(TQListViewItem * ) ),
|
|
TQT_SIGNAL( metaContactListClicked( TQListViewItem * ) ) );
|
|
connect( d->widget->metaContactListView, TQT_SIGNAL( selectionChanged( TQListViewItem * ) ),
|
|
TQT_SIGNAL( metaContactListClicked( TQListViewItem * ) ) );
|
|
connect( d->widget->metaContactListView, TQT_SIGNAL( spacePressed( TQListViewItem * ) ),
|
|
TQT_SIGNAL( metaContactListClicked( TQListViewItem * ) ) );
|
|
|
|
connect( Kopete::ContactList::self(), TQT_SIGNAL( metaContactAdded( Kopete::MetaContact * ) ), this, TQT_SLOT( slotLoadMetaContacts() ) );
|
|
|
|
d->widget->kListViewSearchLine->setListView(d->widget->metaContactListView);
|
|
d->widget->metaContactListView->setFullWidth( true );
|
|
d->widget->metaContactListView->header()->hide();
|
|
d->widget->metaContactListView->setColumnWidthMode(0, TQListView::Maximum);
|
|
slotLoadMetaContacts();
|
|
}
|
|
|
|
|
|
MetaContactSelectorWidget::~MetaContactSelectorWidget()
|
|
{
|
|
disconnect( Kopete::ContactList::self(), TQT_SIGNAL( metaContactAdded( Kopete::MetaContact * ) ), this, TQT_SLOT( slotLoadMetaContacts() ) );
|
|
}
|
|
|
|
|
|
Kopete::MetaContact* MetaContactSelectorWidget::metaContact()
|
|
{
|
|
MetaContactSelectorWidgetLVI *item = 0L;
|
|
item = static_cast<MetaContactSelectorWidgetLVI *>( d->widget->metaContactListView->selectedItem() );
|
|
|
|
if ( item )
|
|
return item->metaContact();
|
|
|
|
return 0L;
|
|
}
|
|
|
|
void MetaContactSelectorWidget::selectMetaContact( Kopete::MetaContact *mc )
|
|
{
|
|
// iterate trough list view
|
|
TQListViewItemIterator it( d->widget->metaContactListView );
|
|
while( it.current() )
|
|
{
|
|
MetaContactSelectorWidgetLVI *item = (MetaContactSelectorWidgetLVI *) it.current();
|
|
if (!item)
|
|
continue;
|
|
|
|
if ( mc == item->metaContact() )
|
|
{
|
|
// select the contact item
|
|
d->widget->metaContactListView->setSelected( item, true );
|
|
d->widget->metaContactListView->ensureItemVisible( item );
|
|
}
|
|
++it;
|
|
}
|
|
}
|
|
|
|
void MetaContactSelectorWidget::excludeMetaContact( Kopete::MetaContact *mc )
|
|
{
|
|
if( d->excludedMetaContacts.findIndex(mc) == -1 )
|
|
{
|
|
d->excludedMetaContacts.append(mc);
|
|
}
|
|
slotLoadMetaContacts();
|
|
}
|
|
|
|
bool MetaContactSelectorWidget::metaContactSelected()
|
|
{
|
|
return d->widget->metaContactListView->selectedItem() ? true : false;
|
|
}
|
|
|
|
/** Read in metacontacts from contactlist */
|
|
void MetaContactSelectorWidget::slotLoadMetaContacts()
|
|
{
|
|
d->widget->metaContactListView->clear();
|
|
|
|
TQPtrList<Kopete::MetaContact> metaContacts = Kopete::ContactList::self()->metaContacts();
|
|
for( Kopete::MetaContact *mc = metaContacts.first(); mc ; mc = metaContacts.next() )
|
|
{
|
|
if( !mc->isTemporary() && (d->excludedMetaContacts.findIndex(mc) == -1) )
|
|
{
|
|
new MetaContactSelectorWidgetLVI(mc, d->widget->metaContactListView);
|
|
}
|
|
}
|
|
|
|
d->widget->metaContactListView->sort();
|
|
}
|
|
|
|
void MetaContactSelectorWidget::setLabelMessage( const TQString &msg )
|
|
{
|
|
d->widget->lblHeader->setText(msg);
|
|
}
|
|
|
|
} // namespace UI
|
|
} // namespace Kopete
|
|
|
|
#include "metacontactselectorwidget.moc"
|
|
|
|
// vim: set noet ts=4 sts=4 sw=4:
|
|
|