mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 10:52:52 +00:00
104 lines
3.5 KiB
C++
104 lines
3.5 KiB
C++
/*
|
|
Copyright (c) 2013, 2014 Montel Laurent <montel@kde.org>
|
|
|
|
This program is free software; you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License, version 2, as
|
|
published by the Free Software Foundation.
|
|
|
|
This program is distributed in the hope that it will be useful, but
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#include "addemailtoexistingcontactdialog.h"
|
|
#include "kmkernel.h"
|
|
|
|
#include <Akonadi/Contact/EmailAddressSelectionWidget>
|
|
#include <Akonadi/Session>
|
|
#include <Akonadi/ItemFetchScope>
|
|
#include <Akonadi/EntityDisplayAttribute>
|
|
#include <Akonadi/Contact/ContactsTreeModel>
|
|
#include <Akonadi/ChangeRecorder>
|
|
|
|
#include <KABC/Addressee>
|
|
|
|
#include <KLocalizedString>
|
|
|
|
#include <QTreeView>
|
|
|
|
|
|
AddEmailToExistingContactDialog::AddEmailToExistingContactDialog(QWidget *parent)
|
|
: KDialog(parent)
|
|
{
|
|
setCaption( i18n( "Select Contact" ) );
|
|
setButtons( Ok|Cancel );
|
|
setDefaultButton( Ok );
|
|
setButtonText(KDialog::Ok, i18n("Select"));
|
|
setModal( true );
|
|
|
|
Akonadi::Session *session = new Akonadi::Session( "AddEmailToExistingContactDialog", this );
|
|
|
|
Akonadi::ItemFetchScope scope;
|
|
scope.fetchFullPayload( true );
|
|
scope.fetchAttribute<Akonadi::EntityDisplayAttribute>();
|
|
|
|
Akonadi::ChangeRecorder *changeRecorder = new Akonadi::ChangeRecorder( this );
|
|
changeRecorder->setSession( session );
|
|
changeRecorder->fetchCollection( true );
|
|
changeRecorder->setItemFetchScope( scope );
|
|
changeRecorder->setCollectionMonitored( Akonadi::Collection::root() );
|
|
//Just select address no group
|
|
changeRecorder->setMimeTypeMonitored( KABC::Addressee::mimeType(), true );
|
|
|
|
Akonadi::ContactsTreeModel *model = new Akonadi::ContactsTreeModel( changeRecorder, this );
|
|
|
|
mEmailSelectionWidget = new Akonadi::EmailAddressSelectionWidget(false, model, this);
|
|
setMainWidget(mEmailSelectionWidget);
|
|
mEmailSelectionWidget->view()->setSelectionMode(QAbstractItemView::SingleSelection);
|
|
readConfig();
|
|
connect(mEmailSelectionWidget->view()->selectionModel(), SIGNAL(selectionChanged(QItemSelection,QItemSelection)), this, SLOT(slotSelectionChanged()));
|
|
enableButtonOk(false);
|
|
}
|
|
|
|
AddEmailToExistingContactDialog::~AddEmailToExistingContactDialog()
|
|
{
|
|
writeConfig();
|
|
}
|
|
|
|
void AddEmailToExistingContactDialog::slotSelectionChanged()
|
|
{
|
|
enableButtonOk(!mEmailSelectionWidget->selectedAddresses().isEmpty());
|
|
}
|
|
|
|
void AddEmailToExistingContactDialog::readConfig()
|
|
{
|
|
KConfigGroup group( KMKernel::self()->config(), "AddEmailToExistingContactDialog" );
|
|
const QSize size = group.readEntry( "Size", QSize(600, 400) );
|
|
if ( size.isValid() ) {
|
|
resize( size );
|
|
}
|
|
}
|
|
|
|
void AddEmailToExistingContactDialog::writeConfig()
|
|
{
|
|
KConfigGroup group( KMKernel::self()->config(), "AddEmailToExistingContactDialog" );
|
|
group.writeEntry( "Size", size() );
|
|
group.sync();
|
|
}
|
|
|
|
Akonadi::Item AddEmailToExistingContactDialog::selectedContact() const
|
|
{
|
|
Akonadi::Item item;
|
|
Akonadi::EmailAddressSelection::List lst = mEmailSelectionWidget->selectedAddresses();
|
|
if (!lst.isEmpty()) {
|
|
item = lst.first().item();
|
|
}
|
|
return item;
|
|
}
|
|
|
|
#include "moc_addemailtoexistingcontactdialog.cpp"
|