nextcloud-desktop/src/libsync/syncfilestatus.h

71 lines
1.5 KiB
C
Raw Normal View History

/*
* 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
* 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 SYNCFILESTATUS_H
#define SYNCFILESTATUS_H
#include <QMetaType>
#include <QObject>
#include <QString>
2014-07-11 00:58:58 +04:00
#include "owncloudlib.h"
2014-11-10 00:34:07 +03:00
namespace OCC {
2015-06-29 19:56:09 +03:00
/**
* @brief The SyncFileStatus class
* @ingroup libsync
*/
2014-07-11 00:58:58 +04:00
class OWNCLOUDSYNC_EXPORT SyncFileStatus
{
public:
enum SyncFileStatusTag {
StatusNone,
StatusSync,
StatusWarning,
StatusUpToDate,
StatusError,
};
SyncFileStatus();
SyncFileStatus(SyncFileStatusTag);
void set(SyncFileStatusTag tag);
SyncFileStatusTag tag() const;
void setShared(bool isShared);
bool shared() const;
QString toSocketAPIString() const;
2017-05-17 11:55:42 +03:00
private:
SyncFileStatusTag _tag;
bool _shared;
};
2017-05-17 11:55:42 +03:00
inline bool operator==(const SyncFileStatus &a, const SyncFileStatus &b)
{
return a.tag() == b.tag() && a.shared() == b.shared();
}
2017-05-17 11:55:42 +03:00
inline bool operator!=(const SyncFileStatus &a, const SyncFileStatus &b)
{
return !(a == b);
}
}
Q_DECLARE_METATYPE(OCC::SyncFileStatus)
#endif // SYNCFILESTATUS_H