nextcloud-desktop/src/mirall/syncresult.h

81 lines
1.9 KiB
C
Raw Normal View History

2011-04-06 13:48:02 +04:00
/*
* Copyright (C) by Duncan Mac-Vicar P. <duncan@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.
*/
#ifndef MIRALL_SYNCRESULT_H
#define MIRALL_SYNCRESULT_H
#include <QStringList>
#include <QHash>
2013-01-15 23:41:52 +04:00
#include <QDateTime>
#include "mirall/syncfileitem.h"
namespace Mirall
{
class SyncResult
{
public:
enum Status
2011-04-08 13:36:53 +04:00
{
2011-10-13 18:41:24 +04:00
Undefined,
NotYetStarted,
SyncPrepare,
SyncRunning,
SyncAbortRequested,
2011-10-13 18:41:24 +04:00
Success,
Problem,
2011-10-13 18:41:24 +04:00
Error,
SetupError,
Unavailable
2011-04-08 13:36:53 +04:00
};
2011-10-13 18:41:24 +04:00
SyncResult();
SyncResult( Status status );
~SyncResult();
void setErrorString( const QString& );
void setErrorStrings( const QStringList& );
2011-09-26 20:19:01 +04:00
QString errorString() const;
QStringList errorStrings() const;
int warnCount() const;
void setWarnCount(int wc);
void clearErrors();
2013-01-15 23:41:52 +04:00
// handle a list of changed items.
void setSyncFileItemVector( const SyncFileItemVector& );
SyncFileItemVector syncFileItemVector() const;
2011-04-08 13:36:53 +04:00
void setStatus( Status );
Status status() const;
2012-07-30 18:09:49 +04:00
QString statusString() const;
2013-01-15 23:41:52 +04:00
QDateTime syncTime() const;
void setFolder(const QString& folder);
QString folder() const;
2011-04-08 13:36:53 +04:00
private:
2013-01-15 23:41:52 +04:00
Status _status;
SyncFileItemVector _syncItems;
QDateTime _syncTime;
QString _folder;
2011-04-08 13:36:53 +04:00
/**
* when the sync tool support this...
*/
2013-01-15 23:41:52 +04:00
QStringList _errors;
int _warnCount;
};
}
#endif