mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 02:42:51 +00:00
96 lines
2.5 KiB
C++
96 lines
2.5 KiB
C++
/*
|
|
This file is part of oxaccess.
|
|
|
|
Copyright (c) 2009 Tobias Koenig <tokoe@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.
|
|
*/
|
|
|
|
#ifndef OXA_OBJECT_H
|
|
#define OXA_OBJECT_H
|
|
|
|
#include "folder.h"
|
|
|
|
#include <kabc/addressee.h>
|
|
#include <kabc/contactgroup.h>
|
|
#include <kcalcore/incidence.h>
|
|
|
|
#include <QtCore/QList>
|
|
#include <QtCore/QString>
|
|
|
|
namespace OXA {
|
|
|
|
class Object
|
|
{
|
|
public:
|
|
/**
|
|
* Describes a list of objects.
|
|
*/
|
|
typedef QList<Object> List;
|
|
|
|
/**
|
|
* Describes the status of the object.
|
|
*/
|
|
enum ObjectStatus
|
|
{
|
|
Created, ///< The object has been created or modified.
|
|
Deleted ///< The object has been deleted.
|
|
};
|
|
|
|
Object();
|
|
|
|
void setObjectStatus( ObjectStatus status );
|
|
ObjectStatus objectStatus() const;
|
|
|
|
void setObjectId( qlonglong id );
|
|
qlonglong objectId() const;
|
|
|
|
void setFolderId( qlonglong id );
|
|
qlonglong folderId() const;
|
|
|
|
void setLastModified( const QString &timeStamp );
|
|
QString lastModified() const;
|
|
|
|
void setModule( Folder::Module module );
|
|
Folder::Module module() const;
|
|
|
|
void setContact( const KABC::Addressee &contact );
|
|
KABC::Addressee contact() const;
|
|
|
|
void setContactGroup( const KABC::ContactGroup &group );
|
|
KABC::ContactGroup contactGroup() const;
|
|
|
|
void setEvent( const KCalCore::Incidence::Ptr &event );
|
|
KCalCore::Incidence::Ptr event() const;
|
|
|
|
void setTask( const KCalCore::Incidence::Ptr &task );
|
|
KCalCore::Incidence::Ptr task() const;
|
|
|
|
private:
|
|
ObjectStatus mObjectStatus;
|
|
qlonglong mObjectId;
|
|
qlonglong mFolderId;
|
|
QString mLastModified;
|
|
Folder::Module mModule;
|
|
KABC::Addressee mContact;
|
|
KABC::ContactGroup mContactGroup;
|
|
KCalCore::Incidence::Ptr mEvent;
|
|
KCalCore::Incidence::Ptr mTask;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|