2013-07-31 17:46:41 +04:00
|
|
|
/*
|
|
|
|
* Copyright (C) by Klaas Freitag <freitag@owncloud.com>
|
|
|
|
* Copyright (C) by Krzesimir Nowak <krzesimir@endocode.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 MIRALL_OWNCLOUD_ADVANCED_SETUP_PAGE_H
|
|
|
|
#define MIRALL_OWNCLOUD_ADVANCED_SETUP_PAGE_H
|
|
|
|
|
|
|
|
#include <QWizard>
|
|
|
|
|
|
|
|
#include "wizard/owncloudwizardcommon.h"
|
|
|
|
#include "ui_owncloudadvancedsetuppage.h"
|
|
|
|
|
|
|
|
class QProgressIndicator;
|
|
|
|
|
2014-11-10 00:34:07 +03:00
|
|
|
namespace OCC {
|
2013-07-31 17:46:41 +04:00
|
|
|
|
|
|
|
class OwncloudAdvancedSetupPage: public QWizardPage
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
OwncloudAdvancedSetupPage();
|
|
|
|
|
2014-07-10 01:22:28 +04:00
|
|
|
virtual bool isComplete() const Q_DECL_OVERRIDE;
|
|
|
|
virtual void initializePage() Q_DECL_OVERRIDE;
|
|
|
|
virtual int nextId() const Q_DECL_OVERRIDE;
|
|
|
|
bool validatePage() Q_DECL_OVERRIDE;
|
2013-07-31 17:46:41 +04:00
|
|
|
QString localFolder() const;
|
2015-01-16 12:17:19 +03:00
|
|
|
QStringList selectiveSyncBlacklist() const;
|
2013-07-31 17:46:41 +04:00
|
|
|
void setRemoteFolder( const QString& remoteFolder);
|
|
|
|
void setMultipleFoldersExist( bool exist );
|
|
|
|
void directoriesCreated();
|
2013-08-01 16:51:42 +04:00
|
|
|
void setConfigExists(bool config);
|
2013-07-31 17:46:41 +04:00
|
|
|
|
|
|
|
signals:
|
|
|
|
void createLocalAndRemoteFolders(const QString&, const QString&);
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void setErrorString( const QString& );
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void slotSelectFolder();
|
2014-08-27 21:03:11 +04:00
|
|
|
void slotSyncEverythingClicked();
|
|
|
|
void slotSelectiveSyncClicked();
|
2015-01-14 17:59:36 +03:00
|
|
|
void slotQuotaRetrieved(qint64,qint64);
|
2013-07-31 17:46:41 +04:00
|
|
|
|
|
|
|
private:
|
|
|
|
void setupCustomization();
|
|
|
|
void updateStatus();
|
2013-08-01 16:50:27 +04:00
|
|
|
bool dataChanged();
|
2013-07-31 17:46:41 +04:00
|
|
|
void startSpinner();
|
|
|
|
void stopSpinner();
|
|
|
|
|
|
|
|
Ui_OwncloudAdvancedSetupPage _ui;
|
|
|
|
bool _checking;
|
|
|
|
bool _created;
|
|
|
|
bool _configExists;
|
|
|
|
bool _multipleFoldersExist;
|
|
|
|
QProgressIndicator* _progressIndi;
|
2013-08-01 16:50:27 +04:00
|
|
|
QString _oldLocalFolder;
|
2013-07-31 17:46:41 +04:00
|
|
|
QString _remoteFolder;
|
2015-01-16 12:17:19 +03:00
|
|
|
QStringList _selectiveSyncBlacklist;
|
2013-07-31 17:46:41 +04:00
|
|
|
};
|
|
|
|
|
2014-11-10 00:34:07 +03:00
|
|
|
} // namespace OCC
|
2013-07-31 17:46:41 +04:00
|
|
|
|
|
|
|
#endif
|