2014-07-10 16:27:52 +04:00
|
|
|
/*
|
|
|
|
* Copyright (C) by Klaas Freitag <freitag@owncloud.com>
|
|
|
|
*
|
|
|
|
* 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
|
2016-10-25 12:00:07 +03:00
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
2014-07-10 16:27:52 +04:00
|
|
|
*
|
|
|
|
* 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 SYNCFILESTATUS_H
|
|
|
|
#define SYNCFILESTATUS_H
|
|
|
|
|
2016-08-04 15:59:46 +03:00
|
|
|
#include <QMetaType>
|
|
|
|
#include <QObject>
|
2014-07-10 16:27:52 +04:00
|
|
|
#include <QString>
|
|
|
|
|
2014-07-11 00:58:58 +04:00
|
|
|
#include "owncloudlib.h"
|
|
|
|
|
2014-11-10 00:34:07 +03:00
|
|
|
namespace OCC {
|
2014-07-10 16:27:52 +04:00
|
|
|
|
2015-06-29 19:56:09 +03:00
|
|
|
/**
|
|
|
|
* @brief The SyncFileStatus class
|
|
|
|
* @ingroup libsync
|
2015-06-26 18:07:47 +03:00
|
|
|
*/
|
2014-07-11 00:58:58 +04:00
|
|
|
class OWNCLOUDSYNC_EXPORT SyncFileStatus
|
2014-07-10 16:27:52 +04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
enum SyncFileStatusTag {
|
2016-03-24 20:20:49 +03:00
|
|
|
StatusNone,
|
|
|
|
StatusSync,
|
2016-03-24 19:42:04 +03:00
|
|
|
StatusWarning,
|
2016-03-24 20:20:49 +03:00
|
|
|
StatusUpToDate,
|
|
|
|
StatusError,
|
2014-07-10 16:27:52 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
SyncFileStatus();
|
|
|
|
SyncFileStatus(SyncFileStatusTag);
|
|
|
|
|
|
|
|
void set(SyncFileStatusTag tag);
|
2016-08-04 15:59:46 +03:00
|
|
|
SyncFileStatusTag tag() const;
|
2014-07-10 16:27:52 +04:00
|
|
|
|
2017-07-21 12:28:15 +03:00
|
|
|
void setShared(bool isShared);
|
|
|
|
bool shared() const;
|
2014-07-10 16:27:52 +04:00
|
|
|
|
|
|
|
QString toSocketAPIString() const;
|
2017-05-17 11:55:42 +03:00
|
|
|
|
2014-07-10 16:27:52 +04:00
|
|
|
private:
|
|
|
|
SyncFileStatusTag _tag;
|
2017-07-21 12:28:15 +03:00
|
|
|
bool _shared;
|
2014-07-10 16:27:52 +04:00
|
|
|
};
|
2016-08-04 15:59:46 +03:00
|
|
|
|
2017-05-17 11:55:42 +03:00
|
|
|
inline bool operator==(const SyncFileStatus &a, const SyncFileStatus &b)
|
|
|
|
{
|
2017-07-21 12:28:15 +03:00
|
|
|
return a.tag() == b.tag() && a.shared() == b.shared();
|
2016-08-04 15:59:46 +03:00
|
|
|
}
|
|
|
|
|
2017-05-17 11:55:42 +03:00
|
|
|
inline bool operator!=(const SyncFileStatus &a, const SyncFileStatus &b)
|
|
|
|
{
|
2016-08-04 15:59:46 +03:00
|
|
|
return !(a == b);
|
2014-07-10 16:27:52 +04:00
|
|
|
}
|
2016-08-04 15:59:46 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
Q_DECLARE_METATYPE(OCC::SyncFileStatus)
|
2014-07-10 16:27:52 +04:00
|
|
|
|
|
|
|
#endif // SYNCFILESTATUS_H
|