mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-19 20:32:03 +03:00
25669938fd
Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
66 lines
2.1 KiB
C++
66 lines
2.1 KiB
C++
/*
|
|
* Copyright (C) by Julius Härtl <jus@bitgrid.net>
|
|
*
|
|
* 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 CLOUDPROVIDER_H
|
|
#define CLOUDPROVIDER_H
|
|
|
|
#include <QObject>
|
|
#include "folderman.h"
|
|
|
|
/* Forward declaration required since gio header files interfere with QObject headers */
|
|
struct _CloudProvidersProviderExporter;
|
|
using CloudProvidersProviderExporter = _CloudProvidersProviderExporter;
|
|
struct _CloudProvidersAccountExporter;
|
|
using CloudProvidersAccountExporter = _CloudProvidersAccountExporter;
|
|
struct _GMenuModel;
|
|
using GMenuModel = _GMenuModel;
|
|
struct _GMenu;
|
|
using GMenu = _GMenu;
|
|
struct _GActionGroup;
|
|
using GActionGroup = _GActionGroup;
|
|
using gchar = char;
|
|
using gpointer = void*;
|
|
|
|
using namespace OCC;
|
|
|
|
class CloudProviderWrapper : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit CloudProviderWrapper(QObject *parent = nullptr, Folder *folder = nullptr, int folderId = 0, CloudProvidersProviderExporter* cloudprovider = nullptr);
|
|
~CloudProviderWrapper() override;
|
|
CloudProvidersAccountExporter* accountExporter();
|
|
Folder* folder();
|
|
GMenuModel* getMenuModel();
|
|
GActionGroup* getActionGroup();
|
|
void updateStatusText(QString statusText);
|
|
void updatePauseStatus();
|
|
|
|
public slots:
|
|
void slotSyncStarted();
|
|
void slotSyncFinished(const SyncResult &);
|
|
void slotUpdateProgress(const QString &folder, const ProgressInfo &progress);
|
|
void slotSyncPausedChanged(Folder*, bool);
|
|
|
|
private:
|
|
Folder *_folder;
|
|
CloudProvidersProviderExporter *_cloudProvider;
|
|
CloudProvidersAccountExporter *_cloudProviderAccount;
|
|
QList<QPair<QString, QString>> _recentlyChanged;
|
|
bool _paused;
|
|
GMenu* _mainMenu = nullptr;
|
|
GMenu* _recentMenu = nullptr;
|
|
};
|
|
|
|
#endif // CLOUDPROVIDER_H
|