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/metacontactselectorwidget.h

106 lines
2.7 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. *
* *
*************************************************************************
*/
#ifndef MetaContactSelectorWidget_H
#define MetaContactSelectorWidget_H
#include <kdemacros.h>
#include <tqwidget.h>
#include "kopetelistviewitem.h"
#include "kopete_export.h"
class Kopete::MetaContact;
namespace Kopete
{
namespace UI
{
/**
* @author Duncan Mac-Vicar Prett <duncan@kde.org>
* This class provides a widget which allows easy selection
* of available Kopete metacontacts.
*/
class KOPETE_EXPORT MetaContactSelectorWidget : public TQWidget
{
Q_OBJECT
public:
MetaContactSelectorWidget( TQWidget *parent = 0, const char *name = 0 );
~MetaContactSelectorWidget();
Kopete::MetaContact* metaContact();
/**
* sets the widget label message
* example: Please select a contact
* or, Choose a contact to delete
*/
void setLabelMessage( const TQString &msg );
/**
* pre-selects a contact
*/
void selectMetaContact( Kopete::MetaContact *mc );
/**
* excludes a metacontact from being shown in the list
* if the metacontact is already excluded, do nothing
*/
void excludeMetaContact( Kopete::MetaContact *mc );
/**
* @return true if there is a contact selected
*/
bool metaContactSelected();
protected slots:
/**
* Utility function, populates the metacontact list
*/
void slotLoadMetaContacts();
signals:
void metaContactListClicked( TQListViewItem *mc );
private:
class Private;
Private *d;
};
/**
* @author Duncan Mac-Vicar Prett <duncan@kde.org>
*/
class MetaContactSelectorWidgetLVI : public Kopete::UI::ListView::Item
{
Q_OBJECT
public:
MetaContactSelectorWidgetLVI(Kopete::MetaContact *mc, TQListView *parent, TQObject *owner = 0, const char *name = 0 );
Kopete::MetaContact* metaContact();
virtual TQString text ( int column ) const;
protected slots:
void slotPhotoChanged();
void slotDisplayNameChanged();
void buildVisualComponents();
void slotUpdateContactBox();
private:
class Private;
Private *d;
};
} // namespace UI
} // namespace Kopete
#endif
// vim: set noet ts=4 sts=4 sw=4: