kde-playground/kdepim-runtime/resources/kolabproxy/kolabdefs.cpp

118 lines
3.8 KiB
C++
Raw Permalink Normal View History

2015-04-14 22:08:21 +00:00
/*
Copyright (c) 2010 Volker Krause <vkrause@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 "kolabdefs.h"
#include <KLocalizedString>
#include <boost/static_assert.hpp>
using namespace KolabV2;
static const struct {
const char *name;
const char *label;
} folderTypeData[] = {
{ KOLAB_FOLDER_TYPE_MAIL, "" },
{ KOLAB_FOLDER_TYPE_CONTACT, I18N_NOOP( "Contacts" ) },
{ KOLAB_FOLDER_TYPE_EVENT, I18N_NOOP( "Calendar" ) },
{ KOLAB_FOLDER_TYPE_TASK, I18N_NOOP( "Tasks" ) },
{ KOLAB_FOLDER_TYPE_JOURNAL, I18N_NOOP( "Journal" ) },
{ KOLAB_FOLDER_TYPE_NOTE, I18N_NOOP( "Notes" ) }
};
static const int numFolderTypeData = sizeof folderTypeData / sizeof *folderTypeData;
BOOST_STATIC_ASSERT( numFolderTypeData == KolabV2::FolderTypeSize );
FolderType KolabV2::folderTypeFromString( const QByteArray &folderTypeName )
{
if ( folderTypeName == KOLAB_FOLDER_TYPE_CONTACT ||
folderTypeName == KOLAB_FOLDER_TYPE_CONTACT KOLAB_FOLDER_TYPE_DEFAULT_SUFFIX ) {
return KolabV2::Contact;
}
if ( folderTypeName == KOLAB_FOLDER_TYPE_EVENT ||
folderTypeName == KOLAB_FOLDER_TYPE_EVENT KOLAB_FOLDER_TYPE_DEFAULT_SUFFIX ) {
return KolabV2::Event;
}
if ( folderTypeName == KOLAB_FOLDER_TYPE_TASK ||
folderTypeName == KOLAB_FOLDER_TYPE_TASK KOLAB_FOLDER_TYPE_DEFAULT_SUFFIX ) {
return KolabV2::Task;
}
if ( folderTypeName == KOLAB_FOLDER_TYPE_JOURNAL ||
folderTypeName == KOLAB_FOLDER_TYPE_JOURNAL KOLAB_FOLDER_TYPE_DEFAULT_SUFFIX ) {
return KolabV2::Journal;
}
if ( folderTypeName == KOLAB_FOLDER_TYPE_NOTE ||
folderTypeName == KOLAB_FOLDER_TYPE_NOTE KOLAB_FOLDER_TYPE_DEFAULT_SUFFIX ) {
return KolabV2::Note;
}
return KolabV2::Mail;
}
QByteArray KolabV2::folderTypeToString( FolderType type, bool isDefault )
{
Q_ASSERT( type >= 0 && type < FolderTypeSize );
QByteArray result = folderTypeData[ type ].name;
if ( isDefault ) {
result += KOLAB_FOLDER_TYPE_DEFAULT_SUFFIX;
}
return result;
}
KolabV2::FolderType KolabV2::guessFolderTypeFromName( const QString &name )
{
for ( int i = 0; i < numFolderTypeData; ++i ) {
if ( name == i18n( folderTypeData[ i ].label ) ||
name == QString::fromLatin1( folderTypeData[ i ].label ) ) {
return static_cast<FolderType>( i );
}
}
return KolabV2::Mail;
}
QString KolabV2::nameForFolderType( FolderType type )
{
Q_ASSERT( type >= 0 && type < FolderTypeSize );
return i18n( folderTypeData[ type ].label );
}
Kolab::FolderType Kolab::folderTypeFromString(const QByteArray& folderTypeName)
{
return Kolab::folderTypeFromString( std::string(folderTypeName.data(), folderTypeName.size()) );
}
QByteArray Kolab::getFolderTypeAnnotation(const QMap< QByteArray, QByteArray > &annotations)
{
if ( annotations.contains( "/shared" KOLAB_FOLDER_TYPE_ANNOTATION ) ) {
return annotations.value( "/shared" KOLAB_FOLDER_TYPE_ANNOTATION );
}
return annotations.value(KOLAB_FOLDER_TYPE_ANNOTATION);
}
void Kolab::setFolderTypeAnnotation(QMap< QByteArray, QByteArray >& annotations, const QByteArray& value)
{
annotations["/shared" KOLAB_FOLDER_TYPE_ANNOTATION] = value;
}