summaryrefslogtreecommitdiffstats
path: root/kresources/groupwise/kabc_resourcegroupwise.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-26 13:17:50 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-26 13:17:50 -0600
commitb363d2579af0a11b77e698aed2e1021c2233b644 (patch)
treef4a47b87354b7a6a3b266c8121bd8ddaeb7accaa /kresources/groupwise/kabc_resourcegroupwise.h
parent61bddfe3a7226b18c68a76124b727c736f431688 (diff)
downloadtdepim-b363d2579af0a11b77e698aed2e1021c2233b644.tar.gz
tdepim-b363d2579af0a11b77e698aed2e1021c2233b644.zip
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'kresources/groupwise/kabc_resourcegroupwise.h')
-rw-r--r--kresources/groupwise/kabc_resourcegroupwise.h169
1 files changed, 0 insertions, 169 deletions
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 <schumacher@kde.org>
-
- 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 <kabcresourcecached.h>
-#include <tdepimmacros.h>
-
-#include <libtdepim/progressmanager.h>
-
-#include <kio/job.h>
-
-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