From b363d2579af0a11b77e698aed2e1021c2233b644 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sat, 26 Jan 2013 13:17:50 -0600 Subject: Rename a number of libraries and executables to avoid conflicts with KDE4 --- kresources/groupwise/kabc_resourcegroupwise.h | 169 -------------------------- 1 file changed, 169 deletions(-) delete mode 100644 kresources/groupwise/kabc_resourcegroupwise.h (limited to 'kresources/groupwise/kabc_resourcegroupwise.h') diff --git a/kresources/groupwise/kabc_resourcegroupwise.h b/kresources/groupwise/kabc_resourcegroupwise.h deleted file mode 100644 index 658ddd76b..000000000 --- a/kresources/groupwise/kabc_resourcegroupwise.h +++ /dev/null @@ -1,169 +0,0 @@ -/* - This file is part of tdepim. - - Copyright (c) 2004 Cornelius Schumacher - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program 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 General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -*/ -#ifndef KABC_RESOURCEGROUPWISE_H -#define KABC_RESOURCEGROUPWISE_H - -#include "soap/groupwiseserver.h" - -#include -#include - -#include - -#include - -class TDEConfig; - -class GroupwiseServer; - -namespace KABC { - -class GroupwisePrefs; - -class KDE_EXPORT ResourceGroupwise : public ResourceCached -{ - friend class ResourceGroupwiseConfig; - - Q_OBJECT - - - public: - ResourceGroupwise( const TDEConfig * ); - ResourceGroupwise( const KURL &url, - const TQString &user, const TQString &password, - const TQStringList &readAddressBooks, - const TQString &writeAddressBook ); - ~ResourceGroupwise(); - - void readConfig( const TDEConfig * ); - void writeConfig( TDEConfig * ); - - void readAddressBooks(); - void writeAddressBooks(); - - void retrieveAddressBooks(); - - GroupwisePrefs *prefs() const { return mPrefs; } - - GroupWise::AddressBook::List addressBooks() const { return mAddressBooks; } - - bool doOpen(); - void doClose(); - - Ticket *requestSaveTicket(); - void releaseSaveTicket( Ticket* ); - - bool load(); - bool asyncLoad(); - bool save( Ticket * ); - bool asyncSave( Ticket * ); - enum SABState { Error, Stale, InSync, RefreshNeeded }; - - /** - * Clears the cached data, in memory and on disk - */ - void clearCache(); - protected: - enum ResourceState { Start, FetchingSAB, SABUptodate, FetchingUAB, Uptodate }; - enum BookType { System, User }; - enum AccessMode { Fetch, Update }; - void init(); - void initGroupwise(); - - /* STATE CHANGING METHODS */ - /** - * Begin asynchronously fetching the system address book , replacing the cached copy - */ - void fetchAddressBooks( const BookType booktype ); - /** - * Asynchronously update the system address book - */ - void updateSystemAddressBook(); - /** - * Wrap up the load sequence - */ - void loadCompleted(); - - /** HELPER METHODS **/ - /** - * Check to see if a local download of the SAB already exists - */ - SABState systemAddressBookState(); - /** - * Check if the resource is configured to download the SAB - */ - bool shouldFetchSystemAddressBook(); - /** - * Check if the resource is configured to download personal address - * books - */ - bool shouldFetchUserAddressBooks(); - - /** - * Create a URL for a single addressbook access. - * To fetch an address book completely, use mode = Fetch - * To just update an addressbook, use mode = Update and give the ast sequence number already held - * If Update is given without a sequence number, the mode falls back to Fetch - */ - KURL createAccessUrl( BookType bookType, AccessMode mode, unsigned long lastSequenceNumber = 0, unsigned long lastPORebuildTime = 0 ); - - /** - * Persist the last known delta info. Call after the SAB is up to date. - */ - void storeDeltaInfo(); - - /** - * Check if the application which has loaded this resource is whitelisted - * to load the System Address Book (time-consuming) - */ - bool appIsWhiteListedForSAB(); - - private slots: - /** STATE CHANGING SLOTS **/ - void fetchSABResult( TDEIO::Job * ); - void fetchUABResult( TDEIO::Job * ); - void updateSABResult( TDEIO::Job * ); - /** DATA PROCESSING SLOTS **/ - void slotReadJobData( TDEIO::Job *, const TQByteArray & ); - void slotUpdateJobData( TDEIO::Job *, const TQByteArray & ); - /** HELPER TQT_SLOT **/ - void slotJobPercent( TDEIO::Job *job, unsigned long percent ); - - void cancelLoad(); - private: - GroupwisePrefs *mPrefs; - GroupWise::AddressBook::List mAddressBooks; - - GroupwiseServer *mServer; - - TDEIO::TransferJob *mJob; - KPIM::ProgressItem *mProgress; - KPIM::ProgressItem *mSABProgress; - KPIM::ProgressItem *mUABProgress; - TQString mJobData; - ResourceState mState; - unsigned long mServerFirstSequence, mServerLastSequence, mServerLastPORebuildTime; - - bool mLimitedMode; -}; - -} - -#endif -- cgit v1.2.1