mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-21 05:13:04 +03:00
73 lines
1.8 KiB
C
73 lines
1.8 KiB
C
|
/*
|
||
|
* Copyright (C) by Duncan Mac-Vicar P. <duncan@kde.org>
|
||
|
* 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;
|
||
|
|
||
|
namespace Mirall {
|
||
|
|
||
|
class OwncloudAdvancedSetupPage: public QWizardPage
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
OwncloudAdvancedSetupPage();
|
||
|
|
||
|
virtual bool isComplete() const;
|
||
|
virtual void initializePage();
|
||
|
virtual int nextId() const;
|
||
|
bool validatePage();
|
||
|
QString localFolder() const;
|
||
|
void setRemoteFolder( const QString& remoteFolder);
|
||
|
void setMultipleFoldersExist( bool exist );
|
||
|
void directoriesCreated();
|
||
|
|
||
|
signals:
|
||
|
void createLocalAndRemoteFolders(const QString&, const QString&);
|
||
|
|
||
|
public slots:
|
||
|
void setErrorString( const QString& );
|
||
|
void setConfigExists( bool );
|
||
|
|
||
|
private slots:
|
||
|
void slotSelectFolder();
|
||
|
|
||
|
private:
|
||
|
void setupCustomization();
|
||
|
void updateStatus();
|
||
|
void startSpinner();
|
||
|
void stopSpinner();
|
||
|
|
||
|
Ui_OwncloudAdvancedSetupPage _ui;
|
||
|
bool _checking;
|
||
|
bool _created;
|
||
|
bool _configExists;
|
||
|
bool _multipleFoldersExist;
|
||
|
QProgressIndicator* _progressIndi;
|
||
|
|
||
|
QString _remoteFolder;
|
||
|
};
|
||
|
|
||
|
} // ns Mirall
|
||
|
|
||
|
#endif
|