mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 19:02:51 +00:00
94 lines
2.7 KiB
C++
94 lines
2.7 KiB
C++
/*
|
|
This file is part of Akonadi Contact.
|
|
|
|
Copyright (c) 2010 KDAB
|
|
Author: Tobias Koenig <tokoe@kde.org>
|
|
|
|
This library is free software; you can redistribute it and/or modify it
|
|
under the terms of the GNU Library General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or (at your
|
|
option) any later version.
|
|
|
|
This library 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 Library General Public
|
|
License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public License
|
|
along with this library; see the file COPYING.LIB. If not, write to the
|
|
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
02110-1301, USA.
|
|
*/
|
|
|
|
#include "emailaddressselectiondialog.h"
|
|
|
|
#include <KConfigGroup>
|
|
#include <KGlobal>
|
|
#include <KSharedConfig>
|
|
|
|
using namespace Akonadi;
|
|
|
|
class EmailAddressSelectionDialog::Private
|
|
{
|
|
public:
|
|
Private( EmailAddressSelectionDialog *qq, QAbstractItemModel *model )
|
|
: q( qq )
|
|
{
|
|
if ( model ) {
|
|
mView = new EmailAddressSelectionWidget( model, q );
|
|
} else {
|
|
mView = new EmailAddressSelectionWidget( q );
|
|
}
|
|
q->connect( mView, SIGNAL(doubleClicked()), q, SLOT(accept()));
|
|
q->setButtons( Ok | Cancel );
|
|
q->setMainWidget( mView );
|
|
readConfig();
|
|
}
|
|
|
|
void readConfig()
|
|
{
|
|
KConfigGroup group( KGlobal::config(), QLatin1String( "EmailAddressSelectionDialog" ) );
|
|
const QSize size = group.readEntry( "Size", QSize() );
|
|
if ( size.isValid() ) {
|
|
q->resize( size );
|
|
} else {
|
|
q->resize( q->sizeHint().width(), q->sizeHint().height() );
|
|
}
|
|
}
|
|
|
|
void writeConfig()
|
|
{
|
|
KConfigGroup group( KGlobal::config(), QLatin1String( "EmailAddressSelectionDialog" ) );
|
|
group.writeEntry( "Size", q->size() );
|
|
}
|
|
|
|
EmailAddressSelectionDialog *q;
|
|
EmailAddressSelectionWidget *mView;
|
|
};
|
|
|
|
EmailAddressSelectionDialog::EmailAddressSelectionDialog( QWidget *parent )
|
|
: KDialog( parent ), d( new Private( this, 0 ) )
|
|
{
|
|
}
|
|
|
|
EmailAddressSelectionDialog::EmailAddressSelectionDialog( QAbstractItemModel *model, QWidget *parent )
|
|
: KDialog( parent ), d( new Private( this, model ) )
|
|
{
|
|
}
|
|
|
|
EmailAddressSelectionDialog::~EmailAddressSelectionDialog()
|
|
{
|
|
d->writeConfig();
|
|
delete d;
|
|
}
|
|
|
|
EmailAddressSelection::List EmailAddressSelectionDialog::selectedAddresses() const
|
|
{
|
|
return d->mView->selectedAddresses();
|
|
}
|
|
|
|
EmailAddressSelectionWidget* EmailAddressSelectionDialog::view() const
|
|
{
|
|
return d->mView;
|
|
}
|
|
|