mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 19:02:51 +00:00
103 lines
2.8 KiB
C++
103 lines
2.8 KiB
C++
/*
|
|
This file is part of libkabc.
|
|
Copyright (c) 2002 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 "resourcedirconfig.h"
|
|
#include "resourcedir.h"
|
|
|
|
#include "kabc/formatfactory.h"
|
|
#include "kabc/stdaddressbook.h"
|
|
|
|
#include <kdebug.h>
|
|
#include <klocalizedstring.h>
|
|
#include <kstandarddirs.h>
|
|
#include <kdialog.h>
|
|
|
|
#include <QFormLayout>
|
|
|
|
using namespace KABC;
|
|
|
|
ResourceDirConfig::ResourceDirConfig( QWidget *parent )
|
|
: KRES::ConfigWidget( parent )
|
|
{
|
|
QFormLayout *mainLayout = new QFormLayout( this );
|
|
mainLayout->setMargin( 0 );
|
|
|
|
mFormatBox = new KComboBox( this );
|
|
|
|
mainLayout->addRow( i18n( "Format:" ), mFormatBox );
|
|
|
|
mFileNameEdit = new KUrlRequester( this );
|
|
mFileNameEdit->setMode( KFile::Directory );
|
|
|
|
mainLayout->addRow( i18n( "Location:" ), mFileNameEdit );
|
|
|
|
FormatFactory *factory = FormatFactory::self();
|
|
QStringList formats = factory->formats();
|
|
QStringList::Iterator it;
|
|
for ( it = formats.begin(); it != formats.end(); ++it ) {
|
|
FormatInfo info = factory->info( *it );
|
|
if ( !info.isNull() ) {
|
|
mFormatTypes << ( *it );
|
|
mFormatBox->addItem( info.nameLabel );
|
|
}
|
|
}
|
|
|
|
mInEditMode = false;
|
|
}
|
|
|
|
void ResourceDirConfig::setEditMode( bool value )
|
|
{
|
|
mFormatBox->setEnabled( !value );
|
|
mInEditMode = value;
|
|
}
|
|
|
|
void ResourceDirConfig::loadSettings( KRES::Resource *res )
|
|
{
|
|
ResourceDir *resource = dynamic_cast<ResourceDir*>( res );
|
|
|
|
if ( !resource ) {
|
|
kDebug() << "cast failed";
|
|
return;
|
|
}
|
|
|
|
mFormatBox->setCurrentIndex( mFormatTypes.indexOf( resource->format() ) );
|
|
|
|
mFileNameEdit->setUrl( resource->path() );
|
|
if ( mFileNameEdit->url().isEmpty() ) {
|
|
mFileNameEdit->setUrl( KABC::StdAddressBook::directoryName() );
|
|
}
|
|
}
|
|
|
|
void ResourceDirConfig::saveSettings( KRES::Resource *res )
|
|
{
|
|
ResourceDir *resource = dynamic_cast<ResourceDir*>( res );
|
|
|
|
if ( !resource ) {
|
|
kDebug() << "cast failed";
|
|
return;
|
|
}
|
|
|
|
if ( mInEditMode ) {
|
|
resource->setFormat( mFormatTypes[ mFormatBox->currentIndex() ] );
|
|
}
|
|
|
|
resource->setPath( mFileNameEdit->url().path() );
|
|
}
|
|
|