summaryrefslogtreecommitdiffstats
path: root/kabc/plugins/net
diff options
context:
space:
mode:
Diffstat (limited to 'kabc/plugins/net')
-rw-r--r--kabc/plugins/net/Makefile.am28
-rw-r--r--kabc/plugins/net/net.desktop90
-rw-r--r--kabc/plugins/net/resourcenet.cpp390
-rw-r--r--kabc/plugins/net/resourcenet.h117
-rw-r--r--kabc/plugins/net/resourcenetconfig.cpp102
-rw-r--r--kabc/plugins/net/resourcenetconfig.h53
-rw-r--r--kabc/plugins/net/resourcenetplugin.cpp32
7 files changed, 812 insertions, 0 deletions
diff --git a/kabc/plugins/net/Makefile.am b/kabc/plugins/net/Makefile.am
new file mode 100644
index 000000000..8e7305303
--- /dev/null
+++ b/kabc/plugins/net/Makefile.am
@@ -0,0 +1,28 @@
+INCLUDES = -I$(top_srcdir)/kabc -I$(top_builddir)/kabc $(all_includes)
+
+# these are the headers for your project
+noinst_HEADERS = resourcenetconfig.h
+
+lib_LTLIBRARIES = libkabc_net.la
+libkabc_net_la_SOURCES = resourcenet.cpp resourcenetconfig.cpp
+libkabc_net_la_LDFLAGS = $(KDE_RPATH) $(all_libraries) -version-info 1:0:0 -no-undefined
+libkabc_net_la_LIBADD = $(top_builddir)/kabc/libkabc.la $(LIB_KIO)
+libkabc_net_la_COMPILE_FIRST = $(top_builddir)/kabc/addressee.h
+
+kde_module_LTLIBRARIES = kabc_net.la
+kabc_net_la_SOURCES = resourcenetplugin.cpp
+kabc_net_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN)
+kabc_net_la_LIBADD = libkabc_net.la
+
+METASOURCES = AUTO
+
+messages: rc.cpp
+ $(XGETTEXT) *.cpp -o $(podir)/kabc_net.pot
+
+kabcincludedir = $(includedir)/kabc
+kabcinclude_HEADERS = resourcenet.h
+
+servicedir = $(kde_servicesdir)/kresources/kabc
+service_DATA = net.desktop
+
+resourcenetplugin.lo: ../../addressee.h
diff --git a/kabc/plugins/net/net.desktop b/kabc/plugins/net/net.desktop
new file mode 100644
index 000000000..eadc38ba8
--- /dev/null
+++ b/kabc/plugins/net/net.desktop
@@ -0,0 +1,90 @@
+[Desktop Entry]
+Name=Network
+Name[af]=Netwerk
+Name[ar]=الشبكة
+Name[az]=Şəbəkə
+Name[be]=Сетка
+Name[bn]=নেটওয়ার্ক
+Name[br]=Rouedad
+Name[bs]=Mreža
+Name[ca]=Xarxa
+Name[cs]=Síť
+Name[csb]=Sec
+Name[cy]=Rhydwaith
+Name[da]=Netværk
+Name[de]=Netzwerk
+Name[el]=Δίκτυο
+Name[eo]=Reto
+Name[es]=Red
+Name[et]=Võrk
+Name[eu]=Sarea
+Name[fa]=شبکه
+Name[fi]=Verkko
+Name[fr]=Réseau
+Name[fy]=Netwurk
+Name[ga]=Líonra
+Name[gl]=Rede
+Name[he]=רשת
+Name[hi]=नेटवर्क
+Name[hr]=Mreža
+Name[hsb]=Syć
+Name[hu]=Hálózat
+Name[id]=Jaringan
+Name[is]=Net
+Name[it]=Rete
+Name[ja]=ネットワーク
+Name[ka]=ქსელი
+Name[kk]=Желі
+Name[km]=បណ្តាញ
+Name[ko]=네트워크
+Name[ku]=Tor
+Name[lb]=Netzwierk
+Name[lt]=Tinklas
+Name[lv]=Tīkls
+Name[mi]=Hao
+Name[mk]=Мрежа
+Name[mn]=Сүлжээ
+Name[ms]=Jaringan
+Name[nds]=Nettwark
+Name[ne]=सञ्जाल
+Name[nl]=Netwerk
+Name[nn]=Nettverk
+Name[nso]=Kgokagano
+Name[oc]=Resèu
+Name[pa]=ਨੈੱਟਵਰਕ
+Name[pl]=Sieć
+Name[pt]=Rede
+Name[pt_BR]=Rede
+Name[ro]=Reţea
+Name[ru]=Сеть
+Name[rw]=Urusobe
+Name[se]=Fierbmi
+Name[sk]=Sieť
+Name[sl]=Omrežje
+Name[sq]=Rrjeta
+Name[sr]=Мрежа
+Name[sr@Latn]=Mreža
+Name[ss]=Luchungechunge
+Name[sv]=Nätverk
+Name[ta]=பிணையம்
+Name[te]=కలన జాలం
+Name[tg]=Шабака
+Name[th]=ระบบเครือข่าย
+Name[tr]=Ağ
+Name[tt]=Çeltär
+Name[uk]=Мережа
+Name[uz]=Tarmoq
+Name[uz@cyrillic]=Tarмоқ
+Name[ven]=Vhukwamani
+Name[vi]=mạng
+Name[wa]=Rantoele
+Name[xh]=Umsebenzi womnatha
+Name[zh_CN]=网络
+Name[zh_HK]=網絡
+Name[zh_TW]=網路
+Name[zu]=Umsebenzi wokuxhumana okusakazekile
+X-KDE-Library=kabc_net
+Type=Service
+ServiceTypes=KResources/Plugin
+X-KDE-ResourceFamily=contact
+X-KDE-ResourceType=net
diff --git a/kabc/plugins/net/resourcenet.cpp b/kabc/plugins/net/resourcenet.cpp
new file mode 100644
index 000000000..86d2f9bdc
--- /dev/null
+++ b/kabc/plugins/net/resourcenet.cpp
@@ -0,0 +1,390 @@
+/*
+ This file is part of libkabc.
+ Copyright (c) 2003 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 <qfile.h>
+
+#include <kdebug.h>
+#include <kio/netaccess.h>
+#include <kio/scheduler.h>
+#include <klocale.h>
+#include <ksavefile.h>
+#include <ktempfile.h>
+#include <kurlrequester.h>
+
+#include "addressbook.h"
+#include "formatfactory.h"
+#include "resourcenetconfig.h"
+#include "stdaddressbook.h"
+
+#include "resourcenet.h"
+
+using namespace KABC;
+
+class ResourceNet::ResourceNetPrivate
+{
+ public:
+ KIO::Job *mLoadJob;
+ bool mIsLoading;
+
+ KIO::Job *mSaveJob;
+ bool mIsSaving;
+
+ QString mLastErrorString;
+};
+
+ResourceNet::ResourceNet( const KConfig *config )
+ : Resource( config ), mFormat( 0 ),
+ mTempFile( 0 ),
+ d( new ResourceNetPrivate )
+{
+ if ( config ) {
+ init( KURL( config->readPathEntry( "NetUrl" ) ), config->readEntry( "NetFormat" ) );
+ } else {
+ init( KURL(), "vcard" );
+ }
+}
+
+ResourceNet::ResourceNet( const KURL &url, const QString &format )
+ : Resource( 0 ), mFormat( 0 ),
+ mTempFile( 0 ),
+ d( new ResourceNetPrivate )
+{
+ init( url, format );
+}
+
+void ResourceNet::init( const KURL &url, const QString &format )
+{
+ d->mLoadJob = 0;
+ d->mIsLoading = false;
+ d->mSaveJob = 0;
+ d->mIsSaving = false;
+
+ mFormatName = format;
+
+ FormatFactory *factory = FormatFactory::self();
+ mFormat = factory->format( mFormatName );
+ if ( !mFormat ) {
+ mFormatName = "vcard";
+ mFormat = factory->format( mFormatName );
+ }
+
+ setUrl( url );
+}
+
+ResourceNet::~ResourceNet()
+{
+ if ( d->mIsLoading )
+ d->mLoadJob->kill();
+ if ( d->mIsSaving )
+ d->mSaveJob->kill();
+
+ delete d;
+ d = 0;
+
+ delete mFormat;
+ mFormat = 0;
+
+ deleteLocalTempFile();
+}
+
+void ResourceNet::writeConfig( KConfig *config )
+{
+ Resource::writeConfig( config );
+
+ config->writePathEntry( "NetUrl", mUrl.url() );
+ config->writeEntry( "NetFormat", mFormatName );
+}
+
+Ticket *ResourceNet::requestSaveTicket()
+{
+ kdDebug(5700) << "ResourceNet::requestSaveTicket()" << endl;
+
+ return createTicket( this );
+}
+
+void ResourceNet::releaseSaveTicket( Ticket *ticket )
+{
+ delete ticket;
+}
+
+bool ResourceNet::doOpen()
+{
+ return true;
+}
+
+void ResourceNet::doClose()
+{
+}
+
+bool ResourceNet::load()
+{
+ QString tempFile;
+
+ if ( !KIO::NetAccess::download( mUrl, tempFile, 0 ) ) {
+ addressBook()->error( i18n( "Unable to download file '%1'." ).arg( mUrl.prettyURL() ) );
+ return false;
+ }
+
+ QFile file( tempFile );
+ if ( !file.open( IO_ReadOnly ) ) {
+ addressBook()->error( i18n( "Unable to open file '%1'." ).arg( tempFile ) );
+ KIO::NetAccess::removeTempFile( tempFile );
+ return false;
+ }
+
+ bool result = clearAndLoad( &file );
+ if ( !result )
+ addressBook()->error( i18n( "Problems during parsing file '%1'." ).arg( tempFile ) );
+
+ KIO::NetAccess::removeTempFile( tempFile );
+
+ return result;
+}
+
+bool ResourceNet::clearAndLoad( QFile *file )
+{
+ clear();
+ return mFormat->loadAll( addressBook(), this, file );
+}
+
+bool ResourceNet::asyncLoad()
+{
+ if ( d->mIsLoading ) {
+ abortAsyncLoading();
+ }
+
+ if (d->mIsSaving) {
+ kdWarning(5700) << "Aborted asyncLoad() because we're still asyncSave()ing!" << endl;
+ return false;
+ }
+
+ bool ok = createLocalTempFile();
+ if ( ok )
+ ok = mTempFile->close();
+
+ if ( !ok ) {
+ emit loadingError( this, i18n( "Unable to open file '%1'." ).arg( mTempFile->name() ) );
+ deleteLocalTempFile();
+ return false;
+ }
+
+ KURL dest;
+ dest.setPath( mTempFile->name() );
+
+ KIO::Scheduler::checkSlaveOnHold( true );
+ d->mLoadJob = KIO::file_copy( mUrl, dest, -1, true, false, false );
+ d->mIsLoading = true;
+ connect( d->mLoadJob, SIGNAL( result( KIO::Job* ) ),
+ this, SLOT( downloadFinished( KIO::Job* ) ) );
+
+ return true;
+}
+
+void ResourceNet::abortAsyncLoading()
+{
+ kdDebug(5700) << "ResourceNet::abortAsyncLoading()" << endl;
+
+ if ( d->mLoadJob ) {
+ d->mLoadJob->kill(); // result not emitted
+ d->mLoadJob = 0;
+ }
+
+ deleteLocalTempFile();
+ d->mIsLoading = false;
+}
+
+void ResourceNet::abortAsyncSaving()
+{
+ kdDebug(5700) << "ResourceNet::abortAsyncSaving()" << endl;
+
+ if ( d->mSaveJob ) {
+ d->mSaveJob->kill(); // result not emitted
+ d->mSaveJob = 0;
+ }
+
+ deleteLocalTempFile();
+ d->mIsSaving = false;
+}
+
+bool ResourceNet::save( Ticket* )
+{
+ kdDebug(5700) << "ResourceNet::save()" << endl;
+
+ if (d->mIsSaving) {
+ abortAsyncSaving();
+ }
+
+ KTempFile tempFile;
+ tempFile.setAutoDelete( true );
+ bool ok = false;
+
+ if ( tempFile.status() == 0 && tempFile.file() ) {
+ saveToFile( tempFile.file() );
+ ok = tempFile.close();
+ }
+
+ if ( !ok ) {
+ addressBook()->error( i18n( "Unable to save file '%1'." ).arg( tempFile.name() ) );
+ return false;
+ }
+
+ ok = KIO::NetAccess::upload( tempFile.name(), mUrl, 0 );
+ if ( !ok )
+ addressBook()->error( i18n( "Unable to upload to '%1'." ).arg( mUrl.prettyURL() ) );
+
+ return ok;
+}
+
+bool ResourceNet::asyncSave( Ticket* )
+{
+ kdDebug(5700) << "ResourceNet::asyncSave()" << endl;
+
+ if (d->mIsSaving) {
+ abortAsyncSaving();
+ }
+
+ if (d->mIsLoading) {
+ kdWarning(5700) << "Aborted asyncSave() because we're still asyncLoad()ing!" << endl;
+ return false;
+ }
+
+ bool ok = createLocalTempFile();
+ if ( ok ) {
+ saveToFile( mTempFile->file() );
+ ok = mTempFile->close();
+ }
+
+ if ( !ok ) {
+ emit savingError( this, i18n( "Unable to save file '%1'." ).arg( mTempFile->name() ) );
+ deleteLocalTempFile();
+ return false;
+ }
+
+ KURL src;
+ src.setPath( mTempFile->name() );
+
+ KIO::Scheduler::checkSlaveOnHold( true );
+ d->mIsSaving = true;
+ d->mSaveJob = KIO::file_copy( src, mUrl, -1, true, false, false );
+ connect( d->mSaveJob, SIGNAL( result( KIO::Job* ) ),
+ this, SLOT( uploadFinished( KIO::Job* ) ) );
+
+ return true;
+}
+
+bool ResourceNet::createLocalTempFile()
+{
+ deleteStaleTempFile();
+ mTempFile = new KTempFile();
+ mTempFile->setAutoDelete( true );
+ return mTempFile->status() == 0;
+}
+
+void ResourceNet::deleteStaleTempFile()
+{
+ if ( hasTempFile() ) {
+ kdDebug(5700) << "stale temp file detected " << mTempFile->name() << endl;
+ deleteLocalTempFile();
+ }
+}
+
+void ResourceNet::deleteLocalTempFile()
+{
+ delete mTempFile;
+ mTempFile = 0;
+}
+
+void ResourceNet::saveToFile( QFile *file )
+{
+ mFormat->saveAll( addressBook(), this, file );
+}
+
+void ResourceNet::setUrl( const KURL &url )
+{
+ mUrl = url;
+}
+
+KURL ResourceNet::url() const
+{
+ return mUrl;
+}
+
+void ResourceNet::setFormat( const QString &name )
+{
+ mFormatName = name;
+ if ( mFormat )
+ delete mFormat;
+
+ FormatFactory *factory = FormatFactory::self();
+ mFormat = factory->format( mFormatName );
+}
+
+QString ResourceNet::format() const
+{
+ return mFormatName;
+}
+
+void ResourceNet::downloadFinished( KIO::Job* )
+{
+ kdDebug(5700) << "ResourceNet::downloadFinished()" << endl;
+
+ d->mIsLoading = false;
+
+ if ( !hasTempFile() || mTempFile->status() != 0 ) {
+ d->mLastErrorString = i18n( "Download failed in some way!" );
+ QTimer::singleShot( 0, this, SLOT( signalError() ) );
+ return;
+ }
+
+ QFile file( mTempFile->name() );
+ if ( file.open( IO_ReadOnly ) ) {
+ if ( clearAndLoad( &file ) )
+ emit loadingFinished( this );
+ else
+ emit loadingError( this, i18n( "Problems during parsing file '%1'." ).arg( mTempFile->name() ) );
+ }
+ else {
+ emit loadingError( this, i18n( "Unable to open file '%1'." ).arg( mTempFile->name() ) );
+ }
+
+ deleteLocalTempFile();
+}
+
+void ResourceNet::uploadFinished( KIO::Job *job )
+{
+ kdDebug(5700) << "ResourceFile::uploadFinished()" << endl;
+
+ d->mIsSaving = false;
+
+ if ( job->error() )
+ emit savingError( this, job->errorString() );
+ else
+ emit savingFinished( this );
+
+ deleteLocalTempFile();
+}
+
+void ResourceNet::signalError()
+{
+ emit loadingError( this, d->mLastErrorString );
+ d->mLastErrorString.truncate( 0 );
+}
+
+#include "resourcenet.moc"
diff --git a/kabc/plugins/net/resourcenet.h b/kabc/plugins/net/resourcenet.h
new file mode 100644
index 000000000..b315be6df
--- /dev/null
+++ b/kabc/plugins/net/resourcenet.h
@@ -0,0 +1,117 @@
+/*
+ This file is part of libkabc.
+ Copyright (c) 2003 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.
+*/
+
+#ifndef KABC_RESOURCENET_H
+#define KABC_RESOURCENET_H
+
+#include <kconfig.h>
+
+#include <sys/types.h>
+
+#include <kabc/resource.h>
+
+class QFile;
+class QTimer;
+class KTempFile;
+
+namespace KIO {
+class Job;
+}
+
+namespace KABC {
+
+class FormatPlugin;
+
+/**
+ @internal
+*/
+class KABC_EXPORT ResourceNet : public Resource
+{
+ Q_OBJECT
+
+ public:
+ ResourceNet( const KConfig* );
+ ResourceNet( const KURL &url, const QString &format );
+ ~ResourceNet();
+
+ virtual void writeConfig( KConfig* );
+
+ virtual bool doOpen();
+ virtual void doClose();
+
+ virtual Ticket *requestSaveTicket();
+ virtual void releaseSaveTicket( Ticket* );
+
+ virtual bool load();
+ virtual bool asyncLoad();
+ virtual bool save( Ticket* ticket );
+ virtual bool asyncSave( Ticket* ticket );
+
+ /**
+ Set url of directory to be used for saving.
+ */
+ void setUrl( const KURL & );
+
+ /**
+ Return url of directory used for loading and saving the address book.
+ */
+ KURL url() const;
+
+ /**
+ Sets a new format by name.
+ */
+ void setFormat( const QString &name );
+
+ /**
+ Returns the format name.
+ */
+ QString format() const;
+
+ protected:
+ void init( const KURL &url, const QString &format );
+
+ private slots:
+ void downloadFinished( KIO::Job* );
+ void uploadFinished( KIO::Job* );
+ void signalError();
+
+ private:
+ bool clearAndLoad( QFile *file );
+ void saveToFile( QFile *file );
+ bool hasTempFile() const { return mTempFile != 0; }
+ void abortAsyncLoading();
+ void abortAsyncSaving();
+ bool createLocalTempFile();
+ void deleteLocalTempFile();
+ void deleteStaleTempFile();
+
+ FormatPlugin *mFormat;
+ QString mFormatName;
+
+ KURL mUrl;
+ KTempFile *mTempFile;
+
+ class ResourceNetPrivate;
+ ResourceNetPrivate *d;
+};
+
+}
+
+#endif
diff --git a/kabc/plugins/net/resourcenetconfig.cpp b/kabc/plugins/net/resourcenetconfig.cpp
new file mode 100644
index 000000000..ef5bfdcb9
--- /dev/null
+++ b/kabc/plugins/net/resourcenetconfig.cpp
@@ -0,0 +1,102 @@
+/*
+ This file is part of libkabc.
+ Copyright (c) 2003 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 <qlabel.h>
+#include <qlayout.h>
+
+#include <kdebug.h>
+#include <klocale.h>
+#include <kdialog.h>
+
+#include "formatfactory.h"
+#include "resourcenet.h"
+#include "stdaddressbook.h"
+
+#include "resourcenetconfig.h"
+
+using namespace KABC;
+
+ResourceNetConfig::ResourceNetConfig( QWidget* parent, const char* name )
+ : ConfigWidget( parent, name ), mInEditMode( false )
+{
+ QGridLayout *mainLayout = new QGridLayout( this, 2, 2, 0,
+ KDialog::spacingHint() );
+
+ QLabel *label = new QLabel( i18n( "Format:" ), this );
+ mFormatBox = new KComboBox( this );
+
+ mainLayout->addWidget( label, 0, 0 );
+ mainLayout->addWidget( mFormatBox, 0, 1 );
+
+ label = new QLabel( i18n( "Location:" ), this );
+ mUrlEdit = new KURLRequester( this );
+ mUrlEdit->setMode( KFile::File );
+
+ mainLayout->addWidget( label, 1, 0 );
+ mainLayout->addWidget( mUrlEdit, 1, 1 );
+
+ 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 ) {
+ mFormatTypes << (*it);
+ mFormatBox->insertItem( info->nameLabel );
+ }
+ }
+}
+
+void ResourceNetConfig::setEditMode( bool value )
+{
+ mFormatBox->setEnabled( !value );
+ mInEditMode = value;
+}
+
+void ResourceNetConfig::loadSettings( KRES::Resource *res )
+{
+ ResourceNet *resource = dynamic_cast<ResourceNet*>( res );
+
+ if ( !resource ) {
+ kdDebug(5700) << "ResourceNetConfig::loadSettings(): cast failed" << endl;
+ return;
+ }
+
+ mFormatBox->setCurrentItem( mFormatTypes.findIndex( resource->format() ) );
+
+ mUrlEdit->setURL( resource->url().url() );
+}
+
+void ResourceNetConfig::saveSettings( KRES::Resource *res )
+{
+ ResourceNet *resource = dynamic_cast<ResourceNet*>( res );
+
+ if ( !resource ) {
+ kdDebug(5700) << "ResourceNetConfig::saveSettings(): cast failed" << endl;
+ return;
+ }
+
+ if ( !mInEditMode )
+ resource->setFormat( mFormatTypes[ mFormatBox->currentItem() ] );
+
+ resource->setUrl( KURL( mUrlEdit->url() ) );
+}
+
+#include "resourcenetconfig.moc"
diff --git a/kabc/plugins/net/resourcenetconfig.h b/kabc/plugins/net/resourcenetconfig.h
new file mode 100644
index 000000000..e35c46c01
--- /dev/null
+++ b/kabc/plugins/net/resourcenetconfig.h
@@ -0,0 +1,53 @@
+/*
+ This file is part of libkabc.
+ Copyright (c) 2003 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.
+*/
+
+#ifndef RESOURCENETCONFIG_H
+#define RESOURCENETCONFIG_H
+
+#include <kcombobox.h>
+#include <kurlrequester.h>
+
+#include <kresources/configwidget.h>
+
+namespace KABC {
+
+class KABC_EXPORT ResourceNetConfig : public KRES::ConfigWidget
+{
+ Q_OBJECT
+
+ public:
+ ResourceNetConfig( QWidget* parent = 0, const char* name = 0 );
+
+ void setEditMode( bool value );
+
+ public slots:
+ void loadSettings( KRES::Resource *resource );
+ void saveSettings( KRES::Resource *resource );
+
+ private:
+ KComboBox* mFormatBox;
+ KURLRequester* mUrlEdit;
+
+ QStringList mFormatTypes;
+ bool mInEditMode;
+};
+
+}
+#endif
diff --git a/kabc/plugins/net/resourcenetplugin.cpp b/kabc/plugins/net/resourcenetplugin.cpp
new file mode 100644
index 000000000..189bab051
--- /dev/null
+++ b/kabc/plugins/net/resourcenetplugin.cpp
@@ -0,0 +1,32 @@
+/*
+ This file is part of libkabc.
+ Copyright (c) 2003 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 "resourcenet.h"
+#include "resourcenetconfig.h"
+
+using namespace KABC;
+
+extern "C"
+{
+ KDE_EXPORT void *init_kabc_net()
+ {
+ return new KRES::PluginFactory<ResourceNet, ResourceNetConfig>();
+ }
+}