From 59f727076930aada485db6531d4084f2bfe0b928 Mon Sep 17 00:00:00 2001 From: ulf69 Date: Thu, 15 Jul 2004 05:06:06 +0000 Subject: ask for readwrite resources if the user wants them to reload in the case of an external change. --- (limited to 'kabc/plugins/opie') diff --git a/kabc/plugins/opie/resourceopie.cpp b/kabc/plugins/opie/resourceopie.cpp index 1436508..aaee801 100644 --- a/kabc/plugins/opie/resourceopie.cpp +++ b/kabc/plugins/opie/resourceopie.cpp @@ -40,6 +40,7 @@ $Id$ #include //US #include #include +#include //US #include "formatfactory.h" //US #include @@ -92,9 +93,7 @@ void ResourceOpie::init( const QString &fileName ) connect( &mDirWatch, SIGNAL( dirty(const QString&) ), SLOT( fileChanged() ) ); connect( &mDirWatch, SIGNAL( created(const QString&) ), SLOT( fileChanged() ) ); connect( &mDirWatch, SIGNAL( deleted(const QString&) ), SLOT( fileChanged() ) ); - - //US opie addressbook is always readonly -//US setReadOnly( true ); + setFileName( fileName ); @@ -371,6 +370,13 @@ void ResourceOpie::fileChanged() // we are fully constructed if (!addressBook()) return; + + QString text( i18n( "Opie resource '%1'
has been changed by third party.
Do you want to reload?").arg( mFileName ) ); + if ( readOnly() || KMessageBox::questionYesNo( 0, text ) == KMessageBox::Yes ) { + load(); + addressBook()->emitAddressBookChanged(); + } + load(); addressBook()->emitAddressBookChanged(); } -- cgit v0.9.0.2