diff options
author | Timothy Pearson <[email protected]> | 2013-02-01 17:25:43 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-02-01 17:25:43 -0600 |
commit | 903aacf3fda692b6fa7e7934ea158653b99cc6a5 (patch) | |
tree | 37409851c95238b97d8a162ff501b8500ae1b216 /kopete/libkopete/ui/addressbookselectorwidget.cpp | |
parent | 9c9412b30c54468adc9e506cc76c5d113fbf5056 (diff) | |
download | tdenetwork-903aacf3fda692b6fa7e7934ea158653b99cc6a5.tar.gz tdenetwork-903aacf3fda692b6fa7e7934ea158653b99cc6a5.zip |
Fix FTBFS
Diffstat (limited to 'kopete/libkopete/ui/addressbookselectorwidget.cpp')
-rw-r--r-- | kopete/libkopete/ui/addressbookselectorwidget.cpp | 171 |
1 files changed, 0 insertions, 171 deletions
diff --git a/kopete/libkopete/ui/addressbookselectorwidget.cpp b/kopete/libkopete/ui/addressbookselectorwidget.cpp deleted file mode 100644 index 16009ee5..00000000 --- a/kopete/libkopete/ui/addressbookselectorwidget.cpp +++ /dev/null @@ -1,171 +0,0 @@ -/* - AddressBookSelectorWidget - - Copyright (c) 2005 by Duncan Mac-Vicar Prett <[email protected]> - - Based on LinkAddressBookUI whose code was shamelessly stolen from - kopete's add new contact wizard, used in Konversation, and then - reappropriated by Kopete. - - LinkAddressBookUI: - Copyright (c) 2004 by John Tapsell <[email protected]> - Copyright (c) 2003-2005 by Will Stephenson <[email protected]> - Copyright (c) 2002 by Nick Betcher <[email protected]> - Copyright (c) 2002 by Duncan Mac-Vicar Prett <[email protected]> - - Kopete (c) 2002-2004 by the Kopete developers <[email protected]> - - ************************************************************************* - * * - * 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 <kapplication.h> -#include <tdeconfig.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 <tqlabel.h> -#include <tqtooltip.h> -#include <tqwhatsthis.h> - -#include "addressbookselectorwidget.h" -#include <addresseeitem.h> -#include "kabcpersistence.h" - -using namespace Kopete::UI; - -namespace Kopete -{ -namespace UI -{ - -AddressBookSelectorWidget::AddressBookSelectorWidget( TQWidget *parent, const char *name ) - : AddressBookSelectorWidget_Base( parent, name ) -{ - m_addressBook = Kopete::KABCPersistence::self()->addressBook(); - - // Addressee validation connections - connect( addAddresseeButton, TQT_SIGNAL( clicked() ), TQT_SLOT( slotAddAddresseeClicked() ) ); - connect( addAddresseeButton, TQT_SIGNAL( clicked() ), TQT_SIGNAL( addAddresseeClicked() ) ); - - connect( addresseeListView, TQT_SIGNAL( clicked(TQListViewItem * ) ), - TQT_SIGNAL( addresseeListClicked( TQListViewItem * ) ) ); - connect( addresseeListView, TQT_SIGNAL( selectionChanged( TQListViewItem * ) ), - TQT_SIGNAL( addresseeListClicked( TQListViewItem * ) ) ); - connect( addresseeListView, TQT_SIGNAL( spacePressed( TQListViewItem * ) ), - TQT_SIGNAL( addresseeListClicked( TQListViewItem * ) ) ); - - connect( m_addressBook, TQT_SIGNAL( addressBookChanged( AddressBook * ) ), this, TQT_SLOT( slotLoadAddressees() ) ); - - //We should add a clear TDEAction here. But we can't really do that with a designer file :\ this sucks - - addresseeListView->setColumnText(2, SmallIconSet(TQString::fromLatin1("email")), i18n("Email")); - - kListViewSearchLine->setListView(addresseeListView); - slotLoadAddressees(); - - addresseeListView->setColumnWidthMode(0, TQListView::Manual); - addresseeListView->setColumnWidth(0, 63); //Photo is 60, and it's nice to have a small gap, imho -} - - -AddressBookSelectorWidget::~AddressBookSelectorWidget() -{ - disconnect( m_addressBook, TQT_SIGNAL( addressBookChanged( AddressBook * ) ), this, TQT_SLOT( slotLoadAddressees() ) ); -} - - -KABC::Addressee AddressBookSelectorWidget::addressee() -{ - AddresseeItem *item = 0L; - item = static_cast<AddresseeItem *>( addresseeListView->selectedItem() ); - - if ( item ) - m_addressee = item->addressee(); - - return m_addressee; -} - -void AddressBookSelectorWidget::selectAddressee( const TQString &uid ) -{ - // iterate trough list view - TQListViewItemIterator it( addresseeListView ); - while( it.current() ) - { - AddresseeItem *addrItem = (AddresseeItem *) it.current(); - if ( addrItem->addressee().uid() == uid ) - { - // select the contact item - addresseeListView->setSelected( addrItem, true ); - addresseeListView->ensureItemVisible( addrItem ); - } - ++it; - } -} - -bool AddressBookSelectorWidget::addresseeSelected() -{ - return addresseeListView->selectedItem() ? true : false; -} - -/** Read in contacts from addressbook, and select the contact that is for our nick. */ -void AddressBookSelectorWidget::slotLoadAddressees() -{ - addresseeListView->clear(); - KABC::AddressBook::Iterator it; - AddresseeItem *addr; - for( it = m_addressBook->begin(); it != m_addressBook->end(); ++it ) - { - addr = new AddresseeItem( addresseeListView, (*it)); - } - -} - -void AddressBookSelectorWidget::setLabelMessage( const TQString &msg ) -{ - lblHeader->setText(msg); -} - -void AddressBookSelectorWidget::slotAddAddresseeClicked() -{ - // Pop up add addressee dialog - TQString addresseeName = KInputDialog::getText( i18n( "New Address Book Entry" ), i18n( "Name the new entry:" ), TQString(), 0, this ); - - if ( !addresseeName.isEmpty() ) - { - KABC::Addressee addr; - addr.setNameFromString( addresseeName ); - m_addressBook->insertAddressee(addr); - Kopete::KABCPersistence::self()->writeAddressBook( 0 ); - slotLoadAddressees(); - // select the addressee we just added - TQListViewItem * added = addresseeListView->findItem( addresseeName, 1 ); - kListViewSearchLine->clear(); - kListViewSearchLine->updateSearch(); - addresseeListView->setSelected( added, true ); - addresseeListView->ensureItemVisible( added ); - } -} - -} // namespace UI -} // namespace Kopete - -#include "addressbookselectorwidget.moc" - -// vim: set noet ts=4 sts=4 sw=4: - |