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

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Goffart <ogoffart@woboq.com>2015-06-15 16:53:45 +0300
committerOlivier Goffart <ogoffart@woboq.com>2015-06-15 18:39:28 +0300
commitce0a0e3f0d9a15d3799ce31af1b40d395a4f8574 (patch)
treeb5466d43bef5a4687a993b5cc14a953ed7277bb7 /src/gui/authenticationdialog.cpp
parent6e337ad24235376a725d0b5add5d2fbe4bb17969 (diff)
Credential: move the implementation to the gui
Diffstat (limited to 'src/gui/authenticationdialog.cpp')
-rw-r--r--src/gui/authenticationdialog.cpp56
1 files changed, 56 insertions, 0 deletions
diff --git a/src/gui/authenticationdialog.cpp b/src/gui/authenticationdialog.cpp
new file mode 100644
index 000000000..f8e68d2e0
--- /dev/null
+++ b/src/gui/authenticationdialog.cpp
@@ -0,0 +1,56 @@
+/*
+ * Copyright (C) 2014 by Daniel Molkentin <danimo@owncloud.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; 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.
+ */
+
+#include "authenticationdialog.h"
+
+#include <QLabel>
+#include <QLineEdit>
+#include <QVBoxLayout>
+#include <QFormLayout>
+#include <QDialogButtonBox>
+
+namespace OCC {
+
+AuthenticationDialog::AuthenticationDialog(const QString &realm, const QString &domain, QWidget *parent)
+ : QDialog(parent)
+ , _user(new QLineEdit)
+ , _password(new QLineEdit)
+{
+ setWindowTitle(tr("Authentication Required"));
+ QVBoxLayout *lay = new QVBoxLayout(this);
+ QLabel *label = new QLabel(tr("Enter username and password for '%1' at %2.").arg(realm, domain));
+ lay->addWidget(label);
+
+ QFormLayout *form = new QFormLayout;
+ form->addRow(tr("&User:"), _user);
+ form->addRow(tr("&Password:"), _password);
+ lay->addLayout(form);
+ _password->setEchoMode(QLineEdit::Password);
+
+ QDialogButtonBox *box = new QDialogButtonBox(QDialogButtonBox::Ok|QDialogButtonBox::Cancel, Qt::Horizontal);
+ connect(box, SIGNAL(accepted()), this, SLOT(accept()));
+ connect(box, SIGNAL(rejected()), this, SLOT(reject()));
+ lay->addWidget(box);
+}
+
+QString AuthenticationDialog::user() const
+{
+ return _user->text();
+}
+
+QString AuthenticationDialog::password() const
+{
+ return _password->text();
+}
+
+} // namespace OCC