/* * Copyright (C) 2015 by Jeroen Hoek * Copyright (C) 2015 by Olivier Goffart * * 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; version 2 of the License. * * 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 OWNCLOUDCONNECTIONMETHODDIALOG_H #define OWNCLOUDCONNECTIONMETHODDIALOG_H #include #include "ui_owncloudconnectionmethoddialog.h" namespace Ui { class OwncloudConnectionMethodDialog; } class OwncloudConnectionMethodDialog : public QDialog { Q_OBJECT public: explicit OwncloudConnectionMethodDialog(QWidget *parent = 0); ~OwncloudConnectionMethodDialog(); enum { No_TLS, Client_Side_TLS, Back }; // The URL that was tried void setUrl(const QUrl &); public slots: void returnNoTLS(); void returnClientSideTLS(); void returnBack(); private: Ui::OwncloudConnectionMethodDialog *ui; }; #endif // OWNCLOUDCONNECTIONMETHODDIALOG_H