Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKrzesimir Nowak <krzesimir@endocode.com>2013-07-22 16:54:14 +0400
committerKrzesimir Nowak <krzesimir@endocode.com>2013-08-01 18:53:43 +0400
commit582ce4cfa0d69efab18ec6348f2c40682cff9c63 (patch)
tree4d6a53b14b320664919cae3b35accfd32897e849 /src/mirall/owncloudsetupwizard.h
parent43ae3dfce5694cb0b71af8ed8b3949a575632a4c (diff)
Cleanup setup wizard. Split setup page into two.
First page is for giving server URL and advanced setup and second page is for giving credentials. Second page will differ based on authentication type supported by ownCloud server. For now only HTTP credentials are supported.
Diffstat (limited to 'src/mirall/owncloudsetupwizard.h')
-rw-r--r--src/mirall/owncloudsetupwizard.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/mirall/owncloudsetupwizard.h b/src/mirall/owncloudsetupwizard.h
index 3fd70766e..540255dce 100644
--- a/src/mirall/owncloudsetupwizard.h
+++ b/src/mirall/owncloudsetupwizard.h
@@ -21,7 +21,7 @@
#include <QNetworkReply>
#include <QPointer>
-#include "mirall/owncloudwizard.h"
+#include "mirall/wizard/owncloudwizard.h"
#include "mirall/theme.h"
namespace Mirall {
@@ -72,14 +72,17 @@ public slots:
protected slots:
// wizard dialog signals
void slotConnectToOCUrl( const QString& );
+ void slotDetermineAuthType(const QString&);
private slots:
- void slotOwnCloudFound( const QString&, const QString&, const QString&, const QString& );
- void slotNoOwnCloudFound( QNetworkReply* );
void slotCreateRemoteFolderFinished( QNetworkReply::NetworkError );
void slotAssistantFinished( int );
void slotClearPendingRequests();
void slotAuthCheckReply( const QString&, QNetworkReply * );
+
+ void slotOwnCloudFoundAuth( const QString&, const QString&, const QString&, const QString& );
+ void slotNoOwnCloudFoundAuth( QNetworkReply* );
+ void slotAuthCheckReplyFinished();
private:
bool createRemoteFolder();
void checkRemoteFolder();