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.
83 lines
2.6 KiB
83 lines
2.6 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-2004 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 ADDRESSBOOKLINKWIDGET_H
|
|
#define ADDRESSBOOKLINKWIDGET_H
|
|
|
|
#include <tdeabc/addressee.h>
|
|
|
|
#include "addressbooklinkwidget_base.h"
|
|
|
|
namespace Kopete {
|
|
class MetaContact;
|
|
|
|
namespace UI {
|
|
|
|
/**
|
|
* 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.
|
|
*/
|
|
class AddressBookLinkWidget : public AddressBookLinkWidgetBase
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
AddressBookLinkWidget( TQWidget * parent, const char * name );
|
|
~AddressBookLinkWidget() {}
|
|
/**
|
|
* Set the currently selected addressee
|
|
*/
|
|
void setAddressee( const TDEABC::Addressee& addr );
|
|
/**
|
|
* Set the current metacontact so that the selector dialog may be preselected
|
|
*/
|
|
void setMetaContact( const Kopete::MetaContact * );
|
|
/**
|
|
* Return the selected addressbook UID.
|
|
*/
|
|
TQString uid() const;
|
|
signals:
|
|
/**
|
|
* Emitted when the selected addressee changed. addr is the TDEABC::Addressee that was selected. If addr.isEmpty() is empty, the clear button was clicked.
|
|
*/
|
|
void addresseeChanged( const TDEABC::Addressee& addr );
|
|
|
|
/**
|
|
* Provided so you can perform your own actions instead of opening the AddressBookSelectorWidget.
|
|
* To do so, TQObject::disconnect() btnSelectAddressee and connect your own slot to this signal
|
|
*/
|
|
void selectAddresseeClicked();
|
|
protected slots:
|
|
void slotClearAddressee();
|
|
void slotSelectAddressee();
|
|
private:
|
|
const Kopete::MetaContact * mMetaContact;
|
|
TQString mSelectedUid;
|
|
};
|
|
} // end namespace UI
|
|
} // end namespace Kopete
|
|
#endif
|