2021-01-18 07:28:54 +00:00
|
|
|
/* Copyright 2013-2021 MultiMC Contributors
|
2013-11-29 02:45:52 +00:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2013-11-29 03:40:40 +00:00
|
|
|
#include "EditAccountDialog.h"
|
2016-01-05 06:32:52 +00:00
|
|
|
#include <DesktopServices.h>
|
2013-12-24 22:38:37 +00:00
|
|
|
#include <QUrl>
|
2023-08-02 17:35:35 +01:00
|
|
|
#include "ui_EditAccountDialog.h"
|
2013-11-29 02:45:52 +00:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
EditAccountDialog::EditAccountDialog(const QString& text, QWidget* parent, int flags) : QDialog(parent), ui(new Ui::EditAccountDialog)
|
2013-11-29 02:45:52 +00:00
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
ui->setupUi(this);
|
2013-11-29 02:45:52 +00:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
ui->label->setText(text);
|
|
|
|
ui->label->setVisible(!text.isEmpty());
|
2013-11-29 03:40:40 +00:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
ui->userTextBox->setEnabled(flags & UsernameField);
|
|
|
|
ui->passTextBox->setEnabled(flags & PasswordField);
|
2013-11-29 02:45:52 +00:00
|
|
|
}
|
|
|
|
|
2013-11-29 03:40:40 +00:00
|
|
|
EditAccountDialog::~EditAccountDialog()
|
2013-11-29 02:45:52 +00:00
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
delete ui;
|
2013-11-29 02:45:52 +00:00
|
|
|
}
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
void EditAccountDialog::on_label_linkActivated(const QString& link)
|
2013-12-24 22:38:37 +00:00
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
DesktopServices::openUrl(QUrl(link));
|
2013-12-24 22:38:37 +00:00
|
|
|
}
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
void EditAccountDialog::setUsername(const QString& user) const
|
2015-08-14 01:27:01 +01:00
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
ui->userTextBox->setText(user);
|
2015-08-14 01:27:01 +01:00
|
|
|
}
|
|
|
|
|
2013-11-29 03:40:40 +00:00
|
|
|
QString EditAccountDialog::username() const
|
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
return ui->userTextBox->text();
|
2013-11-29 03:40:40 +00:00
|
|
|
}
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
void EditAccountDialog::setPassword(const QString& pass) const
|
2015-08-14 01:27:01 +01:00
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
ui->passTextBox->setText(pass);
|
2015-08-14 01:27:01 +01:00
|
|
|
}
|
|
|
|
|
2013-11-29 03:40:40 +00:00
|
|
|
QString EditAccountDialog::password() const
|
2013-11-29 02:45:52 +00:00
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
return ui->passTextBox->text();
|
2013-11-29 02:45:52 +00:00
|
|
|
}
|