mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 19:02:51 +00:00
104 lines
2.6 KiB
C++
104 lines
2.6 KiB
C++
/*
|
|
This file is part of Akonadi Contact.
|
|
|
|
Copyright (c) 2009 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 "contactviewerdialog.h"
|
|
#include "contactviewer.h"
|
|
#include "contactdefaultactions.h"
|
|
|
|
#include <akonadi/item.h>
|
|
using namespace Akonadi;
|
|
|
|
#include <KConfig>
|
|
#include <KLocalizedString>
|
|
|
|
#include <QVBoxLayout>
|
|
|
|
class ContactViewerDialog::Private
|
|
{
|
|
public:
|
|
Private( ContactViewerDialog *parent )
|
|
: q( parent ), mViewer( 0 )
|
|
{
|
|
}
|
|
|
|
void readConfig()
|
|
{
|
|
KConfig config( QLatin1String( "akonadi_contactrc" ) );
|
|
KConfigGroup group( &config, QLatin1String( "ContactViewer" ) );
|
|
const QSize size = group.readEntry( "Size", QSize(500, 600) );
|
|
if ( size.isValid() ) {
|
|
q->resize( size );
|
|
}
|
|
}
|
|
|
|
void writeConfig()
|
|
{
|
|
KConfig config( QLatin1String( "akonadi_contactrc" ) );
|
|
KConfigGroup group( &config, QLatin1String( "ContactViewer" ) );
|
|
group.writeEntry( "Size", q->size() );
|
|
group.sync();
|
|
}
|
|
|
|
ContactViewerDialog *q;
|
|
ContactViewer *mViewer;
|
|
};
|
|
|
|
ContactViewerDialog::ContactViewerDialog( QWidget *parent )
|
|
: KDialog( parent ), d( new Private( this ) )
|
|
{
|
|
setCaption( i18n( "Show Contact" ) );
|
|
setButtons( Ok );
|
|
|
|
QWidget *mainWidget = new QWidget( this );
|
|
setMainWidget( mainWidget );
|
|
|
|
QVBoxLayout *layout = new QVBoxLayout( mainWidget );
|
|
|
|
d->mViewer = new ContactViewer;
|
|
layout->addWidget( d->mViewer );
|
|
|
|
ContactDefaultActions *actions = new ContactDefaultActions( this );
|
|
actions->connectToView( d->mViewer );
|
|
|
|
d->readConfig();
|
|
}
|
|
|
|
ContactViewerDialog::~ContactViewerDialog()
|
|
{
|
|
d->writeConfig();
|
|
delete d;
|
|
}
|
|
|
|
Akonadi::Item ContactViewerDialog::contact() const
|
|
{
|
|
return d->mViewer->contact();
|
|
}
|
|
|
|
ContactViewer* ContactViewerDialog::viewer() const
|
|
{
|
|
return d->mViewer;
|
|
}
|
|
|
|
void ContactViewerDialog::setContact( const Akonadi::Item &contact )
|
|
{
|
|
d->mViewer->setContact( contact );
|
|
}
|
|
|