diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | 460c52653ab0dcca6f19a4f492ed2c5e4e963ab0 (patch) | |
tree | 67208f7c145782a7e90b123b982ca78d88cc2c87 /kmail/scalix.h | |
download | tdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.tar.gz tdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kmail/scalix.h')
-rw-r--r-- | kmail/scalix.h | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/kmail/scalix.h b/kmail/scalix.h new file mode 100644 index 000000000..cb202cff1 --- /dev/null +++ b/kmail/scalix.h @@ -0,0 +1,83 @@ +/* + * This file is part of KMail. + * + * Copyright (C) 2007 Trolltech ASA. All rights reserved. + * + * 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. + */ + +/** + * This file contains helper classes for Scalix groupware support. + * As the storage system of Scalix is quite similiar to Kolab we reuse some of + * the exsiting code and replace other code by our own. + * + * Differences between Kolab and Scalix: + * + * Groupware folder: + * Kolab marks the groupware folders (e.g. Contacts, Calendar etc.) by setting special + * annotations. Scalix however passes the information, which folder to treat as a + * special groupware folder, via custom IMAP attributes in the LIST result of the + * toplevel folder. + * + * Creating groupware folders: + * Kolab creates a normal folder and marks it as groupware folder by setting the right + * annotation. Scalix however has a special IMAP command 'X-CREATE-SPECIAL <type> <name>' + * to create a new groupware folder. + */ + +#ifndef SCALIX_H +#define SCALIX_H + +#include <qstring.h> + +#include "kmfoldertype.h" + +class KMFolder; +class KMFolderDir; + +namespace Scalix { + +/** + * This class takes a folder attribute string as argument and provides access to the single + * parts. + */ +class FolderAttributeParser +{ + public: + FolderAttributeParser( const QString &attribute ); + + QString folderClass() const; + QString folderName() const; + + private: + QString mFolderClass; + QString mFolderName; +}; + +class Utils +{ + public: + static KMFolder* findStandardResourceFolder( KMFolderDir* folderParentDir, + KMail::FolderContentsType contentsType, + const QStringList &attributes ); + + static KMail::FolderContentsType scalixIdToContentsType( const QString &name ); + + static QString contentsTypeToScalixId( KMail::FolderContentsType type ); +}; + +} + +#endif |