nextcloud-desktop/src/mirall/folder.h

113 lines
2.3 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.
*/
2011-02-17 02:21:45 +03:00
#ifndef MIRALL_FOLDER_H
#define MIRALL_FOLDER_H
#include <QObject>
#include <QString>
#include <QStringList>
2011-02-17 02:21:45 +03:00
class QAction;
class QTimer;
2011-02-17 02:21:45 +03:00
namespace Mirall {
class FolderWatcher;
class Folder : public QObject
{
Q_OBJECT
public:
2011-04-06 11:52:02 +04:00
Folder(const QString &alias, const QString &path, QObject *parent = 0L);
2011-02-17 02:21:45 +03:00
virtual ~Folder();
2011-04-06 11:52:02 +04:00
/**
* alias or nickname
*/
QString alias() const;
/**
* local folder path
*/
QString path() const;
QAction *openAction() const;
2011-02-17 02:21:45 +03:00
/**
* Starts a sync operation
*
* If the list of changed files is known, it is passed.
*
* If the list of changed files is empty, the folder
* implementation should figure it by itself of
* perform a full scan of changes
2011-02-17 02:21:45 +03:00
*/
virtual void startSync(const QStringList &pathList) = 0;
2011-02-17 02:21:45 +03:00
/**
* True if the folder is busy and can't initiate
* a synchronization
*/
virtual bool isBusy() const = 0;
protected:
/**
* The minimum amounts of seconds to wait before
* doing a full sync to see if the remote changed
*/
int pollInterval() const;
/**
* Sets minimum amounts of seconds that will separate
* poll intervals
*/
void setPollInterval(int seconds);
2011-02-17 02:21:45 +03:00
signals:
2011-02-17 02:21:45 +03:00
void syncStarted();
void syncFinished();
protected:
FolderWatcher *_watcher;
2011-02-17 02:21:45 +03:00
private:
2011-02-17 02:21:45 +03:00
QString _path;
QAction *_openAction;
// poll timer for remote syncs
QTimer *_pollTimer;
int _pollInterval;
2011-04-06 11:52:02 +04:00
QString _alias;
protected slots:
void slotPollTimerTimeout();
/* called when the watcher detect a list of changed
paths */
void slotChanged(const QStringList &pathList);
2011-02-17 02:21:45 +03:00
void slotOpenFolder();
void slotSyncStarted();
void slotSyncFinished();
2011-02-17 02:21:45 +03:00
};
}
#endif